pyqrack-cpu 1.32.21__tar.gz → 1.32.25__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.21/pyqrack_cpu.egg-info → pyqrack_cpu-1.32.25}/PKG-INFO +2 -2
  2. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/README.md +1 -1
  3. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/qrack_simulator.py +2 -2
  4. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25/pyqrack_cpu.egg-info}/PKG-INFO +2 -2
  5. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/setup.py +1 -1
  6. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/LICENSE +0 -0
  7. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/MANIFEST.in +0 -0
  8. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyproject.toml +0 -0
  9. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/__init__.py +0 -0
  10. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/neuron_activation_fn.py +0 -0
  11. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/pauli.py +0 -0
  12. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/qrack_circuit.py +0 -0
  13. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/qrack_neuron.py +0 -0
  14. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/qrack_system/__init__.py +0 -0
  15. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/qrack_system/qrack_system.py +0 -0
  16. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/quimb_circuit_type.py +0 -0
  17. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/util/__init__.py +0 -0
  18. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack/util/convert_qiskit_circuit_to_qasm_experiment.py +0 -0
  19. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack_cpu.egg-info/SOURCES.txt +0 -0
  20. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack_cpu.egg-info/dependency_links.txt +0 -0
  21. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack_cpu.egg-info/not-zip-safe +0 -0
  22. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack_cpu.egg-info/requires.txt +0 -0
  23. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/pyqrack_cpu.egg-info/top_level.txt +0 -0
  24. {pyqrack_cpu-1.32.21 → pyqrack_cpu-1.32.25}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyqrack-cpu
3
- Version: 1.32.21
3
+ Version: 1.32.25
4
4
  Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
5
5
  Home-page: https://github.com/vm6502q/pyqrack
6
6
  Author: Daniel Strano
@@ -75,7 +75,7 @@ where `c` is a PyZX circuit object. The circuit will automatically be simulated
75
75
 
76
76
  See [https://pyqrack.readthedocs.io/en/latest/](https://pyqrack.readthedocs.io/en/latest/) for an API reference.
77
77
 
78
- For custom Qrack build floating-point precision, where options are `half`, `float`, `double`, and `quad`, set an environment variable via `export QRACK_FPPOW=[n]` (or as appropriate to your shell) where `[n]` is the logarithm base 2 of the number of bits in the systemic floating point type (`4`, `5`, `6`, or `7`, with `5` or `float` as default, i.e. `2**5=32` for 32-bit `float`).
78
+ For custom Qrack build floating-point precision, where options are `half`, `float`, `double`, and `quad`, set an environment variable via `export QRACK_FPPOW=[n]` (or as appropriate to your shell) where `[n]` is the logarithm base 2 of the number of bits in the systemic floating point type (`4`, `5`, `6`, or `7`, with `5` or `float` as default, i.e. `2**5=32` for 32-bit `float`). Your Qrack installation floating-point build option must match this specific value, which might require a custom Qrack build.
79
79
 
80
80
  Please feel welcome to open an issue, if you'd like help. 😃
81
81
 
@@ -33,7 +33,7 @@ where `c` is a PyZX circuit object. The circuit will automatically be simulated
33
33
 
34
34
  See [https://pyqrack.readthedocs.io/en/latest/](https://pyqrack.readthedocs.io/en/latest/) for an API reference.
35
35
 
36
- For custom Qrack build floating-point precision, where options are `half`, `float`, `double`, and `quad`, set an environment variable via `export QRACK_FPPOW=[n]` (or as appropriate to your shell) where `[n]` is the logarithm base 2 of the number of bits in the systemic floating point type (`4`, `5`, `6`, or `7`, with `5` or `float` as default, i.e. `2**5=32` for 32-bit `float`).
36
+ For custom Qrack build floating-point precision, where options are `half`, `float`, `double`, and `quad`, set an environment variable via `export QRACK_FPPOW=[n]` (or as appropriate to your shell) where `[n]` is the logarithm base 2 of the number of bits in the systemic floating point type (`4`, `5`, `6`, or `7`, with `5` or `float` as default, i.e. `2**5=32` for 32-bit `float`). Your Qrack installation floating-point build option must match this specific value, which might require a custom Qrack build.
37
37
 
38
38
  Please feel welcome to open an issue, if you'd like help. 😃
39
39
 
@@ -53,7 +53,7 @@ class QrackSimulator:
53
53
  isStabilizerHybrid=True,
54
54
  isBinaryDecisionTree=False,
55
55
  isPaged=True,
56
- isCpuGpuHybrid=True,
56
+ isCpuGpuHybrid=False,
57
57
  isOpenCL=True,
58
58
  isHostPointer=False,
59
59
  noise=0,
@@ -3130,7 +3130,7 @@ class QrackSimulator:
3130
3130
  Qrack.qrack_lib.qstabilizer_out_to_file(self.sid, filename.encode('utf-8'))
3131
3131
  self._throw_if_error()
3132
3132
 
3133
- def in_from_file(filename, is_binary_decision_tree = False, is_paged = True, is_cpu_gpu_hybrid = True, is_opencl = True, is_host_pointer = False, is_noisy = False):
3133
+ def in_from_file(filename, is_binary_decision_tree = False, is_paged = True, is_cpu_gpu_hybrid = False, is_opencl = True, is_host_pointer = False, is_noisy = False):
3134
3134
  """Input state from file (stabilizer only!)
3135
3135
 
3136
3136
  Reads in a hybrid stabilizer state from file.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyqrack-cpu
3
- Version: 1.32.21
3
+ Version: 1.32.25
4
4
  Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
5
5
  Home-page: https://github.com/vm6502q/pyqrack
6
6
  Author: Daniel Strano
@@ -75,7 +75,7 @@ where `c` is a PyZX circuit object. The circuit will automatically be simulated
75
75
 
76
76
  See [https://pyqrack.readthedocs.io/en/latest/](https://pyqrack.readthedocs.io/en/latest/) for an API reference.
77
77
 
78
- For custom Qrack build floating-point precision, where options are `half`, `float`, `double`, and `quad`, set an environment variable via `export QRACK_FPPOW=[n]` (or as appropriate to your shell) where `[n]` is the logarithm base 2 of the number of bits in the systemic floating point type (`4`, `5`, `6`, or `7`, with `5` or `float` as default, i.e. `2**5=32` for 32-bit `float`).
78
+ For custom Qrack build floating-point precision, where options are `half`, `float`, `double`, and `quad`, set an environment variable via `export QRACK_FPPOW=[n]` (or as appropriate to your shell) where `[n]` is the logarithm base 2 of the number of bits in the systemic floating point type (`4`, `5`, `6`, or `7`, with `5` or `float` as default, i.e. `2**5=32` for 32-bit `float`). Your Qrack installation floating-point build option must match this specific value, which might require a custom Qrack build.
79
79
 
80
80
  Please feel welcome to open an issue, if you'd like help. 😃
81
81
 
@@ -4,7 +4,7 @@ import os
4
4
  from setuptools import setup
5
5
 
6
6
 
7
- VERSION = "1.32.21"
7
+ VERSION = "1.32.25"
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