pyqrack 1.29.0__py3-none-win_amd64.whl → 1.72.5__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.
@@ -1,4 +1,4 @@
1
- # (C) Daniel Strano and the Qrack contributors 2017-2021. All rights reserved.
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
2
  #
3
3
  # Pauli operators are specified for "b" (or "basis") parameters.
4
4
  #
@@ -0,0 +1,6 @@
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
+ #
3
+ # Use of this source code is governed by an MIT-style license that can be
4
+ # found in the LICENSE file or at https://opensource.org/licenses/MIT.
5
+
6
+ from .quantize_by_range import quantize_by_range
@@ -0,0 +1,35 @@
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
+ #
3
+ # Load quantized data into a QrackSimulator
4
+ #
5
+ # Use of this source code is governed by an MIT-style license that can be
6
+ # found in the LICENSE file or at https://opensource.org/licenses/MIT.
7
+
8
+
9
+ def load_data(sim, index_bits, value_bits, data):
10
+ """
11
+ Take discretized features from quantize_by_range and load into a QrackSimulator
12
+
13
+ Args:
14
+ sim (QrackSimulator): Simulator into which to load data
15
+ index_bits (list[int]): List of index bits, least-to-most significant
16
+ value_bits (list[int]): List of value bits, least-to-most significant
17
+ data (list[list[bool]]): Data to load, row-major
18
+
19
+ Raises:
20
+ Value error: Length of value_bits does not match data feature column count!
21
+ """
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
+ )
26
+
27
+ for i in range(index_bits):
28
+ if sim.m(i):
29
+ sim.x(i)
30
+ sim.h(i)
31
+
32
+ if len(data) == 0:
33
+ return
34
+
35
+ sim.lda(list(range(index_bits)), list(range(value_bits)), data)
@@ -0,0 +1,56 @@
1
+ # (C) Daniel Strano and the Qrack contributors 2017-2025. All rights reserved.
2
+ #
3
+ # Use of this source code is governed by an MIT-style license that can be
4
+ # found in the LICENSE file or at https://opensource.org/licenses/MIT.
5
+
6
+ try:
7
+ # Written by Elara (custom OpenAI GPT)
8
+ import numpy as np
9
+
10
+ def quantize_by_range(data, feature_indices, bits):
11
+ """
12
+ Discretize selected features of a dataset into binary variables using numpy.linspace binning.
13
+
14
+ Args:
15
+ data (np.ndarray): Input data of shape (n_samples, n_features).
16
+ feature_indices (list[int]): Indices of features to discretize.
17
+ bits (int): Number of bits to represent each discretized feature (e.g., 2 bits = 4 quantiles).
18
+
19
+ Returns:
20
+ np.ndarray: Transformed data with selected features replaced by binary bit columns.
21
+ """
22
+ n_samples, n_features = data.shape
23
+ n_bins = 2**bits
24
+
25
+ new_features = []
26
+ for i in range(n_features):
27
+ if i in feature_indices:
28
+ min_val, max_val = data[:, i].min(), data[:, i].max()
29
+ thresholds = np.linspace(min_val, max_val, n_bins + 1)[1:-1]
30
+ bins = np.digitize(data[:, i], bins=thresholds)
31
+ bin_bits = ((bins[:, None] & (1 << np.arange(bits)[::-1])) > 0).astype(
32
+ int
33
+ )
34
+ new_features.append(bin_bits)
35
+ else:
36
+ new_features.append(data[:, i][:, None]) # Keep original
37
+
38
+ return np.hstack(new_features)
39
+
40
+ except ImportError:
41
+
42
+ def quantize_by_range(data, feature_indices, bits):
43
+ """
44
+ Discretize selected features of a dataset into binary variables using numpy.linspace binning.
45
+
46
+ Args:
47
+ data (np.ndarray): Input data of shape (n_samples, n_features).
48
+ feature_indices (list[int]): Indices of features to discretize.
49
+ bits (int): Number of bits to represent each discretized feature (e.g., 2 bits = 4 quantiles).
50
+
51
+ Returns:
52
+ np.ndarray: Transformed data with selected features replaced by binary bit columns.
53
+ """
54
+ raise NotImplementedError(
55
+ "You must have numpy installed to use quantize_by_percentile()!"
56
+ )
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 vm6502q
3
+ Copyright (c) 2021-2023 vm6502q
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyqrack
3
+ Version: 1.72.5
4
+ Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
5
+ Home-page: https://github.com/vm6502q/pyqrack
6
+ Author: Daniel Strano
7
+ Author-email: dan@unitary.fund
8
+ License: MIT
9
+ Keywords: pyqrack qrack simulator quantum gpu
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Operating System :: Microsoft :: Windows
14
+ Classifier: Operating System :: MacOS
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: C++
17
+ Classifier: Programming Language :: Python :: 2
18
+ Classifier: Programming Language :: Python :: 2.3
19
+ Classifier: Programming Language :: Python :: 2.4
20
+ Classifier: Programming Language :: Python :: 2.5
21
+ Classifier: Programming Language :: Python :: 2.6
22
+ Classifier: Programming Language :: Python :: 2.7
23
+ Classifier: Programming Language :: Python :: 3
24
+ Classifier: Programming Language :: Python :: 3.0
25
+ Classifier: Programming Language :: Python :: 3.1
26
+ Classifier: Programming Language :: Python :: 3.2
27
+ Classifier: Programming Language :: Python :: 3.3
28
+ Classifier: Programming Language :: Python :: 3.4
29
+ Classifier: Programming Language :: Python :: 3.5
30
+ Classifier: Programming Language :: Python :: 3.6
31
+ Classifier: Programming Language :: Python :: 3.7
32
+ Classifier: Programming Language :: Python :: 3.8
33
+ Classifier: Programming Language :: Python :: 3.9
34
+ Classifier: Programming Language :: Python :: 3.10
35
+ Classifier: Programming Language :: Python :: 3.11
36
+ Classifier: Programming Language :: Python :: 3.12
37
+ Classifier: Topic :: Scientific/Engineering :: Quantum Computing
38
+ Description-Content-Type: text/markdown
39
+ License-File: LICENSE
40
+ Provides-Extra: dev
41
+ Requires-Dist: pytest>=7.3.1; extra == "dev"
42
+
43
+ # pyqrack
44
+ [![Downloads](https://pepy.tech/badge/pyqrack)](https://pepy.tech/project/pyqrack) [![Downloads](https://pepy.tech/badge/pyqrack/month)](https://pepy.tech/project/pyqrack) [![Downloads](https://static.pepy.tech/badge/pyqrack/week)](https://pepy.tech/project/pyqrack)
45
+
46
+ Pure Python bindings for the pure C++11/OpenCL Qrack quantum computer simulator library
47
+
48
+ (**PyQrack** is just pure Qrack.)
49
+
50
+ **Note: You must also install OpenCL to use this version of Qrack.** (There are also CPU-only and CUDA version.)
51
+
52
+ **If you're looking for Mac ARM support, use the package `pyqrack`, not `pyqrack-cpu`.** Mac officially "deprecated" OpenCL years ago. Hence, accelerator support is not included in ARM-based Mac wheels, and OpenCL installation is **not** required on these systems, but, if you have a CUDA accelerator on ARM-based Mac, you could try the package `pyqrack-cuda` instead.
53
+
54
+ **Performance can benefit greatly from following the [Qrack repository "Quick Start" and "Power user considerations."](https://github.com/unitaryfund/qrack/blob/main/README.md#quick-start)**
55
+
56
+ **If you use an integrated graphics accelerator, like the Intel HD,** setting environment variable `PYQRACK_HOST_POINTER_DEFAULT_ON=1` (or to any "truthy" value) will automatically set the default of `isHostPointer` option of `QrackSimulator` to `True`, to engage "zero-copy" mode by default.
57
+
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`.
59
+
60
+ Any 2x2 bit operator matrix is represented by a list of 4 `complex` floating point numbers, in [**row-major order**](https://en.wikipedia.org/wiki/Row-_and_column-major_order).
61
+
62
+ Single and array "`b`" parameters represent [**Pauli operator bases**](https://en.wikipedia.org/wiki/Pauli_matrices). They are specified according to the enumeration of the [`Pauli`](https://github.com/unitaryfund/pyqrack/blob/main/pyqrack/pauli.py) class.
63
+
64
+ `MC[x]` and `MAC[x]` methods are controlled single bit gates, with as many control qubits as you specify via Python list `c` argument. `MCX` is multiply-controlled Pauli X, and `MACX` is "anti-"controlled Pauli X, i.e. "anti-control" activates the gate if all control bits are specifically **off**, as opposed to **on**.
65
+
66
+ To load the required **unitaryfund/qrack** libraries from a different location, set the `PYQRACK_SHARED_LIB_PATH` environment variable.
67
+
68
+ PyQrack has experimental support for [PyZX](https://github.com/Quantomatic/pyzx) `Circuit` definitions as an intermediate representation for `QrackSimulator`. To try this, load a `Circuit` in PyZX, (use that module to optimize your circuit, as you like,) and create a `QrackSimulator()` instance using the `pyzxCircuit` named argument of the constructor, like so:
69
+
70
+ ```python
71
+ sim = QrackSimulator(pyzxCircuit=c)
72
+ ```
73
+
74
+ where `c` is a PyZX circuit object. The circuit will automatically be simulated in the constructed `QrackSimulator` instance. This also allows loading from QASM and other intermediate representations supported by PyZX.
75
+
76
+ See [https://pyqrack.readthedocs.io/en/latest/](https://pyqrack.readthedocs.io/en/latest/) for an API reference.
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`). Your Qrack installation floating-point build option must match this specific value, which might require a custom Qrack build.
79
+
80
+ Please feel welcome to open an issue, if you'd like help. 😃
81
+
82
+ **Special thanks go to Zeeshan Ahmed, for bug fixes and design suggestions, Ashish Panigrahi, for documentation and design suggestions, WingCode, for documentation, Or Golan, for CI build pipeline tooling, and to the broader community of Qrack contributors, for years of happy Qracking! You rock!**
@@ -0,0 +1,22 @@
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=PVQeAShMWC6XikUwSeEwgDmfcBxNp9kHx43uqSqMWIk,150528
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=w32c_vF74_tY8ekDa686ixMuztPqlWdnrQYcYAdkyGA,45070
13
+ pyqrack/qrack_system/qrack_cl_precompile/qrack_cl_precompile.exe,sha256=o2SrW7XmLfKWzi4o2uZbMWGoJOHlqlNfq_oRonL-PbY,182272
14
+ pyqrack/qrack_system/qrack_lib/qrack_pinvoke.dll,sha256=dD8sF1Y3FLsUvNsDYREEqTEH0HyO-lfB8rDO-yoGmn8,2168320
15
+ pyqrack/stats/__init__.py,sha256=hI715MGW7D4mDYhUFpRI4ZLsynYDO4tN-rjsuuYbG6Q,282
16
+ pyqrack/stats/load_quantized_data.py,sha256=_1w9BPrZNreP0wOAyaAZHdEGKoGiI7tMeFD9P3eyJC0,1219
17
+ pyqrack/stats/quantize_by_range.py,sha256=0eBIqByIxa4vfm4fQGZLAMGR9y8raxde3e5rvUWJ_dQ,2326
18
+ pyqrack-1.72.5.dist-info/LICENSE,sha256=IdAVedmFOPQtHi_XeEI9OhJwUuwlT6tCJwrT55zAn3w,1090
19
+ pyqrack-1.72.5.dist-info/METADATA,sha256=553ATtz9f3l-VK-4vFIbkELVidq4GcbJ1lBdv-CA3m4,5999
20
+ pyqrack-1.72.5.dist-info/WHEEL,sha256=JMWfR_Dj7ISokcwe0cBhCfK6JKnIi-ZX11L6d_ntt6o,98
21
+ pyqrack-1.72.5.dist-info/top_level.txt,sha256=YE_3q9JTGRLMilNg2tGP1y7uU-Dx8PDao2OhwoIbv8E,8
22
+ pyqrack-1.72.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-win_amd64
5
5
 
pyqrack/util/__init__.py DELETED
@@ -1,8 +0,0 @@
1
- # (C) Daniel Strano and the Qrack contributors 2017-2021. All rights reserved.
2
- #
3
- # Use of this source code is governed by an MIT-style license that can be
4
- # found in the LICENSE file or at https://opensource.org/licenses/MIT.
5
-
6
- from .convert_qiskit_circuit_to_qasm_experiment import (
7
- convert_qiskit_circuit_to_qasm_experiment,
8
- )
@@ -1,61 +0,0 @@
1
- _IS_QISKIT_AVAILABLE = True
2
- try:
3
- from qiskit.circuit.quantumcircuit import QuantumCircuit
4
- from qiskit.qobj.qasm_qobj import QasmQobjExperiment, QasmQobjInstruction
5
- except ImportError:
6
- _IS_QISKIT_AVAILABLE = False
7
-
8
-
9
- class QrackQasmQobjInstructionConditional:
10
- def __init__(self, mask, val):
11
- self.mask = mask
12
- self.val = val
13
-
14
-
15
- def convert_qiskit_circuit_to_qasm_experiment(experiment, config=None, header=None):
16
- if not _IS_QISKIT_AVAILABLE:
17
- raise RuntimeError(
18
- "Before trying to convert_circuit_to_qasm_experiment() with QrackSimulator, you must install Qiskit!"
19
- )
20
-
21
- instructions = []
22
- for datum in experiment._data:
23
- qubits = []
24
- for qubit in datum[1]:
25
- qubits.append(experiment.qubits.index(qubit))
26
-
27
- clbits = []
28
- for clbit in datum[2]:
29
- clbits.append(experiment.clbits.index(clbit))
30
-
31
- conditional = None
32
- condition = datum[0].condition
33
- if condition is not None:
34
- if isinstance(condition[0], Clbit):
35
- conditional = experiment.clbits.index(condition[0])
36
- else:
37
- creg_index = experiment.cregs.index(condition[0])
38
- size = experiment.cregs[creg_index].size
39
- offset = 0
40
- for i in range(creg_index):
41
- offset += len(experiment.cregs[i])
42
- mask = ((1 << offset) - 1) ^ ((1 << (offset + size)) - 1)
43
- val = condition[1]
44
- conditional = (
45
- offset
46
- if (size == 1)
47
- else QrackQasmQobjInstructionConditional(mask, val)
48
- )
49
-
50
- instructions.append(
51
- QasmQobjInstruction(
52
- datum[0].name,
53
- qubits=qubits,
54
- memory=clbits,
55
- condition=condition,
56
- conditional=conditional,
57
- params=datum[0].params,
58
- )
59
- )
60
-
61
- return QasmQobjExperiment(config=config, header=header, instructions=instructions)
@@ -1,61 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: pyqrack
3
- Version: 1.29.0
4
- Summary: pyqrack - Pure Python vm6502q/qrack Wrapper
5
- Home-page: https://github.com/vm6502q/pyqrack
6
- Author: Daniel Strano
7
- Author-email: dan@unitary.fund
8
- License: MIT
9
- Keywords: pyqrack qrack simulator quantum gpu
10
- Classifier: Environment :: Console
11
- Classifier: Intended Audience :: Developers
12
- Classifier: Intended Audience :: Science/Research
13
- Classifier: Operating System :: Microsoft :: Windows
14
- Classifier: Operating System :: MacOS
15
- Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Programming Language :: C++
17
- Classifier: Programming Language :: Python :: 3.5
18
- Classifier: Programming Language :: Python :: 3.6
19
- Classifier: Programming Language :: Python :: 3.7
20
- Classifier: Programming Language :: Python :: 3.8
21
- Classifier: Programming Language :: Python :: 3.9
22
- Classifier: Programming Language :: Python :: 3.10
23
- Classifier: Topic :: Scientific/Engineering
24
- Description-Content-Type: text/markdown
25
- License-File: LICENSE
26
- Requires-Dist: pathlib
27
- Provides-Extra: dev
28
- Requires-Dist: pytest >=7.3.1 ; extra == 'dev'
29
-
30
- # pyqrack
31
- [![Downloads](https://pepy.tech/badge/pyqrack)](https://pepy.tech/project/pyqrack) [![Downloads](https://pepy.tech/badge/pyqrack/month)](https://pepy.tech/project/pyqrack)
32
-
33
- Pure Python bindings for the pure C++11/OpenCL Qrack quantum computer simulator library
34
-
35
- (**PyQrack** is just pure Qrack.)
36
-
37
- **IMPORTANT**: You must build and install [vm6502q/qrack](https://github.com/vm6502q/qrack) to use this `main` branch. The `pypi_package` branch, however, comes with pre-compiled Qrack binaries, and that is the form published on PyPi.
38
-
39
- Import and instantiate [`QrackSimulator`](https://github.com/vm6502q/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`.
40
-
41
- Any 2x2 bit operator matrix is represented by a list of 4 `complex` floating point numbers, in [**row-major order**](https://en.wikipedia.org/wiki/Row-_and_column-major_order).
42
-
43
- Single and array "`b`" parameters represent [**Pauli operator bases**](https://en.wikipedia.org/wiki/Pauli_matrices). They are specified according to the enumeration of the [`Pauli`](https://github.com/vm6502q/pyqrack/blob/main/pyqrack/pauli.py) class.
44
-
45
- `MC[x]` and `MAC[x]` methods are controlled single bit gates, with as many control qubits as you specify via Python list `c` argument. `MCX` is multiply-controlled Pauli X, and `MACX` is "anti-"controlled Pauli X, i.e. "anti-control" activates the gate if all control bits are specifically **off**, as opposed to **on**.
46
-
47
- To load the required **vm6502q/qrack** libraries from a different location, set the `PYQRACK_SHARED_LIB_PATH` environment variable.
48
-
49
- PyQrack v0.4.6 adds experimental support for [PyZX](https://github.com/Quantomatic/pyzx) `Circuit` definitions as an intermediate representation for `QrackSimulator`. To try this, load a `Circuit` in PyZX, (use that module to optimize your circuit, as you like,) and create a `QrackSimulator()` instance using the `pyzxCircuit` named argument of the constructor, like so:
50
-
51
- ```python
52
- sim = QrackSimulator(pyzxCircuit=c)
53
- ```
54
-
55
- where `c` is a PyZX circuit object. The circuit will automatically be simulated in the constructed `QrackSimulator` instance. This also allows loading from QASM and other intermediate representations supported by PyZX.
56
-
57
- See [https://pyqrack.readthedocs.io/en/latest/](https://pyqrack.readthedocs.io/en/latest/) for an API reference.
58
-
59
- Please feel welcome to open an issue, if you'd like help. 😃
60
-
61
- **Special thanks go to Zeeshan Ahmed, for bug fixes and design suggestions, Ashish Panigrahi, for documentation and design suggestions, WingCode, for documentation, and to the broader community of Qrack contributors, for years of happy Qracking! You rock!**
@@ -1,17 +0,0 @@
1
- pyqrack/__init__.py,sha256=gDz6LYCK_3GgGF973p3OGPfocfPgEs-qWaiL_tCw1fs,594
2
- pyqrack/neuron_activation_fn.py,sha256=cvljN3vvoH71uPva8EFKxJomgiQMo7zqud2JoSpKTiM,615
3
- pyqrack/pauli.py,sha256=NgtZd4aBN4l8Car14Ris9lZ1Y5JDfNNCN7kDRuo9vWk,673
4
- pyqrack/qrack_circuit.py,sha256=rkqTwhW5Ce_9m6_Om8ARIqTA_Wm9A9sBoKgscYdvkDA,17650
5
- pyqrack/qrack_neuron.py,sha256=kMQH2vlajXvkrycNcCs1A1odyp8-CMmaJKEujP4mi0I,9086
6
- pyqrack/qrack_simulator.py,sha256=J7ss3F2bqHrdvjHnx3rpeyR-FPeMFkD5QS82QXSHTX0,134710
7
- pyqrack/quimb_circuit_type.py,sha256=fNsmfK9JoNdYN1_Clm9pmS_FTinNsGKJnKQID6L4Bgk,638
8
- pyqrack/qrack_system/__init__.py,sha256=PUterej-xpA4BqFmiBrQCMeTQlsRf-K8Dxnwp-iVvUQ,343
9
- pyqrack/qrack_system/qrack_system.py,sha256=DSns6Osv3sN_oCSh0K3YyPbd8aZz3mqePHuaVUEzZlE,41922
10
- pyqrack/qrack_system/qrack_lib/qrack_pinvoke.dll,sha256=rreJ_byDi-e3INjVOl1BMkfBzhkoRYG6ENwPppexogM,2271232
11
- pyqrack/util/__init__.py,sha256=cx9yH6Px9cIpBdLO3rftxscbXKUneB36nGRoA68x42c,341
12
- pyqrack/util/convert_qiskit_circuit_to_qasm_experiment.py,sha256=tcICZbIhTpM4hU_OfiS_n142cVoER9vR3ZWMaVf9-Zs,2126
13
- pyqrack-1.29.0.dist-info/LICENSE,sha256=DBtr0Yr4jm4lMerSl8uJms3AdqtC8r2ivhavc89nkAM,1085
14
- pyqrack-1.29.0.dist-info/METADATA,sha256=zG7zNiB85JMEUtUmnjyLAcG84zDCTSZn_XVfZh1keQI,3900
15
- pyqrack-1.29.0.dist-info/WHEEL,sha256=at4xwl6JdXdkZHxdo5ixTwJ7ENtVftSy2wqmsdmo_4U,98
16
- pyqrack-1.29.0.dist-info/top_level.txt,sha256=YE_3q9JTGRLMilNg2tGP1y7uU-Dx8PDao2OhwoIbv8E,8
17
- pyqrack-1.29.0.dist-info/RECORD,,