pyqrack-cuda 1.55.4__tar.gz → 1.56.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.
- {pyqrack_cuda-1.55.4/pyqrack_cuda.egg-info → pyqrack_cuda-1.56.0}/PKG-INFO +1 -1
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_ace_backend.py +16 -1
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_simulator.py +1 -1
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0/pyqrack_cuda.egg-info}/PKG-INFO +1 -1
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/setup.py +1 -1
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/LICENSE +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/MANIFEST.in +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/Makefile +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/README.md +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyproject.toml +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/__init__.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/neuron_activation_fn.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/pauli.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_circuit.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_neuron.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_neuron_torch_layer.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_stabilizer.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_system/__init__.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/qrack_system/qrack_system.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/quimb_circuit_type.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/stats/__init__.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/stats/load_quantized_data.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack/stats/quantize_by_range.py +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack_cuda.egg-info/SOURCES.txt +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack_cuda.egg-info/dependency_links.txt +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack_cuda.egg-info/not-zip-safe +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack_cuda.egg-info/requires.txt +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/pyqrack_cuda.egg-info/top_level.txt +0 -0
- {pyqrack_cuda-1.55.4 → pyqrack_cuda-1.56.0}/setup.cfg +0 -0
@@ -171,8 +171,17 @@ class QrackAceBackend:
|
|
171
171
|
long_range_columns=2,
|
172
172
|
is_transpose=False,
|
173
173
|
isTensorNetwork=False,
|
174
|
+
isSchmidtDecomposeMulti=False,
|
175
|
+
isSchmidtDecompose=True,
|
174
176
|
isStabilizerHybrid=False,
|
175
177
|
isBinaryDecisionTree=False,
|
178
|
+
isPaged=True,
|
179
|
+
isCpuGpuHybrid=True,
|
180
|
+
isOpenCL=True,
|
181
|
+
isHostPointer=(
|
182
|
+
True if os.environ.get("PYQRACK_HOST_POINTER_DEFAULT_ON") else False
|
183
|
+
),
|
184
|
+
noise=0,
|
176
185
|
toClone=None,
|
177
186
|
):
|
178
187
|
if toClone:
|
@@ -242,15 +251,21 @@ class QrackAceBackend:
|
|
242
251
|
|
243
252
|
self.sim = []
|
244
253
|
for i in range(sim_count):
|
245
|
-
sim_counts[i] += 1
|
246
254
|
self.sim.append(
|
247
255
|
toClone.sim[i].clone()
|
248
256
|
if toClone
|
249
257
|
else QrackSimulator(
|
250
258
|
sim_counts[i],
|
251
259
|
isTensorNetwork=isTensorNetwork,
|
260
|
+
isSchmidtDecomposeMulti=isSchmidtDecomposeMulti,
|
261
|
+
isSchmidtDecompose=isSchmidtDecompose,
|
252
262
|
isStabilizerHybrid=isStabilizerHybrid,
|
253
263
|
isBinaryDecisionTree=isBinaryDecisionTree,
|
264
|
+
isPaged=isPaged,
|
265
|
+
isCpuGpuHybrid=isCpuGpuHybrid,
|
266
|
+
isOpenCL=isOpenCL,
|
267
|
+
isHostPointer=isHostPointer,
|
268
|
+
noise=noise,
|
254
269
|
)
|
255
270
|
)
|
256
271
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|