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.
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/PKG-INFO +2 -2
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuda_autodetect.py +10 -10
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/PKG-INFO +2 -2
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/setup.py +2 -2
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/LICENSE +0 -0
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/README.rst +0 -0
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/SOURCES.txt +0 -0
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/dependency_links.txt +0 -0
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/not-zip-safe +0 -0
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/top_level.txt +0 -0
- {cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cuquantum-python
|
|
3
|
-
Version: 24.
|
|
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
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
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):
|
{cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cuquantum-python
|
|
3
|
-
Version: 24.
|
|
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.
|
|
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",
|
|
File without changes
|
|
File without changes
|
{cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{cuquantum_python-24.3.0.post1 → cuquantum_python-24.11.0}/cuquantum_python.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|