pyqrack-complex128 1.65.2__py3-none-macosx_14_0_arm64.whl → 1.81.0__py3-none-macosx_14_0_arm64.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.
Potentially problematic release.
This version of pyqrack-complex128 might be problematic. Click here for more details.
- pyqrack/__init__.py +2 -2
- pyqrack/qrack_ace_backend.py +44 -70
- pyqrack/qrack_circuit.py +51 -40
- pyqrack/qrack_neuron.py +129 -34
- pyqrack/qrack_neuron_torch_layer.py +194 -107
- pyqrack/qrack_simulator.py +372 -278
- pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.10.0.0.dylib +0 -0
- pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.dylib +0 -0
- pyqrack/qrack_system/qrack_system.py +84 -59
- pyqrack/stats/load_quantized_data.py +1 -3
- pyqrack/stats/quantize_by_range.py +2 -6
- {pyqrack_complex128-1.65.2.dist-info → pyqrack_complex128-1.81.0.dist-info}/METADATA +4 -4
- pyqrack_complex128-1.81.0.dist-info/RECORD +23 -0
- pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.9.24.0.dylib +0 -0
- pyqrack_complex128-1.65.2.dist-info/RECORD +0 -23
- {pyqrack_complex128-1.65.2.dist-info → pyqrack_complex128-1.81.0.dist-info}/LICENSE +0 -0
- {pyqrack_complex128-1.65.2.dist-info → pyqrack_complex128-1.81.0.dist-info}/WHEEL +0 -0
- {pyqrack_complex128-1.65.2.dist-info → pyqrack_complex128-1.81.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
@@ -28,13 +28,9 @@ class QrackSystem:
|
|
|
28
28
|
elif _platform == "win32":
|
|
29
29
|
shared_lib_path = os.path.dirname(__file__) + "/qrack_lib/qrack_pinvoke.dll"
|
|
30
30
|
elif _platform == "darwin":
|
|
31
|
-
shared_lib_path = (
|
|
32
|
-
os.path.dirname(__file__) + "/qrack_lib/libqrack_pinvoke.dylib"
|
|
33
|
-
)
|
|
31
|
+
shared_lib_path = os.path.dirname(__file__) + "/qrack_lib/libqrack_pinvoke.dylib"
|
|
34
32
|
else:
|
|
35
|
-
shared_lib_path = (
|
|
36
|
-
os.path.dirname(__file__) + "/qrack_lib/libqrack_pinvoke.so"
|
|
37
|
-
)
|
|
33
|
+
shared_lib_path = os.path.dirname(__file__) + "/qrack_lib/libqrack_pinvoke.so"
|
|
38
34
|
|
|
39
35
|
try:
|
|
40
36
|
self.qrack_lib = CDLL(shared_lib_path)
|
|
@@ -50,9 +46,7 @@ class QrackSystem:
|
|
|
50
46
|
self.qrack_lib = CDLL(shared_lib_path)
|
|
51
47
|
except Exception as e:
|
|
52
48
|
if _platform == "win32":
|
|
53
|
-
shared_lib_path = (
|
|
54
|
-
"C:/Program Files (x86)/Qrack/bin/qrack_pinvoke.dll"
|
|
55
|
-
)
|
|
49
|
+
shared_lib_path = "C:/Program Files (x86)/Qrack/bin/qrack_pinvoke.dll"
|
|
56
50
|
elif _platform == "darwin":
|
|
57
51
|
shared_lib_path = "/usr/lib/qrack/libqrack_pinvoke.dylib"
|
|
58
52
|
else:
|
|
@@ -87,19 +81,32 @@ class QrackSystem:
|
|
|
87
81
|
CFUNCTYPE(c_ulonglong, c_double, c_double),
|
|
88
82
|
]
|
|
89
83
|
|
|
90
|
-
# These next
|
|
84
|
+
# These next few methods need to have c_double pointers, if PyQrack is built with fp64.
|
|
91
85
|
self.qrack_lib.InKet.restype = None
|
|
92
86
|
self.qrack_lib.OutKet.restype = None
|
|
93
87
|
self.qrack_lib.OutProbs.restype = None
|
|
88
|
+
self.qrack_lib.OutReducedDensityMatrix.restype = None
|
|
94
89
|
|
|
95
90
|
if self.fppow < 6:
|
|
96
91
|
self.qrack_lib.InKet.argtypes = [c_ulonglong, POINTER(c_float)]
|
|
97
92
|
self.qrack_lib.OutKet.argtypes = [c_ulonglong, POINTER(c_float)]
|
|
98
93
|
self.qrack_lib.OutProbs.argtypes = [c_ulonglong, POINTER(c_float)]
|
|
94
|
+
self.qrack_lib.OutReducedDensityMatrix.argtypes = [
|
|
95
|
+
c_ulonglong,
|
|
96
|
+
c_ulonglong,
|
|
97
|
+
POINTER(c_ulonglong),
|
|
98
|
+
POINTER(c_float),
|
|
99
|
+
]
|
|
99
100
|
else:
|
|
100
101
|
self.qrack_lib.InKet.argtypes = [c_ulonglong, POINTER(c_double)]
|
|
101
102
|
self.qrack_lib.OutKet.argtypes = [c_ulonglong, POINTER(c_double)]
|
|
102
103
|
self.qrack_lib.OutProbs.argtypes = [c_ulonglong, POINTER(c_double)]
|
|
104
|
+
self.qrack_lib.OutReducedDensityMatrix.argtypes = [
|
|
105
|
+
c_ulonglong,
|
|
106
|
+
c_ulonglong,
|
|
107
|
+
POINTER(c_ulonglong),
|
|
108
|
+
POINTER(c_double),
|
|
109
|
+
]
|
|
103
110
|
|
|
104
111
|
self.qrack_lib.init.restype = c_ulonglong
|
|
105
112
|
self.qrack_lib.init.argtypes = []
|
|
@@ -108,10 +115,10 @@ class QrackSystem:
|
|
|
108
115
|
self.qrack_lib.get_error.argtypes = [c_ulonglong]
|
|
109
116
|
|
|
110
117
|
self.qrack_lib.init_count.restype = c_ulonglong
|
|
111
|
-
self.qrack_lib.init_count.argtypes = [c_ulonglong, c_bool]
|
|
118
|
+
self.qrack_lib.init_count.argtypes = [c_ulonglong, c_bool, c_bool]
|
|
112
119
|
|
|
113
120
|
self.qrack_lib.init_count_pager.restype = c_ulonglong
|
|
114
|
-
self.qrack_lib.init_count_pager.argtypes = [c_ulonglong, c_bool]
|
|
121
|
+
self.qrack_lib.init_count_pager.argtypes = [c_ulonglong, c_bool, c_bool]
|
|
115
122
|
|
|
116
123
|
self.qrack_lib.init_count_type.restype = c_ulonglong
|
|
117
124
|
self.qrack_lib.init_count_type.argtypes = [
|
|
@@ -126,6 +133,7 @@ class QrackSystem:
|
|
|
126
133
|
c_bool,
|
|
127
134
|
c_bool,
|
|
128
135
|
c_bool,
|
|
136
|
+
c_bool,
|
|
129
137
|
]
|
|
130
138
|
|
|
131
139
|
self.qrack_lib.init_count_stabilizer.restype = c_ulonglong
|
|
@@ -155,15 +163,21 @@ class QrackSystem:
|
|
|
155
163
|
|
|
156
164
|
# pseudo-quantum
|
|
157
165
|
|
|
166
|
+
self.qrack_lib.HighestProbAll.restype = None
|
|
167
|
+
self.qrack_lib.HighestProbAll.argtypes = [c_ulonglong, POINTER(c_ulonglong)]
|
|
168
|
+
|
|
169
|
+
self.qrack_lib.HighestProbAllN.restype = None
|
|
170
|
+
self.qrack_lib.HighestProbAllN.argtypes = [c_ulonglong, c_ulonglong, POINTER(c_ulonglong)]
|
|
171
|
+
|
|
158
172
|
self.qrack_lib.ProbAll.restype = None
|
|
159
|
-
if self.fppow
|
|
173
|
+
if self.fppow <= 5:
|
|
160
174
|
self.qrack_lib.ProbAll.argtypes = [
|
|
161
175
|
c_ulonglong,
|
|
162
176
|
c_ulonglong,
|
|
163
177
|
POINTER(c_ulonglong),
|
|
164
178
|
POINTER(c_float),
|
|
165
179
|
]
|
|
166
|
-
|
|
180
|
+
else:
|
|
167
181
|
self.qrack_lib.ProbAll.argtypes = [
|
|
168
182
|
c_ulonglong,
|
|
169
183
|
c_ulonglong,
|
|
@@ -228,7 +242,7 @@ class QrackSystem:
|
|
|
228
242
|
c_bool,
|
|
229
243
|
]
|
|
230
244
|
|
|
231
|
-
if self.fppow
|
|
245
|
+
if self.fppow <= 5:
|
|
232
246
|
self.qrack_lib.FactorizedExpectationFp.restype = c_double
|
|
233
247
|
self.qrack_lib.FactorizedExpectationFp.argtypes = [
|
|
234
248
|
c_ulonglong,
|
|
@@ -274,7 +288,7 @@ class QrackSystem:
|
|
|
274
288
|
POINTER(c_float),
|
|
275
289
|
POINTER(c_float),
|
|
276
290
|
]
|
|
277
|
-
|
|
291
|
+
else:
|
|
278
292
|
self.qrack_lib.FactorizedExpectationFp.restype = c_double
|
|
279
293
|
self.qrack_lib.FactorizedExpectationFp.argtypes = [
|
|
280
294
|
c_ulonglong,
|
|
@@ -363,7 +377,7 @@ class QrackSystem:
|
|
|
363
377
|
c_bool,
|
|
364
378
|
]
|
|
365
379
|
|
|
366
|
-
if self.fppow
|
|
380
|
+
if self.fppow <= 5:
|
|
367
381
|
self.qrack_lib.FactorizedVarianceFp.restype = c_double
|
|
368
382
|
self.qrack_lib.FactorizedVarianceFp.argtypes = [
|
|
369
383
|
c_ulonglong,
|
|
@@ -409,7 +423,7 @@ class QrackSystem:
|
|
|
409
423
|
POINTER(c_float),
|
|
410
424
|
POINTER(c_float),
|
|
411
425
|
]
|
|
412
|
-
|
|
426
|
+
else:
|
|
413
427
|
self.qrack_lib.FactorizedVarianceFp.restype = c_double
|
|
414
428
|
self.qrack_lib.FactorizedVarianceFp.argtypes = [
|
|
415
429
|
c_ulonglong,
|
|
@@ -1209,6 +1223,12 @@ class QrackSystem:
|
|
|
1209
1223
|
self.qrack_lib.SetNoiseParameter.restype = None
|
|
1210
1224
|
self.qrack_lib.SetNoiseParameter.argtypes = [c_ulonglong, c_double]
|
|
1211
1225
|
|
|
1226
|
+
self.qrack_lib.SetAceMaxQb.restype = None
|
|
1227
|
+
self.qrack_lib.SetAceMaxQb.argtypes = [c_ulonglong, c_ulonglong]
|
|
1228
|
+
|
|
1229
|
+
self.qrack_lib.SetSparseAceMaxMb.restype = None
|
|
1230
|
+
self.qrack_lib.SetSparseAceMaxMb.argtypes = [c_ulonglong, c_size_t]
|
|
1231
|
+
|
|
1212
1232
|
self.qrack_lib.Normalize.restype = None
|
|
1213
1233
|
self.qrack_lib.Normalize.argtypes = [c_ulonglong]
|
|
1214
1234
|
|
|
@@ -1224,9 +1244,6 @@ class QrackSystem:
|
|
|
1224
1244
|
c_ulonglong,
|
|
1225
1245
|
POINTER(c_ulonglong),
|
|
1226
1246
|
c_ulonglong,
|
|
1227
|
-
c_ulonglong,
|
|
1228
|
-
c_double,
|
|
1229
|
-
c_double,
|
|
1230
1247
|
]
|
|
1231
1248
|
|
|
1232
1249
|
self.qrack_lib.clone_qneuron.restype = c_ulonglong
|
|
@@ -1235,53 +1252,61 @@ class QrackSystem:
|
|
|
1235
1252
|
self.qrack_lib.destroy_qneuron.restype = None
|
|
1236
1253
|
self.qrack_lib.destroy_qneuron.argtypes = [c_ulonglong]
|
|
1237
1254
|
|
|
1238
|
-
self.qrack_lib.
|
|
1239
|
-
self.qrack_lib.
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
c_ulonglong,
|
|
1247
|
-
POINTER(c_double),
|
|
1248
|
-
]
|
|
1249
|
-
self.qrack_lib.get_qneuron_angles.argtypes = [
|
|
1250
|
-
c_ulonglong,
|
|
1251
|
-
POINTER(c_double),
|
|
1252
|
-
]
|
|
1255
|
+
self.qrack_lib.set_qneuron_sim.restype = None
|
|
1256
|
+
self.qrack_lib.set_qneuron_sim.argtypes = [
|
|
1257
|
+
c_ulonglong,
|
|
1258
|
+
c_ulonglong,
|
|
1259
|
+
c_ulonglong,
|
|
1260
|
+
POINTER(c_ulonglong),
|
|
1261
|
+
c_ulonglong
|
|
1262
|
+
]
|
|
1253
1263
|
|
|
1254
|
-
self.
|
|
1255
|
-
|
|
1264
|
+
if self.fppow <= 5:
|
|
1265
|
+
self.qrack_lib.qneuron_predict.restype = c_double
|
|
1266
|
+
self.qrack_lib.qneuron_predict.argtypes = [c_ulonglong, POINTER(c_float), c_bool, c_bool, c_ulonglong, c_double]
|
|
1256
1267
|
|
|
1257
|
-
|
|
1258
|
-
|
|
1268
|
+
self.qrack_lib.qneuron_unpredict.restype = c_double
|
|
1269
|
+
self.qrack_lib.qneuron_unpredict.argtypes = [c_ulonglong, POINTER(c_float), c_bool, c_ulonglong, c_double]
|
|
1259
1270
|
|
|
1260
|
-
|
|
1261
|
-
|
|
1271
|
+
self.qrack_lib.qneuron_learn_cycle.restype = c_double
|
|
1272
|
+
self.qrack_lib.qneuron_learn_cycle.argtypes = [c_ulonglong, POINTER(c_float), c_bool, c_ulonglong, c_double]
|
|
1262
1273
|
|
|
1263
|
-
|
|
1264
|
-
|
|
1274
|
+
self.qrack_lib.qneuron_learn.restype = None
|
|
1275
|
+
self.qrack_lib.qneuron_learn.argtypes = [c_ulonglong, POINTER(c_float), c_double, c_bool, c_bool, c_ulonglong, c_double]
|
|
1265
1276
|
|
|
1266
|
-
|
|
1267
|
-
|
|
1277
|
+
self.qrack_lib.qneuron_learn_permutation.restype = None
|
|
1278
|
+
self.qrack_lib.qneuron_learn_permutation.argtypes = [
|
|
1279
|
+
c_ulonglong,
|
|
1280
|
+
POINTER(c_float),
|
|
1281
|
+
c_double,
|
|
1282
|
+
c_bool,
|
|
1283
|
+
c_bool,
|
|
1284
|
+
c_ulonglong,
|
|
1285
|
+
c_double,
|
|
1286
|
+
]
|
|
1287
|
+
else:
|
|
1288
|
+
self.qrack_lib.qneuron_predict.restype = c_double
|
|
1289
|
+
self.qrack_lib.qneuron_predict.argtypes = [c_ulonglong, POINTER(c_double), c_bool, c_bool, c_ulonglong, c_double]
|
|
1268
1290
|
|
|
1269
|
-
|
|
1270
|
-
|
|
1291
|
+
self.qrack_lib.qneuron_unpredict.restype = c_double
|
|
1292
|
+
self.qrack_lib.qneuron_unpredict.argtypes = [c_ulonglong, POINTER(c_double), c_bool, c_ulonglong, c_double]
|
|
1271
1293
|
|
|
1272
|
-
|
|
1273
|
-
|
|
1294
|
+
self.qrack_lib.qneuron_learn_cycle.restype = c_double
|
|
1295
|
+
self.qrack_lib.qneuron_learn_cycle.argtypes = [c_ulonglong, POINTER(c_double), c_bool, c_ulonglong, c_double]
|
|
1274
1296
|
|
|
1275
|
-
|
|
1276
|
-
|
|
1297
|
+
self.qrack_lib.qneuron_learn.restype = None
|
|
1298
|
+
self.qrack_lib.qneuron_learn.argtypes = [c_ulonglong, POINTER(c_double), c_double, c_bool, c_bool, c_ulonglong, c_double]
|
|
1277
1299
|
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1300
|
+
self.qrack_lib.qneuron_learn_permutation.restype = None
|
|
1301
|
+
self.qrack_lib.qneuron_learn_permutation.argtypes = [
|
|
1302
|
+
c_ulonglong,
|
|
1303
|
+
POINTER(c_double),
|
|
1304
|
+
c_double,
|
|
1305
|
+
c_bool,
|
|
1306
|
+
c_bool,
|
|
1307
|
+
c_ulonglong,
|
|
1308
|
+
c_double,
|
|
1309
|
+
]
|
|
1285
1310
|
|
|
1286
1311
|
self.qrack_lib.init_qcircuit.restype = c_ulonglong
|
|
1287
1312
|
self.qrack_lib.init_qcircuit.argtypes = [c_bool, c_bool]
|
|
@@ -20,9 +20,7 @@ def load_data(sim, index_bits, value_bits, data):
|
|
|
20
20
|
Value error: Length of value_bits does not match data feature column count!
|
|
21
21
|
"""
|
|
22
22
|
if (len(data) > 0) and (len(value_bits) != len(data[0])):
|
|
23
|
-
raise ValueError(
|
|
24
|
-
"Length of value_bits does not match data feature column count!"
|
|
25
|
-
)
|
|
23
|
+
raise ValueError("Length of value_bits does not match data feature column count!")
|
|
26
24
|
|
|
27
25
|
for i in range(index_bits):
|
|
28
26
|
if sim.m(i):
|
|
@@ -28,9 +28,7 @@ try:
|
|
|
28
28
|
min_val, max_val = data[:, i].min(), data[:, i].max()
|
|
29
29
|
thresholds = np.linspace(min_val, max_val, n_bins + 1)[1:-1]
|
|
30
30
|
bins = np.digitize(data[:, i], bins=thresholds)
|
|
31
|
-
bin_bits = ((bins[:, None] & (1 << np.arange(bits)[::-1])) > 0).astype(
|
|
32
|
-
int
|
|
33
|
-
)
|
|
31
|
+
bin_bits = ((bins[:, None] & (1 << np.arange(bits)[::-1])) > 0).astype(int)
|
|
34
32
|
new_features.append(bin_bits)
|
|
35
33
|
else:
|
|
36
34
|
new_features.append(data[:, i][:, None]) # Keep original
|
|
@@ -51,6 +49,4 @@ except ImportError:
|
|
|
51
49
|
Returns:
|
|
52
50
|
np.ndarray: Transformed data with selected features replaced by binary bit columns.
|
|
53
51
|
"""
|
|
54
|
-
raise NotImplementedError(
|
|
55
|
-
"You must have numpy installed to use quantize_by_percentile()!"
|
|
56
|
-
)
|
|
52
|
+
raise NotImplementedError("You must have numpy installed to use quantize_by_percentile()!")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyqrack-complex128
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.81.0
|
|
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,9 @@ 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:
|
|
35
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
36
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
37
|
+
Classifier: Topic :: Scientific/Engineering :: Quantum Computing
|
|
38
38
|
Description-Content-Type: text/markdown
|
|
39
39
|
License-File: LICENSE
|
|
40
40
|
Provides-Extra: dev
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
pyqrack/__init__.py,sha256=P-J0gPYsYfeoBdJA0EqGwrmGwM0-hyI6pqb0Qd40Rpg,790
|
|
2
|
+
pyqrack/neuron_activation_fn.py,sha256=fQTTFfsvwcot_43Vopacot47IV2Rxk8pelUyuzwpXPs,593
|
|
3
|
+
pyqrack/pauli.py,sha256=wg500wDOwdIU4lEVJoMmjtbAdmtakZYzLPjdzC2rwUQ,654
|
|
4
|
+
pyqrack/qrack_ace_backend.py,sha256=-LSEX-M_hg-17LL27rLh8fpwuJaMEQeQpXzYoiuC21A,49143
|
|
5
|
+
pyqrack/qrack_circuit.py,sha256=jcelcoRrAWJBs9OrjBKkCba1MEIUcXeXDMKH3iwOl2Y,19778
|
|
6
|
+
pyqrack/qrack_neuron.py,sha256=b5n3kZzTg-qYKOMmaeigalP5cBzZCarMjDeOjwprCtI,12084
|
|
7
|
+
pyqrack/qrack_neuron_torch_layer.py,sha256=1h3vD4iG662b6ZqOC7y6IDtI2ul7dUtNaAPal8mfCjg,10560
|
|
8
|
+
pyqrack/qrack_simulator.py,sha256=41nQEjC8IRhPz2_McpH9G-1T7V1aFK82RRKLxt1oJeo,148879
|
|
9
|
+
pyqrack/qrack_stabilizer.py,sha256=O-7VJ9Vw4h25PK_kesSjIqHXGSo8lLrQLIyGgmzG7Co,2124
|
|
10
|
+
pyqrack/quimb_circuit_type.py,sha256=Sk-Tmn38kUYmAkJJ75btWuhYZyTXOOezmowFhfdiGDc,621
|
|
11
|
+
pyqrack/qrack_system/__init__.py,sha256=-oZ9dsb1hixsnrkUJRY_C5DzQ_l6MtifF_Z465BgqV4,334
|
|
12
|
+
pyqrack/qrack_system/qrack_system.py,sha256=Zh7xhG-XCLkiTTERBaXhdLQBUojleCn0E5oRizqCVlA,44422
|
|
13
|
+
pyqrack/qrack_system/qrack_cl_precompile/qrack_cl_precompile,sha256=oVv74H7l9G0k6YTYFqYWygQ9XV-xt7IcyPwZlpudbuw,36224
|
|
14
|
+
pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.10.0.0.dylib,sha256=0bh-LK3kx7RVay1vKgjumQ0MC08F4LVyqB7yTIdsKVs,3643248
|
|
15
|
+
pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.dylib,sha256=0bh-LK3kx7RVay1vKgjumQ0MC08F4LVyqB7yTIdsKVs,3643248
|
|
16
|
+
pyqrack/stats/__init__.py,sha256=Hla85my2fY_roR9lIjGBVpEG7ySOTMwjWa8D6-kgCnY,276
|
|
17
|
+
pyqrack/stats/load_quantized_data.py,sha256=10-ZULlnSX45br7fDtJuiCzcMTAL4eI3QyhSENXZjgM,1162
|
|
18
|
+
pyqrack/stats/quantize_by_range.py,sha256=zPLMNuuyzMPvB-K9Ukc-RjzIzwCsZkzuT2gZneCeCBg,2210
|
|
19
|
+
pyqrack_complex128-1.81.0.dist-info/LICENSE,sha256=HxB-7SaWTuewAk1nz-3_3FUD6QhgX73kNT_taKVUTq8,1069
|
|
20
|
+
pyqrack_complex128-1.81.0.dist-info/METADATA,sha256=begBnsDIsLJql4e-DZBQHaVvuu8Q_O8cQBcYJgXxfuw,5992
|
|
21
|
+
pyqrack_complex128-1.81.0.dist-info/WHEEL,sha256=BM14wstXunLvpW3hePaerLq1eZfN4NnYgS3CIXR7_AM,106
|
|
22
|
+
pyqrack_complex128-1.81.0.dist-info/top_level.txt,sha256=YE_3q9JTGRLMilNg2tGP1y7uU-Dx8PDao2OhwoIbv8E,8
|
|
23
|
+
pyqrack_complex128-1.81.0.dist-info/RECORD,,
|
|
Binary file
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
pyqrack/__init__.py,sha256=3tBwfCCD-zQjQ2g1EUZdggKdn-3b2uSFTbT7LS0YLaU,785
|
|
2
|
-
pyqrack/neuron_activation_fn.py,sha256=fQTTFfsvwcot_43Vopacot47IV2Rxk8pelUyuzwpXPs,593
|
|
3
|
-
pyqrack/pauli.py,sha256=wg500wDOwdIU4lEVJoMmjtbAdmtakZYzLPjdzC2rwUQ,654
|
|
4
|
-
pyqrack/qrack_ace_backend.py,sha256=Prw1NhVVt0csbHiJeW8MJI9rl1P1YS63sXM5quoNPrI,49392
|
|
5
|
-
pyqrack/qrack_circuit.py,sha256=vDCKGbcEHJDFUKprjCpWgit8lXFnMrPimKHURD2_Hj4,19538
|
|
6
|
-
pyqrack/qrack_neuron.py,sha256=UiJdjAGB6usjAGHWSosSFCUUeIkhh3MtZbsaxfsIsNw,9043
|
|
7
|
-
pyqrack/qrack_neuron_torch_layer.py,sha256=Bs5BLC2GFevfSpo_jSJ2AZl-hfDRJmzlGN9pFw1CtoQ,6160
|
|
8
|
-
pyqrack/qrack_simulator.py,sha256=oeltq684s_Fu3tyaGmbxPGiLsKZ39BsUf54tvmgvB7Y,143989
|
|
9
|
-
pyqrack/qrack_stabilizer.py,sha256=O-7VJ9Vw4h25PK_kesSjIqHXGSo8lLrQLIyGgmzG7Co,2124
|
|
10
|
-
pyqrack/quimb_circuit_type.py,sha256=Sk-Tmn38kUYmAkJJ75btWuhYZyTXOOezmowFhfdiGDc,621
|
|
11
|
-
pyqrack/qrack_system/__init__.py,sha256=-oZ9dsb1hixsnrkUJRY_C5DzQ_l6MtifF_Z465BgqV4,334
|
|
12
|
-
pyqrack/qrack_system/qrack_system.py,sha256=u5GqOPkjkT2HUlzYU7BmvM4efhNiArda5TqhBVybBtc,43070
|
|
13
|
-
pyqrack/qrack_system/qrack_cl_precompile/qrack_cl_precompile,sha256=oVv74H7l9G0k6YTYFqYWygQ9XV-xt7IcyPwZlpudbuw,36224
|
|
14
|
-
pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.9.24.0.dylib,sha256=b3Exmg7xpogCFD7V2BcwgqAcPNfXXq1TK7oVE6feNeI,2878176
|
|
15
|
-
pyqrack/qrack_system/qrack_lib/libqrack_pinvoke.dylib,sha256=b3Exmg7xpogCFD7V2BcwgqAcPNfXXq1TK7oVE6feNeI,2878176
|
|
16
|
-
pyqrack/stats/__init__.py,sha256=Hla85my2fY_roR9lIjGBVpEG7ySOTMwjWa8D6-kgCnY,276
|
|
17
|
-
pyqrack/stats/load_quantized_data.py,sha256=z12u9F7Nt3P-i44nY1xxvso_klS6WIHS3iqq7R2_lqE,1184
|
|
18
|
-
pyqrack/stats/quantize_by_range.py,sha256=UM0_7jJDdQ7g30cR3UQAxkbzkqrmsy1oUfqg0h11FUY,2270
|
|
19
|
-
pyqrack_complex128-1.65.2.dist-info/LICENSE,sha256=HxB-7SaWTuewAk1nz-3_3FUD6QhgX73kNT_taKVUTq8,1069
|
|
20
|
-
pyqrack_complex128-1.65.2.dist-info/METADATA,sha256=0oeCPyxvUmW4RYu-m1RvnDmFkFmRXELBFgvu9SPFMT4,5969
|
|
21
|
-
pyqrack_complex128-1.65.2.dist-info/WHEEL,sha256=BM14wstXunLvpW3hePaerLq1eZfN4NnYgS3CIXR7_AM,106
|
|
22
|
-
pyqrack_complex128-1.65.2.dist-info/top_level.txt,sha256=YE_3q9JTGRLMilNg2tGP1y7uU-Dx8PDao2OhwoIbv8E,8
|
|
23
|
-
pyqrack_complex128-1.65.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|