pennylane-qrack 0.11.5__py3-none-manylinux_2_35_x86_64.whl → 0.12.0__py3-none-manylinux_2_35_x86_64.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 pennylane-qrack might be problematic. Click here for more details.
- pennylane_qrack/CMakeCache.txt +1 -1
- pennylane_qrack/QrackDeviceConfig.toml +126 -85
- pennylane_qrack/_version.py +1 -1
- pennylane_qrack/qrack_device.py +2 -17
- {pennylane_qrack-0.11.5.dist-info → pennylane_qrack-0.12.0.dist-info}/METADATA +3 -1
- pennylane_qrack-0.12.0.dist-info/RECORD +15 -0
- pennylane_qrack-0.11.5.dist-info/RECORD +0 -15
- {pennylane_qrack-0.11.5.dist-info → pennylane_qrack-0.12.0.dist-info}/LICENSE +0 -0
- {pennylane_qrack-0.11.5.dist-info → pennylane_qrack-0.12.0.dist-info}/WHEEL +0 -0
- {pennylane_qrack-0.11.5.dist-info → pennylane_qrack-0.12.0.dist-info}/entry_points.txt +0 -0
- {pennylane_qrack-0.11.5.dist-info → pennylane_qrack-0.12.0.dist-info}/top_level.txt +0 -0
pennylane_qrack/CMakeCache.txt
CHANGED
|
@@ -249,7 +249,7 @@ CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
|
|
249
249
|
//Minor version of cmake used to create the current loaded cache
|
|
250
250
|
CMAKE_CACHE_MINOR_VERSION:INTERNAL=31
|
|
251
251
|
//Patch version of cmake used to create the current loaded cache
|
|
252
|
-
CMAKE_CACHE_PATCH_VERSION:INTERNAL=
|
|
252
|
+
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
|
|
253
253
|
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
|
|
254
254
|
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
|
|
255
255
|
//Path to CMake executable.
|
|
@@ -1,67 +1,88 @@
|
|
|
1
|
-
|
|
1
|
+
# Which version of the specification format is being used.
|
|
2
|
+
schema = 2
|
|
2
3
|
|
|
3
|
-
# The
|
|
4
|
-
# device
|
|
5
|
-
#
|
|
4
|
+
# The union of all gate types listed in this section must match what
|
|
5
|
+
# the device considers "supported" through PennyLane's device API.
|
|
6
|
+
# The gate definition has the following format:
|
|
6
7
|
#
|
|
7
|
-
# GATE = { properties = [ PROPS ],
|
|
8
|
+
# GATE = { properties = [ PROPS ], condition = [ COND ] }
|
|
8
9
|
#
|
|
9
|
-
#
|
|
10
|
+
# Where:
|
|
10
11
|
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
15
|
-
# CONDS: constraints on the support for each gate.
|
|
16
|
-
# - "analytic" or "finiteshots": if this operation is only supported in
|
|
17
|
-
# either analytic execution or with shots, respectively.
|
|
12
|
+
# PROPS: zero or more comma-separated quoted strings:
|
|
13
|
+
# "controllable", "invertible", "differentiable"
|
|
14
|
+
# COND: quoted string, on of:
|
|
15
|
+
# "analytic", "finiteshots"
|
|
18
16
|
#
|
|
19
|
-
[operators.gates]
|
|
17
|
+
[operators.gates.native]
|
|
20
18
|
|
|
21
|
-
PauliX
|
|
22
|
-
PauliY
|
|
23
|
-
PauliZ
|
|
24
|
-
SX
|
|
25
|
-
MultiRZ
|
|
26
|
-
Hadamard
|
|
27
|
-
S
|
|
28
|
-
T
|
|
29
|
-
CNOT
|
|
30
|
-
SWAP
|
|
31
|
-
CSWAP
|
|
32
|
-
ISWAP
|
|
33
|
-
PSWAP
|
|
34
|
-
Toffoli
|
|
35
|
-
CY
|
|
36
|
-
CZ
|
|
37
|
-
PhaseShift
|
|
38
|
-
ControlledPhaseShift
|
|
39
|
-
CPhase
|
|
40
|
-
RX
|
|
41
|
-
RY
|
|
42
|
-
RZ
|
|
43
|
-
Rot
|
|
44
|
-
CRX
|
|
45
|
-
CRY
|
|
46
|
-
CRZ
|
|
47
|
-
CRot
|
|
48
|
-
U3
|
|
49
|
-
MultiControlledX
|
|
50
|
-
Identity
|
|
19
|
+
PauliX = { properties = [ "controllable", "invertible"] }
|
|
20
|
+
PauliY = { properties = [ "controllable", "invertible"] }
|
|
21
|
+
PauliZ = { properties = [ "controllable", "invertible"] }
|
|
22
|
+
SX = { properties = [ "controllable", "invertible"] }
|
|
23
|
+
MultiRZ = { properties = [ "controllable", "invertible" ] }
|
|
24
|
+
Hadamard = { properties = [ "controllable", "invertible"] }
|
|
25
|
+
S = { properties = [ "controllable", "invertible" ] }
|
|
26
|
+
T = { properties = [ "controllable", "invertible" ] }
|
|
27
|
+
CNOT = { properties = [ "controllable", "invertible" ] }
|
|
28
|
+
SWAP = { properties = [ "controllable", "invertible" ] }
|
|
29
|
+
CSWAP = { properties = [ "controllable", "invertible" ] }
|
|
30
|
+
ISWAP = { properties = [ "controllable", "invertible"] }
|
|
31
|
+
PSWAP = { properties = [ "controllable", "invertible"] }
|
|
32
|
+
Toffoli = { properties = [ "controllable", "invertible" ] }
|
|
33
|
+
CY = { properties = [ "controllable", "invertible" ] }
|
|
34
|
+
CZ = { properties = [ "controllable", "invertible" ] }
|
|
35
|
+
PhaseShift = { properties = [ "controllable", "invertible" ] }
|
|
36
|
+
ControlledPhaseShift = { properties = [ "controllable", "invertible" ] }
|
|
37
|
+
CPhase = { properties = [ "controllable", "invertible" ] }
|
|
38
|
+
RX = { properties = [ "controllable", "invertible" ] }
|
|
39
|
+
RY = { properties = [ "controllable", "invertible" ] }
|
|
40
|
+
RZ = { properties = [ "controllable", "invertible" ] }
|
|
41
|
+
Rot = { properties = [ "controllable", "invertible" ] }
|
|
42
|
+
CRX = { properties = [ "controllable", "invertible" ] }
|
|
43
|
+
CRY = { properties = [ "controllable", "invertible" ] }
|
|
44
|
+
CRZ = { properties = [ "controllable", "invertible" ] }
|
|
45
|
+
CRot = { properties = [ "controllable", "invertible" ] }
|
|
46
|
+
U3 = { properties = [ "controllable", "invertible" ] }
|
|
47
|
+
MultiControlledX = { properties = [ "controllable", "invertible" ] }
|
|
48
|
+
Identity = { properties = [ "controllable", "invertible" ] }
|
|
51
49
|
|
|
52
|
-
#
|
|
53
|
-
#
|
|
54
|
-
#
|
|
55
|
-
#
|
|
56
|
-
#
|
|
57
|
-
#
|
|
58
|
-
|
|
59
|
-
#
|
|
60
|
-
#
|
|
61
|
-
#
|
|
62
|
-
#
|
|
63
|
-
#
|
|
64
|
-
#
|
|
50
|
+
# Operators that should be decomposed according to the algorithm used
|
|
51
|
+
# by PennyLane's device API.
|
|
52
|
+
# Optional, since gates not listed in this list will typically be decomposed by
|
|
53
|
+
# default, but can be useful to express a deviation from this device's regular
|
|
54
|
+
# strategy in PennyLane.
|
|
55
|
+
# [operators.gates.decomp]
|
|
56
|
+
|
|
57
|
+
# QubitUnitary = {}
|
|
58
|
+
# SISWAP = {}
|
|
59
|
+
# SQISW = {}
|
|
60
|
+
# BasisState = {}
|
|
61
|
+
# StatePrep = {}
|
|
62
|
+
# ControlledQubitUnitary = {}
|
|
63
|
+
# DiagonalQubitUnitary = {}
|
|
64
|
+
# SingleExcitation = {}
|
|
65
|
+
# SingleExcitationPlus = {}
|
|
66
|
+
# SingleExcitationMinus = {}
|
|
67
|
+
# DoubleExcitation = {}
|
|
68
|
+
# DoubleExcitationPlus = {}
|
|
69
|
+
# DoubleExcitationMinus = {}
|
|
70
|
+
# QubitCarry = {}
|
|
71
|
+
# QubitSum = {}
|
|
72
|
+
# OrbitalRotation = {}
|
|
73
|
+
# ECR = {}
|
|
74
|
+
# IsingXX = {}
|
|
75
|
+
# IsingYY = {}
|
|
76
|
+
# IsingZZ = {}
|
|
77
|
+
# IsingXY = {}
|
|
78
|
+
# U2 = {}
|
|
79
|
+
# U1 = {}
|
|
80
|
+
# QFT = {}
|
|
81
|
+
|
|
82
|
+
# Gates which should be translated to QubitUnitary
|
|
83
|
+
# [operators.gates.matrix]
|
|
84
|
+
|
|
85
|
+
# Observables supported by the device
|
|
65
86
|
[operators.observables]
|
|
66
87
|
|
|
67
88
|
PauliX = {}
|
|
@@ -78,40 +99,60 @@ Prod = {}
|
|
|
78
99
|
# SProd = {}
|
|
79
100
|
# Exp = {}
|
|
80
101
|
|
|
81
|
-
# Types of measurement processes supported on the device. The measurements in
|
|
82
|
-
# this section should have the following format:
|
|
83
|
-
#
|
|
84
|
-
# MEASUREMENT_PROCESS = { conditions = [ CONDS ] }
|
|
85
|
-
#
|
|
86
|
-
# where CONDS is zero or more comma separated quoted strings, same as above.
|
|
87
|
-
#
|
|
88
|
-
# CONDS: constraints on the support for each measurement process.
|
|
89
|
-
# - "analytic" or "finiteshots": if this measurement is only supported
|
|
90
|
-
# in either analytic execution or with shots, respectively.
|
|
91
|
-
#
|
|
92
102
|
[measurement_processes]
|
|
93
103
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
104
|
+
Expval = { condition = [ "analytic" ] }
|
|
105
|
+
Var = { condition = [ "analytic" ] }
|
|
106
|
+
Probs = { condition = [ "analytic" ] }
|
|
107
|
+
State = { condition = [ "analytic" ] }
|
|
108
|
+
Sample = { condition = [ "finiteshots" ] }
|
|
109
|
+
Counts = { condition = [ "finiteshots" ] }
|
|
100
110
|
|
|
101
|
-
# Additional support that the device may provide that informs the compilation
|
|
102
|
-
# process. All accepted fields and their default values are listed below.
|
|
103
111
|
[compilation]
|
|
104
112
|
|
|
105
|
-
#
|
|
113
|
+
# If the device is compatible with qjit
|
|
106
114
|
qjit_compatible = true
|
|
107
|
-
|
|
108
|
-
# Whether the device requires run time generation of the quantum circuit.
|
|
115
|
+
# If the device requires run time generation of the quantum circuit.
|
|
109
116
|
runtime_code_generation = false
|
|
110
|
-
|
|
111
|
-
|
|
117
|
+
# If the device supports mid circuit measurements natively
|
|
118
|
+
mid_circuit_measurement = true
|
|
119
|
+
# This field is currently unchecked but it is reserved for the purpose of
|
|
120
|
+
# determining if the device supports dynamic qubit allocation/deallocation.
|
|
112
121
|
dynamic_qubit_management = true
|
|
113
122
|
|
|
114
|
-
|
|
115
|
-
#
|
|
116
|
-
# that
|
|
117
|
-
|
|
123
|
+
[options]
|
|
124
|
+
# Options is an optional field.
|
|
125
|
+
# These options represent runtime parameters that can be passed to the device
|
|
126
|
+
# upon the device initialization.
|
|
127
|
+
# The option key will be the key in a dictionary.
|
|
128
|
+
# The string corresponds to a field queried in the `qml.Device` instance.
|
|
129
|
+
|
|
130
|
+
# Use "hybrid" stabilizer optimization? (Default is "true"; non-Clifford circuits will fall back to near-Clifford or universal simulation)
|
|
131
|
+
is_hybrid_stabilizer = "isStabilizerHybrid"
|
|
132
|
+
# Use "tensor network" optimization? (Default is "true"; prevents dynamic qubit de-allocation; might function sub-optimally with "hybrid" stabilizer enabled)
|
|
133
|
+
is_tensor_network = "isTensorNetwork"
|
|
134
|
+
# Use Schmidt decomposition optimizations? (Default is "true")
|
|
135
|
+
is_schmidt_decomposed = "isSchmidtDecompose"
|
|
136
|
+
# Distribute Schmidt-decomposed qubit subsystems to multiple GPUs or accelerators, if available? (Default is "true"; mismatched device capacities might hurt overall performance)
|
|
137
|
+
is_schmidt_decomposition_parallel = "isSchmidtDecomposeMulti"
|
|
138
|
+
# Use "quantum binary decision diagram" ("QBDD") methods? (Default is "false"; note that QBDD is CPU-only)
|
|
139
|
+
is_qbdd = "isBinaryDecisionTree"
|
|
140
|
+
# Use GPU acceleration? (Default is "true")
|
|
141
|
+
is_gpu = "isOpenCL"
|
|
142
|
+
# Use multi-GPU (or "multi-page") acceleration? (Default is "false")
|
|
143
|
+
is_paged = "isPaged"
|
|
144
|
+
# Use CPU/GPU method hybridization? (Default is "false")
|
|
145
|
+
is_hybrid_cpu_gpu = "isCpuGpuHybrid"
|
|
146
|
+
# Allocate GPU buffer from general host heap? (Default is "false"; "true" might improve performance or reliability in certain cases, like if using an Intel HD as accelerator)
|
|
147
|
+
is_host_pointer = "isHostPointer"
|
|
148
|
+
# Noise parameter. (Default is "0"; depolarizing noise intensity can also be controlled by "QRACK_GATE_DEPOLARIZATION" environment variable)
|
|
149
|
+
noise = "noise"
|
|
150
|
+
|
|
151
|
+
# In the above example, a dictionary will be constructed at run time.
|
|
152
|
+
# The dictionary will contain the string key "option_key" and its value
|
|
153
|
+
# will be the value in `qml.Device` `option_field`.
|
|
154
|
+
# The value can be any Python type, but will be converted to a string.
|
|
155
|
+
# During the initialization of your `class QuantumDevice`, the dictionary
|
|
156
|
+
# will be sent to the constructor of your implementation of `class QuantumDevice`.
|
|
157
|
+
# The dictionary will be a JSON string like the following:
|
|
158
|
+
# { 'option_key': option_field }
|
pennylane_qrack/_version.py
CHANGED
pennylane_qrack/qrack_device.py
CHANGED
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"""
|
|
15
15
|
Base device class for PennyLane-Qrack.
|
|
16
16
|
"""
|
|
17
|
-
from collections import OrderedDict
|
|
18
17
|
from functools import reduce
|
|
19
18
|
import cmath, math
|
|
20
19
|
import os
|
|
@@ -30,8 +29,6 @@ from pennylane.ops import (
|
|
|
30
29
|
StatePrep,
|
|
31
30
|
BasisState,
|
|
32
31
|
QubitUnitary,
|
|
33
|
-
CRZ,
|
|
34
|
-
PhaseShift,
|
|
35
32
|
Adjoint,
|
|
36
33
|
)
|
|
37
34
|
from pennylane.wires import Wires
|
|
@@ -141,7 +138,7 @@ class QrackDevice(QubitDevice):
|
|
|
141
138
|
"C(MultiControlledX)",
|
|
142
139
|
}
|
|
143
140
|
|
|
144
|
-
|
|
141
|
+
config = pathlib.Path(
|
|
145
142
|
os.path.dirname(sys.modules[__name__].__file__) + "/QrackDeviceConfig.toml"
|
|
146
143
|
)
|
|
147
144
|
|
|
@@ -162,7 +159,7 @@ class QrackDevice(QubitDevice):
|
|
|
162
159
|
# Use CPU/GPU method hybridization? (Default is "false")
|
|
163
160
|
isCpuGpuHybrid = True
|
|
164
161
|
# Allocate GPU buffer from general host heap? (Default is "false"; "true" might improve performance or reliability in certain cases, like if using an Intel HD as accelerator)
|
|
165
|
-
isHostPointer = False
|
|
162
|
+
isHostPointer = True if os.environ.get('PYQRACK_HOST_POINTER_DEFAULT_ON') else False
|
|
166
163
|
# Noise parameter. (Default is "0"; depolarizing noise intensity can also be controlled by "QRACK_GATE_DEPOLARIZATION" environment variable)
|
|
167
164
|
noise = 0
|
|
168
165
|
|
|
@@ -213,18 +210,6 @@ class QrackDevice(QubitDevice):
|
|
|
213
210
|
isHostPointer=self.isHostPointer,
|
|
214
211
|
noise=self.noise,
|
|
215
212
|
)
|
|
216
|
-
self.device_kwargs = {
|
|
217
|
-
"is_hybrid_stabilizer": self.isStabilizerHybrid,
|
|
218
|
-
"is_tensor_network": self.isTensorNetwork,
|
|
219
|
-
"is_schmidt_decompose": self.isSchmidtDecompose,
|
|
220
|
-
"is_schmidt_decompose_parallel": self.isSchmidtDecomposeMulti,
|
|
221
|
-
"is_qpdd": self.isBinaryDecisionTree,
|
|
222
|
-
"is_gpu": self.isOpenCL,
|
|
223
|
-
"is_paged": self.isPaged,
|
|
224
|
-
"is_hybrid_cpu_gpu": self.isCpuGpuHybrid,
|
|
225
|
-
"is_host_pointer": self.isHostPointer,
|
|
226
|
-
"noise": self.noise,
|
|
227
|
-
}
|
|
228
213
|
self._circuit = []
|
|
229
214
|
|
|
230
215
|
def _reverse_state(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pennylane-qrack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.0
|
|
4
4
|
Summary: PennyLane plugin for Qrack.
|
|
5
5
|
Home-page: http://github.com/vm6502q
|
|
6
6
|
Maintainer: vm6502q
|
|
@@ -38,6 +38,8 @@ PennyLane-Qrack Plugin
|
|
|
38
38
|
|
|
39
39
|
The PennyLane-Qrack plugin integrates the Qrack quantum computing framework with PennyLane's quantum machine learning capabilities.
|
|
40
40
|
|
|
41
|
+
**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)**
|
|
42
|
+
|
|
41
43
|
This plugin is addapted from the `PennyLane-Qulacs plugin, <https://github.com/PennyLaneAI/pennylane-qulacs>`__ under the Apache License 2.0, with many thanks to the original developers!
|
|
42
44
|
|
|
43
45
|
`PennyLane <https://pennylane.readthedocs.io>`__ is a cross-platform Python library for quantum machine learning, automatic differentiation, and optimization of hybrid quantum-classical computations.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
pennylane_qrack/CMakeCache.txt,sha256=WFjS-bj_Pemf5DZ6eoMOH4qI1VHIDh83gAzq0WModAk,15177
|
|
2
|
+
pennylane_qrack/Makefile,sha256=Od_33AWv8Jgk8ZWvL7lklT2Awce38c1lIgMyys5-RuE,7584
|
|
3
|
+
pennylane_qrack/QrackDeviceConfig.toml,sha256=qIamMrYN8kqkhoAuYrgmvmaUi3JXdjXLlhjMrpxIZK8,6379
|
|
4
|
+
pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
|
|
5
|
+
pennylane_qrack/_version.py,sha256=OQteXXmU-5wvksxt2kkGzOGpoLRSiX1XYGuHSTJFINk,692
|
|
6
|
+
pennylane_qrack/cmake_install.cmake,sha256=jP3YWPs_F3JYlifubQTLq95RWHkadWyv_BNvMw3MzhU,3521
|
|
7
|
+
pennylane_qrack/libqrack_device.so,sha256=9rKqmWZIbyOZsIw0BBFur2Ha_tKocg229mnFQNZn5R8,5726208
|
|
8
|
+
pennylane_qrack/qrack_device.cpp,sha256=KmFmugfYT_q2wt_iSvaHkhD3CzUe5UrlT_OYdNlVEgo,36953
|
|
9
|
+
pennylane_qrack/qrack_device.py,sha256=nSy3bWwAwW-WO9SElzMev9waQpZMFTuIXMJEbyG04so,27318
|
|
10
|
+
pennylane_qrack-0.12.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
11
|
+
pennylane_qrack-0.12.0.dist-info/METADATA,sha256=tTRkvppTx6Kr4VMOyuxU9LlXIfe0u88XM2DRBmKhxZ8,5739
|
|
12
|
+
pennylane_qrack-0.12.0.dist-info/WHEEL,sha256=AMMNaGlKLEICDqgnxZojk7k8N6wUjQQ3X9tPjxJ2sOc,110
|
|
13
|
+
pennylane_qrack-0.12.0.dist-info/entry_points.txt,sha256=CuMkXXiFq8_T_vUTLu_8fd9uh5C40M1e7x5vrWmsr48,80
|
|
14
|
+
pennylane_qrack-0.12.0.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
|
|
15
|
+
pennylane_qrack-0.12.0.dist-info/RECORD,,
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
pennylane_qrack/CMakeCache.txt,sha256=JZ1rQC_eu5yMBmc3cDVrXuu0gCQ0eM5ZJd_bdwQAclA,15177
|
|
2
|
-
pennylane_qrack/Makefile,sha256=Od_33AWv8Jgk8ZWvL7lklT2Awce38c1lIgMyys5-RuE,7584
|
|
3
|
-
pennylane_qrack/QrackDeviceConfig.toml,sha256=oR9-dIAP6BzP3e2QSLroacaloHZsx7iJiKE6w7LGxUo,5459
|
|
4
|
-
pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
|
|
5
|
-
pennylane_qrack/_version.py,sha256=g01lJ0JyYgbyiyppW_GnPdbfQFAQ7EidjQPD5Zf0RvA,692
|
|
6
|
-
pennylane_qrack/cmake_install.cmake,sha256=jP3YWPs_F3JYlifubQTLq95RWHkadWyv_BNvMw3MzhU,3521
|
|
7
|
-
pennylane_qrack/libqrack_device.so,sha256=9rKqmWZIbyOZsIw0BBFur2Ha_tKocg229mnFQNZn5R8,5726208
|
|
8
|
-
pennylane_qrack/qrack_device.cpp,sha256=KmFmugfYT_q2wt_iSvaHkhD3CzUe5UrlT_OYdNlVEgo,36953
|
|
9
|
-
pennylane_qrack/qrack_device.py,sha256=Vr_j4UkvMmcCd14pkmjeYIr1DscmfPqZuvjewdat4jY,27881
|
|
10
|
-
pennylane_qrack-0.11.5.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
11
|
-
pennylane_qrack-0.11.5.dist-info/METADATA,sha256=9VPBoyRMiQv7uJCpzN8a-pgX2R_akwSeGKEpp5S_n8w,5547
|
|
12
|
-
pennylane_qrack-0.11.5.dist-info/WHEEL,sha256=AMMNaGlKLEICDqgnxZojk7k8N6wUjQQ3X9tPjxJ2sOc,110
|
|
13
|
-
pennylane_qrack-0.11.5.dist-info/entry_points.txt,sha256=CuMkXXiFq8_T_vUTLu_8fd9uh5C40M1e7x5vrWmsr48,80
|
|
14
|
-
pennylane_qrack-0.11.5.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
|
|
15
|
-
pennylane_qrack-0.11.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|