pyqrack-cpu-complex128 1.69.0__py3-none-win_amd64.whl → 1.78.3__py3-none-win_amd64.whl
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.
- pyqrack/__init__.py +3 -2
- pyqrack/qrack_ace_backend.py +28 -24
- pyqrack/qrack_circuit.py +49 -34
- pyqrack/qrack_neuron.py +93 -5
- pyqrack/qrack_neuron_torch_layer.py +294 -104
- pyqrack/qrack_simulator.py +234 -183
- pyqrack/qrack_system/qrack_lib/qrack_pinvoke.dll +0 -0
- pyqrack/qrack_system/qrack_system.py +9 -2
- {pyqrack_cpu_complex128-1.69.0.dist-info → pyqrack_cpu_complex128-1.78.3.dist-info}/METADATA +2 -4
- pyqrack_cpu_complex128-1.78.3.dist-info/RECORD +21 -0
- pyqrack_cpu_complex128-1.69.0.dist-info/RECORD +0 -21
- {pyqrack_cpu_complex128-1.69.0.dist-info → pyqrack_cpu_complex128-1.78.3.dist-info}/LICENSE +0 -0
- {pyqrack_cpu_complex128-1.69.0.dist-info → pyqrack_cpu_complex128-1.78.3.dist-info}/WHEEL +0 -0
- {pyqrack_cpu_complex128-1.69.0.dist-info → pyqrack_cpu_complex128-1.78.3.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -111,10 +111,10 @@ class QrackSystem:
|
|
|
111
111
|
self.qrack_lib.get_error.argtypes = [c_ulonglong]
|
|
112
112
|
|
|
113
113
|
self.qrack_lib.init_count.restype = c_ulonglong
|
|
114
|
-
self.qrack_lib.init_count.argtypes = [c_ulonglong, c_bool]
|
|
114
|
+
self.qrack_lib.init_count.argtypes = [c_ulonglong, c_bool, c_bool]
|
|
115
115
|
|
|
116
116
|
self.qrack_lib.init_count_pager.restype = c_ulonglong
|
|
117
|
-
self.qrack_lib.init_count_pager.argtypes = [c_ulonglong, c_bool]
|
|
117
|
+
self.qrack_lib.init_count_pager.argtypes = [c_ulonglong, c_bool, c_bool]
|
|
118
118
|
|
|
119
119
|
self.qrack_lib.init_count_type.restype = c_ulonglong
|
|
120
120
|
self.qrack_lib.init_count_type.argtypes = [
|
|
@@ -129,6 +129,7 @@ class QrackSystem:
|
|
|
129
129
|
c_bool,
|
|
130
130
|
c_bool,
|
|
131
131
|
c_bool,
|
|
132
|
+
c_bool
|
|
132
133
|
]
|
|
133
134
|
|
|
134
135
|
self.qrack_lib.init_count_stabilizer.restype = c_ulonglong
|
|
@@ -1218,6 +1219,12 @@ class QrackSystem:
|
|
|
1218
1219
|
self.qrack_lib.SetNoiseParameter.restype = None
|
|
1219
1220
|
self.qrack_lib.SetNoiseParameter.argtypes = [c_ulonglong, c_double]
|
|
1220
1221
|
|
|
1222
|
+
self.qrack_lib.SetAceMaxQb.restype = None
|
|
1223
|
+
self.qrack_lib.SetAceMaxQb.argtypes = [c_ulonglong, c_ulonglong]
|
|
1224
|
+
|
|
1225
|
+
self.qrack_lib.SetSparseAceMaxMb.restype = None
|
|
1226
|
+
self.qrack_lib.SetSparseAceMaxMb.argtypes = [c_ulonglong, c_size_t]
|
|
1227
|
+
|
|
1221
1228
|
self.qrack_lib.Normalize.restype = None
|
|
1222
1229
|
self.qrack_lib.Normalize.argtypes = [c_ulonglong]
|
|
1223
1230
|
|
{pyqrack_cpu_complex128-1.69.0.dist-info → pyqrack_cpu_complex128-1.78.3.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyqrack-cpu-complex128
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.78.3
|
|
4
4
|
Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
|
|
5
5
|
Home-page: https://github.com/vm6502q/pyqrack
|
|
6
6
|
Author: Daniel Strano
|
|
@@ -15,8 +15,6 @@ Classifier: Operating System :: MacOS
|
|
|
15
15
|
Classifier: Operating System :: POSIX :: Linux
|
|
16
16
|
Classifier: Programming Language :: C++
|
|
17
17
|
Classifier: Programming Language :: Python :: 2
|
|
18
|
-
Classifier: Programming Language :: Python :: 2.3
|
|
19
|
-
Classifier: Programming Language :: Python :: 2.4
|
|
20
18
|
Classifier: Programming Language :: Python :: 2.5
|
|
21
19
|
Classifier: Programming Language :: Python :: 2.6
|
|
22
20
|
Classifier: Programming Language :: Python :: 2.7
|
|
@@ -34,7 +32,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
34
32
|
Classifier: Programming Language :: Python :: 3.10
|
|
35
33
|
Classifier: Programming Language :: Python :: 3.11
|
|
36
34
|
Classifier: Programming Language :: Python :: 3.12
|
|
37
|
-
Classifier: Topic :: Scientific/Engineering
|
|
35
|
+
Classifier: Topic :: Scientific/Engineering :: Quantum Computing
|
|
38
36
|
Description-Content-Type: text/markdown
|
|
39
37
|
License-File: LICENSE
|
|
40
38
|
Provides-Extra: dev
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pyqrack/__init__.py,sha256=MVi1OrrmlcHbtPASDL7sD0KPkOQLRxLQvGgPvJlX4jI,846
|
|
2
|
+
pyqrack/neuron_activation_fn.py,sha256=GOqcCkiEB60jCojTrcuHuZMDP5aTOy0adtR8SY_2EZc,614
|
|
3
|
+
pyqrack/pauli.py,sha256=TUm1SN_HLz3eMW9gD_eg-IYXcMCyr36mYSytq_ExZIU,673
|
|
4
|
+
pyqrack/qrack_ace_backend.py,sha256=5bc9vStUMgzg3x2GzQvx0II-JBd71Uw8adatw5dst2U,51225
|
|
5
|
+
pyqrack/qrack_circuit.py,sha256=6u5U9-eLUSzIgGfrsjuq80COk4adsC9_6zA0GdZt8BM,20429
|
|
6
|
+
pyqrack/qrack_neuron.py,sha256=DD0TSPTvFdI58yNVMLMhzaIpMpFR0cYIFdbVUtpJE20,12136
|
|
7
|
+
pyqrack/qrack_neuron_torch_layer.py,sha256=_NlgNAtTRjPJE3aWxf-8LeJf4-gSKJIu4mZSjm6me0E,15165
|
|
8
|
+
pyqrack/qrack_simulator.py,sha256=MNMA6Ug3pib4qcq6ktqI1hWYlb8lTwAC-vKl08oWHIk,153818
|
|
9
|
+
pyqrack/qrack_stabilizer.py,sha256=AJe7dfFcxFKyig3tjWXw0UKhXer5Wl9QNvjNNqlOL5M,2182
|
|
10
|
+
pyqrack/quimb_circuit_type.py,sha256=iC0CCpZBGhziFC8-uBCH43Mi29uvVUrtBG6W9YBlyps,638
|
|
11
|
+
pyqrack/qrack_system/__init__.py,sha256=PUterej-xpA4BqFmiBrQCMeTQlsRf-K8Dxnwp-iVvUQ,343
|
|
12
|
+
pyqrack/qrack_system/qrack_system.py,sha256=Achih8xDrCpVVOI8sjXo33Rie0cNGe5Yg9IdJqR17FA,45333
|
|
13
|
+
pyqrack/qrack_system/qrack_lib/qrack_pinvoke.dll,sha256=epeCtjVIjcIYWR9vqSVO7tnkcghHBb28lKUEQnn6tKU,2054144
|
|
14
|
+
pyqrack/stats/__init__.py,sha256=hI715MGW7D4mDYhUFpRI4ZLsynYDO4tN-rjsuuYbG6Q,282
|
|
15
|
+
pyqrack/stats/load_quantized_data.py,sha256=_1w9BPrZNreP0wOAyaAZHdEGKoGiI7tMeFD9P3eyJC0,1219
|
|
16
|
+
pyqrack/stats/quantize_by_range.py,sha256=0eBIqByIxa4vfm4fQGZLAMGR9y8raxde3e5rvUWJ_dQ,2326
|
|
17
|
+
pyqrack_cpu_complex128-1.78.3.dist-info/LICENSE,sha256=IdAVedmFOPQtHi_XeEI9OhJwUuwlT6tCJwrT55zAn3w,1090
|
|
18
|
+
pyqrack_cpu_complex128-1.78.3.dist-info/METADATA,sha256=OahvLq_1bmHjJi0WwnqqHXA_rlukkSNanmS4m8ye4tU,6031
|
|
19
|
+
pyqrack_cpu_complex128-1.78.3.dist-info/WHEEL,sha256=JMWfR_Dj7ISokcwe0cBhCfK6JKnIi-ZX11L6d_ntt6o,98
|
|
20
|
+
pyqrack_cpu_complex128-1.78.3.dist-info/top_level.txt,sha256=YE_3q9JTGRLMilNg2tGP1y7uU-Dx8PDao2OhwoIbv8E,8
|
|
21
|
+
pyqrack_cpu_complex128-1.78.3.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
pyqrack/__init__.py,sha256=9fGCYdEUg_AsENCDRylbrZvUMVbUajRTn3CyuFGuFyM,805
|
|
2
|
-
pyqrack/neuron_activation_fn.py,sha256=GOqcCkiEB60jCojTrcuHuZMDP5aTOy0adtR8SY_2EZc,614
|
|
3
|
-
pyqrack/pauli.py,sha256=TUm1SN_HLz3eMW9gD_eg-IYXcMCyr36mYSytq_ExZIU,673
|
|
4
|
-
pyqrack/qrack_ace_backend.py,sha256=rBQC9M5FnABOqGVKxtu-YhK8Uzu-CT0P5XGD5dViHzU,50936
|
|
5
|
-
pyqrack/qrack_circuit.py,sha256=QK2dtPYurdXuw-efVq7lYz40_480NxCejXhOVwBGkXs,20122
|
|
6
|
-
pyqrack/qrack_neuron.py,sha256=a3F0hduVvXZi9aXsY0du5hBFXpMq_R5UHHDOv2-YtFM,9305
|
|
7
|
-
pyqrack/qrack_neuron_torch_layer.py,sha256=OhNSldzaqLaMoNBkin68j8QWOOiuZCQJDZPgSDRI2Fk,6330
|
|
8
|
-
pyqrack/qrack_simulator.py,sha256=vN0QZoobomH3zNJ9AGhOJTj6bTATs5XIJIVZOU-z70Y,150477
|
|
9
|
-
pyqrack/qrack_stabilizer.py,sha256=AJe7dfFcxFKyig3tjWXw0UKhXer5Wl9QNvjNNqlOL5M,2182
|
|
10
|
-
pyqrack/quimb_circuit_type.py,sha256=iC0CCpZBGhziFC8-uBCH43Mi29uvVUrtBG6W9YBlyps,638
|
|
11
|
-
pyqrack/qrack_system/__init__.py,sha256=PUterej-xpA4BqFmiBrQCMeTQlsRf-K8Dxnwp-iVvUQ,343
|
|
12
|
-
pyqrack/qrack_system/qrack_system.py,sha256=R0BdzXNglc2CFdE4rRusPiRcqHAk62Y1M4FxhPhL46U,45034
|
|
13
|
-
pyqrack/qrack_system/qrack_lib/qrack_pinvoke.dll,sha256=YFSy3pz633OfAUalYL6zpyTGP-op9S9xP3dP4dA4PwQ,1969664
|
|
14
|
-
pyqrack/stats/__init__.py,sha256=hI715MGW7D4mDYhUFpRI4ZLsynYDO4tN-rjsuuYbG6Q,282
|
|
15
|
-
pyqrack/stats/load_quantized_data.py,sha256=_1w9BPrZNreP0wOAyaAZHdEGKoGiI7tMeFD9P3eyJC0,1219
|
|
16
|
-
pyqrack/stats/quantize_by_range.py,sha256=0eBIqByIxa4vfm4fQGZLAMGR9y8raxde3e5rvUWJ_dQ,2326
|
|
17
|
-
pyqrack_cpu_complex128-1.69.0.dist-info/LICENSE,sha256=IdAVedmFOPQtHi_XeEI9OhJwUuwlT6tCJwrT55zAn3w,1090
|
|
18
|
-
pyqrack_cpu_complex128-1.69.0.dist-info/METADATA,sha256=mUrRIRM2L0gPKWjKD8V4BPr9pqNS5eyDpjKL11PJo4Y,6112
|
|
19
|
-
pyqrack_cpu_complex128-1.69.0.dist-info/WHEEL,sha256=JMWfR_Dj7ISokcwe0cBhCfK6JKnIi-ZX11L6d_ntt6o,98
|
|
20
|
-
pyqrack_cpu_complex128-1.69.0.dist-info/top_level.txt,sha256=YE_3q9JTGRLMilNg2tGP1y7uU-Dx8PDao2OhwoIbv8E,8
|
|
21
|
-
pyqrack_cpu_complex128-1.69.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{pyqrack_cpu_complex128-1.69.0.dist-info → pyqrack_cpu_complex128-1.78.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|