pyqrack-cpu 1.32.8__tar.gz → 1.32.10__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.

Potentially problematic release.


This version of pyqrack-cpu might be problematic. Click here for more details.

Files changed (24) hide show
  1. {pyqrack_cpu-1.32.8/pyqrack_cpu.egg-info → pyqrack_cpu-1.32.10}/PKG-INFO +5 -1
  2. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/README.md +4 -0
  3. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10/pyqrack_cpu.egg-info}/PKG-INFO +5 -1
  4. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/setup.py +1 -1
  5. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/LICENSE +0 -0
  6. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/MANIFEST.in +0 -0
  7. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyproject.toml +0 -0
  8. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/__init__.py +0 -0
  9. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/neuron_activation_fn.py +0 -0
  10. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/pauli.py +0 -0
  11. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/qrack_circuit.py +0 -0
  12. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/qrack_neuron.py +0 -0
  13. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/qrack_simulator.py +0 -0
  14. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/qrack_system/__init__.py +0 -0
  15. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/qrack_system/qrack_system.py +0 -0
  16. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/quimb_circuit_type.py +0 -0
  17. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/util/__init__.py +0 -0
  18. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack/util/convert_qiskit_circuit_to_qasm_experiment.py +0 -0
  19. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack_cpu.egg-info/SOURCES.txt +0 -0
  20. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack_cpu.egg-info/dependency_links.txt +0 -0
  21. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack_cpu.egg-info/not-zip-safe +0 -0
  22. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack_cpu.egg-info/requires.txt +0 -0
  23. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/pyqrack_cpu.egg-info/top_level.txt +0 -0
  24. {pyqrack_cpu-1.32.8 → pyqrack_cpu-1.32.10}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyqrack-cpu
3
- Version: 1.32.8
3
+ Version: 1.32.10
4
4
  Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
5
5
  Home-page: https://github.com/vm6502q/pyqrack
6
6
  Author: Daniel Strano
@@ -47,9 +47,13 @@ Pure Python bindings for the pure C++11 Qrack quantum computer simulator library
47
47
 
48
48
  (**PyQrack** is just pure Qrack.)
49
49
 
50
+ <<<<<<< HEAD
50
51
  This is the **purely CPU-based** variant of PyQrack (with module name `pyqrack-cpu`). This alternate build of PyQrack is provided so that systems that won't use OpenCL anyway (such as because they lack any GPUs or other accelerators like the Intel HD) do not need to install the OpenCL library in order to use PyQrack. In this form, both the PyQrack module and the underlying C++ Qrack library are entirely external **dependency-free.**
51
52
 
52
53
  (**If you installing from source,** it doesn't matter whether you use `pyqrack` or `pyqrack-cpu`, because the build version of C++ Qrack you intend to use must already be installed locally.)
54
+ =======
55
+ **Note, if building from source**: You must build and install [unitaryfund/qrack](https://github.com/unitaryfund/qrack) to build the `main` branch from source. CI/CD builds wheels that contain pre-compiled Qrack binaries, and that is the form published on PyPi. **You must also install OpenCL.**
56
+ >>>>>>> main
53
57
 
54
58
  Import and instantiate [`QrackSimulator`](https://github.com/unitaryfund/pyqrack/blob/main/pyqrack/qrack_simulator.py) instances. This simulator can perform arbitrary single qubit and controlled-single-qubit gates, as well as other specific gates like `SWAP`.
55
59
 
@@ -5,9 +5,13 @@ Pure Python bindings for the pure C++11 Qrack quantum computer simulator library
5
5
 
6
6
  (**PyQrack** is just pure Qrack.)
7
7
 
8
+ <<<<<<< HEAD
8
9
  This is the **purely CPU-based** variant of PyQrack (with module name `pyqrack-cpu`). This alternate build of PyQrack is provided so that systems that won't use OpenCL anyway (such as because they lack any GPUs or other accelerators like the Intel HD) do not need to install the OpenCL library in order to use PyQrack. In this form, both the PyQrack module and the underlying C++ Qrack library are entirely external **dependency-free.**
9
10
 
10
11
  (**If you installing from source,** it doesn't matter whether you use `pyqrack` or `pyqrack-cpu`, because the build version of C++ Qrack you intend to use must already be installed locally.)
12
+ =======
13
+ **Note, if building from source**: You must build and install [unitaryfund/qrack](https://github.com/unitaryfund/qrack) to build the `main` branch from source. CI/CD builds wheels that contain pre-compiled Qrack binaries, and that is the form published on PyPi. **You must also install OpenCL.**
14
+ >>>>>>> main
11
15
 
12
16
  Import and instantiate [`QrackSimulator`](https://github.com/unitaryfund/pyqrack/blob/main/pyqrack/qrack_simulator.py) instances. This simulator can perform arbitrary single qubit and controlled-single-qubit gates, as well as other specific gates like `SWAP`.
13
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyqrack-cpu
3
- Version: 1.32.8
3
+ Version: 1.32.10
4
4
  Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
5
5
  Home-page: https://github.com/vm6502q/pyqrack
6
6
  Author: Daniel Strano
@@ -47,9 +47,13 @@ Pure Python bindings for the pure C++11 Qrack quantum computer simulator library
47
47
 
48
48
  (**PyQrack** is just pure Qrack.)
49
49
 
50
+ <<<<<<< HEAD
50
51
  This is the **purely CPU-based** variant of PyQrack (with module name `pyqrack-cpu`). This alternate build of PyQrack is provided so that systems that won't use OpenCL anyway (such as because they lack any GPUs or other accelerators like the Intel HD) do not need to install the OpenCL library in order to use PyQrack. In this form, both the PyQrack module and the underlying C++ Qrack library are entirely external **dependency-free.**
51
52
 
52
53
  (**If you installing from source,** it doesn't matter whether you use `pyqrack` or `pyqrack-cpu`, because the build version of C++ Qrack you intend to use must already be installed locally.)
54
+ =======
55
+ **Note, if building from source**: You must build and install [unitaryfund/qrack](https://github.com/unitaryfund/qrack) to build the `main` branch from source. CI/CD builds wheels that contain pre-compiled Qrack binaries, and that is the form published on PyPi. **You must also install OpenCL.**
56
+ >>>>>>> main
53
57
 
54
58
  Import and instantiate [`QrackSimulator`](https://github.com/unitaryfund/pyqrack/blob/main/pyqrack/qrack_simulator.py) instances. This simulator can perform arbitrary single qubit and controlled-single-qubit gates, as well as other specific gates like `SWAP`.
55
59
 
@@ -4,7 +4,7 @@ import os
4
4
  from setuptools import setup
5
5
 
6
6
 
7
- VERSION = "1.32.8"
7
+ VERSION = "1.32.10"
8
8
 
9
9
  # Read long description from README.
10
10
  README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README.md')
File without changes
File without changes
File without changes