cuquantum-python 24.3.0.post1__tar.gz → 24.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cuquantum-python
3
- Version: 24.3.0.post1
3
+ Version: 24.11.0
4
4
  Summary: NVIDIA cuQuantum Python
5
5
  Home-page: https://developer.nvidia.com/cuquantum-sdk
6
6
  Author: NVIDIA Corporation
@@ -8,7 +8,7 @@ Author-email: cuda_installer@nvidia.com
8
8
  License: BSD-3-Clause
9
9
  Project-URL: Bug Tracker, https://github.com/NVIDIA/cuQuantum/issues
10
10
  Project-URL: User Forum, https://github.com/NVIDIA/cuQuantum/discussions
11
- Project-URL: Documentation, https://docs.nvidia.com/cuda/cuquantum/python/
11
+ Project-URL: Documentation, https://docs.nvidia.com/cuda/cuquantum/latest/python/
12
12
  Project-URL: Source Code, https://github.com/NVIDIA/cuQuantum
13
13
  Keywords: cuda,nvidia,state vector,tensor network,high-performance computing,quantum computing
14
14
  Classifier: Topic :: Scientific/Engineering
@@ -206,16 +206,16 @@ def infer_best_package(package_name: str,
206
206
  to_install = _cuda_version_to_package(version)
207
207
  else:
208
208
  # TODO: change this in the future
209
- _log("See below for the warning message and instruction.\n\n\n"
210
- "************************************************************************\n"
211
- "WARNING: Unable to detect NVIDIA CUDA Toolkit installation, assuming\n"
212
- "WARNING: CUDA 11 is in use... This behavior is subject to future change.\n"
213
- f"WARNING: To be explicit, instead of \"pip install {PACKAGE_NAME}\" run\n"
214
- f"WARNING: \"pip install {PACKAGE_NAME}-cuXX\", with XX being the major\n"
215
- "WARNING: version of your CUDA Toolkit installation.\n"
216
- "************************************************************************\n\n")
217
- to_install = _cuda_version_to_package(11080)
218
- version = -1
209
+ message = (
210
+ "See below for the error message and instruction.\n\n\n" +
211
+ "************************************************************************\n" +
212
+ "ERROR: Unable to detect NVIDIA CUDA Toolkit installation\n" +
213
+ f"ERROR: Explicitly specify CUDA version by: `pip install {PACKAGE_NAME}` run\n" +
214
+ f"ERROR: `pip install {PACKAGE_NAME}-cuXX`, with XX being the major\n" +
215
+ "ERROR: version of your CUDA Toolkit installation.\n" +
216
+ "************************************************************************\n\n"
217
+ )
218
+ raise AutoDetectionFailed(message)
219
219
 
220
220
  # Disallow -cu11 & -cu12 wheels from coexisting
221
221
  if len(installed) > 1 or (len(installed) == 1 and installed[0] != to_install):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cuquantum-python
3
- Version: 24.3.0.post1
3
+ Version: 24.11.0
4
4
  Summary: NVIDIA cuQuantum Python
5
5
  Home-page: https://developer.nvidia.com/cuquantum-sdk
6
6
  Author: NVIDIA Corporation
@@ -8,7 +8,7 @@ Author-email: cuda_installer@nvidia.com
8
8
  License: BSD-3-Clause
9
9
  Project-URL: Bug Tracker, https://github.com/NVIDIA/cuQuantum/issues
10
10
  Project-URL: User Forum, https://github.com/NVIDIA/cuQuantum/discussions
11
- Project-URL: Documentation, https://docs.nvidia.com/cuda/cuquantum/python/
11
+ Project-URL: Documentation, https://docs.nvidia.com/cuda/cuquantum/latest/python/
12
12
  Project-URL: Source Code, https://github.com/NVIDIA/cuQuantum
13
13
  Keywords: cuda,nvidia,state vector,tensor network,high-performance computing,quantum computing
14
14
  Classifier: Topic :: Scientific/Engineering
@@ -17,7 +17,7 @@ from cuda_autodetect import infer_best_package, bdist_wheel
17
17
 
18
18
  # Update this for every release
19
19
  # Must pin to the cuquantum-python-cuXX version
20
- package_ver = "24.03.0.post1"
20
+ package_ver = "24.11.0"
21
21
  package_name = "cuquantum-python"
22
22
 
23
23
 
@@ -64,7 +64,7 @@ setup(
64
64
  project_urls={
65
65
  "Bug Tracker": "https://github.com/NVIDIA/cuQuantum/issues",
66
66
  "User Forum": "https://github.com/NVIDIA/cuQuantum/discussions",
67
- "Documentation": "https://docs.nvidia.com/cuda/cuquantum/python/",
67
+ "Documentation": "https://docs.nvidia.com/cuda/cuquantum/latest/python/",
68
68
  "Source Code": "https://github.com/NVIDIA/cuQuantum",
69
69
  },
70
70
  author="NVIDIA Corporation",