pennylane-qrack 0.20.1__py3-none-manylinux_2_35_x86_64.whl → 0.20.2__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/QrackAceDeviceConfig.toml +17 -26
- pennylane_qrack/QrackDeviceConfig.toml +26 -17
- pennylane_qrack/_version.py +1 -1
- pennylane_qrack/qrack_ace_device.py +2 -10
- {pennylane_qrack-0.20.1.dist-info → pennylane_qrack-0.20.2.dist-info}/METADATA +1 -1
- pennylane_qrack-0.20.2.dist-info/RECORD +17 -0
- pennylane_qrack-0.20.1.dist-info/RECORD +0 -17
- {pennylane_qrack-0.20.1.dist-info → pennylane_qrack-0.20.2.dist-info}/LICENSE +0 -0
- {pennylane_qrack-0.20.1.dist-info → pennylane_qrack-0.20.2.dist-info}/WHEEL +0 -0
- {pennylane_qrack-0.20.1.dist-info → pennylane_qrack-0.20.2.dist-info}/entry_points.txt +0 -0
- {pennylane_qrack-0.20.1.dist-info → pennylane_qrack-0.20.2.dist-info}/top_level.txt +0 -0
|
@@ -21,32 +21,23 @@ schema = 3
|
|
|
21
21
|
PauliX = { properties = [ "controllable", "invertible" ] }
|
|
22
22
|
PauliY = { properties = [ "controllable", "invertible" ] }
|
|
23
23
|
PauliZ = { properties = [ "controllable", "invertible" ] }
|
|
24
|
-
SX = { properties = [ "
|
|
25
|
-
MultiRZ = { properties = [ "
|
|
26
|
-
Hadamard = { properties = [ "
|
|
27
|
-
S = { properties = [ "
|
|
28
|
-
T = { properties = [ "
|
|
29
|
-
CNOT = { properties = [ "
|
|
30
|
-
SWAP = { properties = [ "
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
RY = { properties = [ "controllable", "invertible" ] }
|
|
42
|
-
RZ = { properties = [ "controllable", "invertible" ] }
|
|
43
|
-
Rot = { properties = [ "controllable", "invertible" ] }
|
|
44
|
-
CRX = { properties = [ "controllable", "invertible" ] }
|
|
45
|
-
CRY = { properties = [ "controllable", "invertible" ] }
|
|
46
|
-
CRZ = { properties = [ "controllable", "invertible" ] }
|
|
47
|
-
CRot = { properties = [ "controllable", "invertible" ] }
|
|
48
|
-
U3 = { properties = [ "controllable", "invertible" ] }
|
|
49
|
-
MultiControlledX = { properties = [ "controllable", "invertible" ] }
|
|
24
|
+
SX = { properties = [ "invertible" ] }
|
|
25
|
+
MultiRZ = { properties = [ "invertible" ] }
|
|
26
|
+
Hadamard = { properties = [ "invertible" ] }
|
|
27
|
+
S = { properties = [ "invertible" ] }
|
|
28
|
+
T = { properties = [ "invertible" ] }
|
|
29
|
+
CNOT = { properties = [ "invertible" ] }
|
|
30
|
+
SWAP = { properties = [ "invertible" ] }
|
|
31
|
+
ISWAP = { properties = [ "invertible" ] }
|
|
32
|
+
PSWAP = { properties = [ "invertible" ] }
|
|
33
|
+
CY = { properties = [ "invertible" ] }
|
|
34
|
+
CZ = { properties = [ "invertible" ] }
|
|
35
|
+
PhaseShift = { properties = [ "invertible" ] }
|
|
36
|
+
RX = { properties = [ "invertible" ] }
|
|
37
|
+
RY = { properties = [ "invertible" ] }
|
|
38
|
+
RZ = { properties = [ "invertible" ] }
|
|
39
|
+
Rot = { properties = [ "invertible" ] }
|
|
40
|
+
U3 = { properties = [ "invertible" ] }
|
|
50
41
|
Identity = { properties = [ "controllable", "invertible" ] }
|
|
51
42
|
|
|
52
43
|
# Observables supported by the device for measurements. The observables defined
|
|
@@ -21,23 +21,32 @@ schema = 3
|
|
|
21
21
|
PauliX = { properties = [ "controllable", "invertible" ] }
|
|
22
22
|
PauliY = { properties = [ "controllable", "invertible" ] }
|
|
23
23
|
PauliZ = { properties = [ "controllable", "invertible" ] }
|
|
24
|
-
SX = { properties = [ "invertible" ] }
|
|
25
|
-
MultiRZ = { properties = [ "invertible" ] }
|
|
26
|
-
Hadamard = { properties = [ "invertible" ] }
|
|
27
|
-
S = { properties = [ "invertible" ] }
|
|
28
|
-
T = { properties = [ "invertible" ] }
|
|
29
|
-
CNOT = { properties = [ "invertible" ] }
|
|
30
|
-
SWAP = { properties = [ "invertible" ] }
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
24
|
+
SX = { properties = [ "controllable", "invertible" ] }
|
|
25
|
+
MultiRZ = { properties = [ "controllable", "invertible" ] }
|
|
26
|
+
Hadamard = { properties = [ "controllable", "invertible" ] }
|
|
27
|
+
S = { properties = [ "controllable", "invertible" ] }
|
|
28
|
+
T = { properties = [ "controllable", "invertible" ] }
|
|
29
|
+
CNOT = { properties = [ "controllable", "invertible" ] }
|
|
30
|
+
SWAP = { properties = [ "controllable", "invertible" ] }
|
|
31
|
+
CSWAP = { properties = [ "controllable", "invertible" ] }
|
|
32
|
+
ISWAP = { properties = [ "controllable", "invertible" ] }
|
|
33
|
+
PSWAP = { properties = [ "controllable", "invertible" ] }
|
|
34
|
+
Toffoli = { properties = [ "controllable", "invertible" ] }
|
|
35
|
+
CY = { properties = [ "controllable", "invertible" ] }
|
|
36
|
+
CZ = { properties = [ "controllable", "invertible" ] }
|
|
37
|
+
PhaseShift = { properties = [ "controllable", "invertible" ] }
|
|
38
|
+
ControlledPhaseShift = { properties = [ "controllable", "invertible" ] }
|
|
39
|
+
CPhase = { properties = [ "controllable", "invertible" ] }
|
|
40
|
+
RX = { properties = [ "controllable", "invertible" ] }
|
|
41
|
+
RY = { properties = [ "controllable", "invertible" ] }
|
|
42
|
+
RZ = { properties = [ "controllable", "invertible" ] }
|
|
43
|
+
Rot = { properties = [ "controllable", "invertible" ] }
|
|
44
|
+
CRX = { properties = [ "controllable", "invertible" ] }
|
|
45
|
+
CRY = { properties = [ "controllable", "invertible" ] }
|
|
46
|
+
CRZ = { properties = [ "controllable", "invertible" ] }
|
|
47
|
+
CRot = { properties = [ "controllable", "invertible" ] }
|
|
48
|
+
U3 = { properties = [ "controllable", "invertible" ] }
|
|
49
|
+
MultiControlledX = { properties = [ "controllable", "invertible" ] }
|
|
41
50
|
Identity = { properties = [ "controllable", "invertible" ] }
|
|
42
51
|
|
|
43
52
|
# Observables supported by the device for measurements. The observables defined
|
pennylane_qrack/_version.py
CHANGED
|
@@ -85,11 +85,6 @@ class QrackAceDevice(QubitDevice):
|
|
|
85
85
|
"Identity",
|
|
86
86
|
"C(Identity)",
|
|
87
87
|
"MultiRZ",
|
|
88
|
-
"C(MultiRZ)",
|
|
89
|
-
"CRX",
|
|
90
|
-
"CRY",
|
|
91
|
-
"CRZ",
|
|
92
|
-
"CRot",
|
|
93
88
|
"SWAP",
|
|
94
89
|
"ISWAP",
|
|
95
90
|
"PSWAP",
|
|
@@ -110,20 +105,17 @@ class QrackAceDevice(QubitDevice):
|
|
|
110
105
|
"Hadamard",
|
|
111
106
|
"SX",
|
|
112
107
|
"PhaseShift",
|
|
113
|
-
"C(PhaseShift)",
|
|
114
108
|
"U3",
|
|
115
109
|
"Rot",
|
|
116
|
-
"ControlledPhaseShift",
|
|
117
|
-
"CPhase",
|
|
118
110
|
}
|
|
119
111
|
|
|
120
112
|
config_filepath = pathlib.Path(
|
|
121
|
-
os.path.dirname(sys.modules[__name__].__file__) + "/
|
|
113
|
+
os.path.dirname(sys.modules[__name__].__file__) + "/QrackAceDeviceConfig.toml"
|
|
122
114
|
)
|
|
123
115
|
|
|
124
116
|
# Use "hybrid" stabilizer optimization? (Default is "true"; non-Clifford circuits will fall back to near-Clifford or universal simulation)
|
|
125
117
|
isStabilizerHybrid = False
|
|
126
|
-
# Use "tensor network" optimization? (Default is "
|
|
118
|
+
# Use "tensor network" optimization? (Default is "false"; prevents dynamic qubit de-allocation; might function sub-optimally with "hybrid" stabilizer enabled)
|
|
127
119
|
isTensorNetwork = False
|
|
128
120
|
# Use Schmidt decomposition optimizations? (Default is "true")
|
|
129
121
|
isSchmidtDecompose = True
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
pennylane_qrack/CMakeCache.txt,sha256=usrm5KNzAubRd78AO_i7k1qmUjtACaRyqi4m-esG7w4,15177
|
|
2
|
+
pennylane_qrack/Makefile,sha256=Od_33AWv8Jgk8ZWvL7lklT2Awce38c1lIgMyys5-RuE,7584
|
|
3
|
+
pennylane_qrack/QrackAceDeviceConfig.toml,sha256=KmPPJEa6TMYpbQqQgMSAPfeGPQE8f1lriteyfGW8WeA,4517
|
|
4
|
+
pennylane_qrack/QrackDeviceConfig.toml,sha256=oR9-dIAP6BzP3e2QSLroacaloHZsx7iJiKE6w7LGxUo,5459
|
|
5
|
+
pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
|
|
6
|
+
pennylane_qrack/_version.py,sha256=vMZQKNgr8Kyje0V3QA1HS3Mzl1JdVPl2aV2losVODZU,689
|
|
7
|
+
pennylane_qrack/cmake_install.cmake,sha256=jP3YWPs_F3JYlifubQTLq95RWHkadWyv_BNvMw3MzhU,3521
|
|
8
|
+
pennylane_qrack/libqrack_device.so,sha256=c-g25kADnB9KoB6uoLO3GzzF40R9ATFnW1JY0FWL6zs,5857864
|
|
9
|
+
pennylane_qrack/qrack_ace_device.py,sha256=KFrUxJ4osPiq6w1n44ZO8_0AgQa7Y9XPC7NLhlzIiog,16939
|
|
10
|
+
pennylane_qrack/qrack_device.cpp,sha256=0Dbey1g3DQeWYrzS9622Y7QDhizISuII49XLuv9xFIY,38115
|
|
11
|
+
pennylane_qrack/qrack_device.py,sha256=kefy76z8z9EQ6Z4gkNUxZXzOXNaQKUBetKPUO2RGsig,28236
|
|
12
|
+
pennylane_qrack-0.20.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
13
|
+
pennylane_qrack-0.20.2.dist-info/METADATA,sha256=aq9U0sYhcHh359AjeeQf82yTZGJRiuznsnYZA1nFQ6U,5858
|
|
14
|
+
pennylane_qrack-0.20.2.dist-info/WHEEL,sha256=AMMNaGlKLEICDqgnxZojk7k8N6wUjQQ3X9tPjxJ2sOc,110
|
|
15
|
+
pennylane_qrack-0.20.2.dist-info/entry_points.txt,sha256=40UT4C2aZ8YFS8hkGa-zN-ufm34BBqeHgWtQZJC83as,140
|
|
16
|
+
pennylane_qrack-0.20.2.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
|
|
17
|
+
pennylane_qrack-0.20.2.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
pennylane_qrack/CMakeCache.txt,sha256=usrm5KNzAubRd78AO_i7k1qmUjtACaRyqi4m-esG7w4,15177
|
|
2
|
-
pennylane_qrack/Makefile,sha256=Od_33AWv8Jgk8ZWvL7lklT2Awce38c1lIgMyys5-RuE,7584
|
|
3
|
-
pennylane_qrack/QrackAceDeviceConfig.toml,sha256=26At_9dsy_5bNe-rdW24BgQfWq8H5r8kf88oKLIma-c,5473
|
|
4
|
-
pennylane_qrack/QrackDeviceConfig.toml,sha256=qLzlakUAXGwz0ijRrsMZ9R0YLH7c43tjWAaoKzyALEY,4503
|
|
5
|
-
pennylane_qrack/__init__.py,sha256=_g4NKu07_pXqxvQaxjdAPe769S5tWwYjqyHi3z7YKHc,673
|
|
6
|
-
pennylane_qrack/_version.py,sha256=Baw5UxrLqcvpb_W40yupeTGlsLZPW2P2RpLX_ZFCwFo,689
|
|
7
|
-
pennylane_qrack/cmake_install.cmake,sha256=jP3YWPs_F3JYlifubQTLq95RWHkadWyv_BNvMw3MzhU,3521
|
|
8
|
-
pennylane_qrack/libqrack_device.so,sha256=c-g25kADnB9KoB6uoLO3GzzF40R9ATFnW1JY0FWL6zs,5857864
|
|
9
|
-
pennylane_qrack/qrack_ace_device.py,sha256=7K9bC8hgNtQdwAGLGSSeqHaL0pYrRQlUJecFIjAAtUE,17093
|
|
10
|
-
pennylane_qrack/qrack_device.cpp,sha256=0Dbey1g3DQeWYrzS9622Y7QDhizISuII49XLuv9xFIY,38115
|
|
11
|
-
pennylane_qrack/qrack_device.py,sha256=kefy76z8z9EQ6Z4gkNUxZXzOXNaQKUBetKPUO2RGsig,28236
|
|
12
|
-
pennylane_qrack-0.20.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
13
|
-
pennylane_qrack-0.20.1.dist-info/METADATA,sha256=oSOy0GEKd2D8I6oqdb6ApGvGmuiUryUmxY3IT6ldp-M,5858
|
|
14
|
-
pennylane_qrack-0.20.1.dist-info/WHEEL,sha256=AMMNaGlKLEICDqgnxZojk7k8N6wUjQQ3X9tPjxJ2sOc,110
|
|
15
|
-
pennylane_qrack-0.20.1.dist-info/entry_points.txt,sha256=40UT4C2aZ8YFS8hkGa-zN-ufm34BBqeHgWtQZJC83as,140
|
|
16
|
-
pennylane_qrack-0.20.1.dist-info/top_level.txt,sha256=5NFMNHqCHtVLwNkLg66xz846uUJAlnOJ5VGa6ulW1ow,16
|
|
17
|
-
pennylane_qrack-0.20.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|