cuquantum-python 24.3.0.post0__tar.gz → 24.8.0.2__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.post0 → cuquantum_python-24.8.0.2}/PKG-INFO +1 -1
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuda_autodetect.py +10 -10
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/PKG-INFO +1 -1
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/setup.py +3 -2
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/LICENSE +0 -0
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/README.rst +0 -0
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/SOURCES.txt +0 -0
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/dependency_links.txt +0 -0
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/not-zip-safe +0 -0
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/top_level.txt +0 -0
- {cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/setup.cfg +0 -0
|
@@ -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):
|
|
@@ -17,7 +17,8 @@ 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 =
|
|
20
|
+
package_ver = '24.8.0.2'
|
|
21
|
+
release_ver = '24.8.0'
|
|
21
22
|
package_name = "cuquantum-python"
|
|
22
23
|
|
|
23
24
|
|
|
@@ -38,7 +39,7 @@ if os.environ.get('CUQUANTUM_META_WHEEL_BUILD', '0') == '1':
|
|
|
38
39
|
cmdclass = {}
|
|
39
40
|
else:
|
|
40
41
|
# Case 2: install sdist
|
|
41
|
-
install_requires = [f"{infer_best_package(package_name)}=={
|
|
42
|
+
install_requires = [f"{infer_best_package(package_name)}=={release_ver}",]
|
|
42
43
|
# For cuQuantum 24.03+, we need cuTENSOR 2.0+, meaning we can't use CuPy older than
|
|
43
44
|
# v13.0.0, and CuPy v13+ supports CUDA 11.2+
|
|
44
45
|
if 11020 <= cuda_autodetect.CUDA_RESOLUTION < 12000:
|
|
File without changes
|
|
File without changes
|
{cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{cuquantum_python-24.3.0.post0 → cuquantum_python-24.8.0.2}/cuquantum_python.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|