cuquantum-python 24.11.0__tar.gz → 25.3.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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: cuquantum-python
3
- Version: 24.11.0
3
+ Version: 25.3.0
4
4
  Summary: NVIDIA cuQuantum Python
5
5
  Home-page: https://developer.nvidia.com/cuquantum-sdk
6
6
  Author: NVIDIA Corporation
@@ -17,12 +17,28 @@ Classifier: Environment :: GPU :: NVIDIA CUDA :: 11
17
17
  Classifier: Environment :: GPU :: NVIDIA CUDA :: 12
18
18
  Description-Content-Type: text/x-rst
19
19
  License-File: LICENSE
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: keywords
27
+ Dynamic: license
28
+ Dynamic: project-url
29
+ Dynamic: summary
20
30
 
21
- ***********************
22
- NVIDIA cuQuantum Python
23
- ***********************
31
+ *****************************************************************************************************
32
+ cuQuantum Python: A High-Performance Library for Accelerating Quantum Computing Simulations in Python
33
+ *****************************************************************************************************
24
34
 
25
- NVIDIA cuQuantum Python provides Python bindings and high-level object-oriented models for accessing the full functionalities of NVIDIA cuQuantum SDK from Python.
35
+ NVIDIA cuQuantum Python provides Python bindings and high-level object-oriented models for accessing the full
36
+ functionalities of `NVIDIA cuQuantum SDK <https://developer.nvidia.com/cuquantum-sdk>`_ from Python.
37
+
38
+ Documentation
39
+ =============
40
+
41
+ For detailed guide, please refer to `cuQuantum Python documentation <https://docs.nvidia.com/cuda/cuquantum/latest/python/index.html>`_.
26
42
 
27
43
  Installation
28
44
  ============
@@ -38,16 +54,15 @@ Installation
38
54
  The meta package will attempt to infer and install the correct ``-cuXX`` wheel. However,
39
55
  in situations where the auto-detection fails, this package currently points to ``cuquantum-python-cu11``
40
56
  with a warning raised (if the verbosity flag ``-v`` is set, as shown above). This behavior
41
- is subject to change in the future, and users are encouraged to install the new wheels that
57
+ will change in the next release, moving from cu11 to cu12, and users are encouraged to install the new wheels that
42
58
  come *with* the ``-cuXX`` suffix.
43
59
 
44
60
  The argument ``--no-cache-dir`` is required for pip 23.1+. It forces pip to execute the
45
61
  auto-detection logic.
46
62
 
63
+ Future support for CUDA 11 will be deprecated when support for CUDA 13 is added.
64
+
47
65
  Citing cuQuantum
48
66
  ================
49
67
 
50
- Pleae click this Zenodo badge to see the citation format: |DOI|
51
-
52
- .. |DOI| image:: https://zenodo.org/badge/435003852.svg
53
- :target: https://zenodo.org/badge/latestdoi/435003852
68
+ `H. Bayraktar et al., "cuQuantum SDK: A High-Performance Library for Accelerating Quantum Science," 2023 IEEE International Conference on Quantum Computing and Engineering (QCE), Bellevue, WA, USA, 2023, pp. 1050-1061, doi: 10.1109/QCE57702.2023.00119 <https://doi.org/10.1109/QCE57702.2023.00119>`_
@@ -0,0 +1,38 @@
1
+ *****************************************************************************************************
2
+ cuQuantum Python: A High-Performance Library for Accelerating Quantum Computing Simulations in Python
3
+ *****************************************************************************************************
4
+
5
+ NVIDIA cuQuantum Python provides Python bindings and high-level object-oriented models for accessing the full
6
+ functionalities of `NVIDIA cuQuantum SDK <https://developer.nvidia.com/cuquantum-sdk>`_ from Python.
7
+
8
+ Documentation
9
+ =============
10
+
11
+ For detailed guide, please refer to `cuQuantum Python documentation <https://docs.nvidia.com/cuda/cuquantum/latest/python/index.html>`_.
12
+
13
+ Installation
14
+ ============
15
+
16
+ .. code-block:: bash
17
+
18
+ pip install -v --no-cache-dir cuquantum-python
19
+
20
+ .. note::
21
+
22
+ Starting cuQuantum 22.11, this package is a meta package pointing to ``cuquantum-python-cuXX``,
23
+ where XX is the CUDA major version (currently CUDA 11 & 12 are supported).
24
+ The meta package will attempt to infer and install the correct ``-cuXX`` wheel. However,
25
+ in situations where the auto-detection fails, this package currently points to ``cuquantum-python-cu11``
26
+ with a warning raised (if the verbosity flag ``-v`` is set, as shown above). This behavior
27
+ will change in the next release, moving from cu11 to cu12, and users are encouraged to install the new wheels that
28
+ come *with* the ``-cuXX`` suffix.
29
+
30
+ The argument ``--no-cache-dir`` is required for pip 23.1+. It forces pip to execute the
31
+ auto-detection logic.
32
+
33
+ Future support for CUDA 11 will be deprecated when support for CUDA 13 is added.
34
+
35
+ Citing cuQuantum
36
+ ================
37
+
38
+ `H. Bayraktar et al., "cuQuantum SDK: A High-Performance Library for Accelerating Quantum Science," 2023 IEEE International Conference on Quantum Computing and Engineering (QCE), Bellevue, WA, USA, 2023, pp. 1050-1061, doi: 10.1109/QCE57702.2023.00119 <https://doi.org/10.1109/QCE57702.2023.00119>`_
@@ -209,8 +209,9 @@ def infer_best_package(package_name: str,
209
209
  message = (
210
210
  "See below for the error message and instruction.\n\n\n" +
211
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" +
212
+ "ERROR: Unable to detect NVIDIA CUDA Toolkit installation.\n" +
213
+ "ERROR: If CUDA Toolkit is not installed, please install it first.\n" +
214
+ "ERROR: If CUDA Toolkit is installed but not detected, please explicitly specify the version and run\n" +
214
215
  f"ERROR: `pip install {PACKAGE_NAME}-cuXX`, with XX being the major\n" +
215
216
  "ERROR: version of your CUDA Toolkit installation.\n" +
216
217
  "************************************************************************\n\n"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: cuquantum-python
3
- Version: 24.11.0
3
+ Version: 25.3.0
4
4
  Summary: NVIDIA cuQuantum Python
5
5
  Home-page: https://developer.nvidia.com/cuquantum-sdk
6
6
  Author: NVIDIA Corporation
@@ -17,12 +17,28 @@ Classifier: Environment :: GPU :: NVIDIA CUDA :: 11
17
17
  Classifier: Environment :: GPU :: NVIDIA CUDA :: 12
18
18
  Description-Content-Type: text/x-rst
19
19
  License-File: LICENSE
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: keywords
27
+ Dynamic: license
28
+ Dynamic: project-url
29
+ Dynamic: summary
20
30
 
21
- ***********************
22
- NVIDIA cuQuantum Python
23
- ***********************
31
+ *****************************************************************************************************
32
+ cuQuantum Python: A High-Performance Library for Accelerating Quantum Computing Simulations in Python
33
+ *****************************************************************************************************
24
34
 
25
- NVIDIA cuQuantum Python provides Python bindings and high-level object-oriented models for accessing the full functionalities of NVIDIA cuQuantum SDK from Python.
35
+ NVIDIA cuQuantum Python provides Python bindings and high-level object-oriented models for accessing the full
36
+ functionalities of `NVIDIA cuQuantum SDK <https://developer.nvidia.com/cuquantum-sdk>`_ from Python.
37
+
38
+ Documentation
39
+ =============
40
+
41
+ For detailed guide, please refer to `cuQuantum Python documentation <https://docs.nvidia.com/cuda/cuquantum/latest/python/index.html>`_.
26
42
 
27
43
  Installation
28
44
  ============
@@ -38,16 +54,15 @@ Installation
38
54
  The meta package will attempt to infer and install the correct ``-cuXX`` wheel. However,
39
55
  in situations where the auto-detection fails, this package currently points to ``cuquantum-python-cu11``
40
56
  with a warning raised (if the verbosity flag ``-v`` is set, as shown above). This behavior
41
- is subject to change in the future, and users are encouraged to install the new wheels that
57
+ will change in the next release, moving from cu11 to cu12, and users are encouraged to install the new wheels that
42
58
  come *with* the ``-cuXX`` suffix.
43
59
 
44
60
  The argument ``--no-cache-dir`` is required for pip 23.1+. It forces pip to execute the
45
61
  auto-detection logic.
46
62
 
63
+ Future support for CUDA 11 will be deprecated when support for CUDA 13 is added.
64
+
47
65
  Citing cuQuantum
48
66
  ================
49
67
 
50
- Pleae click this Zenodo badge to see the citation format: |DOI|
51
-
52
- .. |DOI| image:: https://zenodo.org/badge/435003852.svg
53
- :target: https://zenodo.org/badge/latestdoi/435003852
68
+ `H. Bayraktar et al., "cuQuantum SDK: A High-Performance Library for Accelerating Quantum Science," 2023 IEEE International Conference on Quantum Computing and Engineering (QCE), Bellevue, WA, USA, 2023, pp. 1050-1061, doi: 10.1109/QCE57702.2023.00119 <https://doi.org/10.1109/QCE57702.2023.00119>`_
@@ -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.11.0"
20
+ package_ver = "25.03.0"
21
21
  package_name = "cuquantum-python"
22
22
 
23
23
 
@@ -1,33 +0,0 @@
1
- ***********************
2
- NVIDIA cuQuantum Python
3
- ***********************
4
-
5
- NVIDIA cuQuantum Python provides Python bindings and high-level object-oriented models for accessing the full functionalities of NVIDIA cuQuantum SDK from Python.
6
-
7
- Installation
8
- ============
9
-
10
- .. code-block:: bash
11
-
12
- pip install -v --no-cache-dir cuquantum-python
13
-
14
- .. note::
15
-
16
- Starting cuQuantum 22.11, this package is a meta package pointing to ``cuquantum-python-cuXX``,
17
- where XX is the CUDA major version (currently CUDA 11 & 12 are supported).
18
- The meta package will attempt to infer and install the correct ``-cuXX`` wheel. However,
19
- in situations where the auto-detection fails, this package currently points to ``cuquantum-python-cu11``
20
- with a warning raised (if the verbosity flag ``-v`` is set, as shown above). This behavior
21
- is subject to change in the future, and users are encouraged to install the new wheels that
22
- come *with* the ``-cuXX`` suffix.
23
-
24
- The argument ``--no-cache-dir`` is required for pip 23.1+. It forces pip to execute the
25
- auto-detection logic.
26
-
27
- Citing cuQuantum
28
- ================
29
-
30
- Pleae click this Zenodo badge to see the citation format: |DOI|
31
-
32
- .. |DOI| image:: https://zenodo.org/badge/435003852.svg
33
- :target: https://zenodo.org/badge/latestdoi/435003852