cuquantum-python 24.8.0.2__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.8.0.2
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cuquantum-python
3
- Version: 24.8.0.2
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,8 +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.8.0.2'
21
- release_ver = '24.8.0'
20
+ package_ver = "24.11.0"
22
21
  package_name = "cuquantum-python"
23
22
 
24
23
 
@@ -39,7 +38,7 @@ if os.environ.get('CUQUANTUM_META_WHEEL_BUILD', '0') == '1':
39
38
  cmdclass = {}
40
39
  else:
41
40
  # Case 2: install sdist
42
- install_requires = [f"{infer_best_package(package_name)}=={release_ver}",]
41
+ install_requires = [f"{infer_best_package(package_name)}=={package_ver}",]
43
42
  # For cuQuantum 24.03+, we need cuTENSOR 2.0+, meaning we can't use CuPy older than
44
43
  # v13.0.0, and CuPy v13+ supports CUDA 11.2+
45
44
  if 11020 <= cuda_autodetect.CUDA_RESOLUTION < 12000:
@@ -65,7 +64,7 @@ setup(
65
64
  project_urls={
66
65
  "Bug Tracker": "https://github.com/NVIDIA/cuQuantum/issues",
67
66
  "User Forum": "https://github.com/NVIDIA/cuQuantum/discussions",
68
- "Documentation": "https://docs.nvidia.com/cuda/cuquantum/python/",
67
+ "Documentation": "https://docs.nvidia.com/cuda/cuquantum/latest/python/",
69
68
  "Source Code": "https://github.com/NVIDIA/cuQuantum",
70
69
  },
71
70
  author="NVIDIA Corporation",