cirq-core 1.5.0.dev20250306212447__py3-none-any.whl → 1.5.0.dev20250306222113__py3-none-any.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 cirq-core might be problematic. Click here for more details.
- cirq/_version.py +1 -1
- cirq/_version_test.py +1 -1
- cirq/transformers/gauge_compiling/cphase_gauge_test.py +0 -5
- cirq/transformers/gauge_compiling/cz_gauge_test.py +0 -1
- cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py +0 -4
- cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py +0 -2
- {cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/METADATA +1 -1
- {cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/RECORD +11 -11
- {cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/LICENSE +0 -0
- {cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/WHEEL +0 -0
- {cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
|
@@ -20,28 +20,23 @@ from cirq.transformers.gauge_compiling.gauge_compiling_test_utils import GaugeTe
|
|
|
20
20
|
class TestCPhaseGauge_0_3(GaugeTester):
|
|
21
21
|
two_qubit_gate = cirq.CZ**0.3
|
|
22
22
|
gauge_transformer = CPhaseGaugeTransformer
|
|
23
|
-
sweep_must_pass = True
|
|
24
23
|
|
|
25
24
|
|
|
26
25
|
class TestCPhaseGauge_m0_3(GaugeTester):
|
|
27
26
|
two_qubit_gate = cirq.CZ ** (-0.3)
|
|
28
27
|
gauge_transformer = CPhaseGaugeTransformer
|
|
29
|
-
sweep_must_pass = True
|
|
30
28
|
|
|
31
29
|
|
|
32
30
|
class TestCPhaseGauge_0_1(GaugeTester):
|
|
33
31
|
two_qubit_gate = cirq.CZ**0.1
|
|
34
32
|
gauge_transformer = CPhaseGaugeTransformer
|
|
35
|
-
sweep_must_pass = True
|
|
36
33
|
|
|
37
34
|
|
|
38
35
|
class TestCPhaseGauge_m0_1(GaugeTester):
|
|
39
36
|
two_qubit_gate = cirq.CZ ** (-0.1)
|
|
40
37
|
gauge_transformer = CPhaseGaugeTransformer
|
|
41
|
-
sweep_must_pass = True
|
|
42
38
|
|
|
43
39
|
|
|
44
40
|
class TestCPhaseGauge_0_7(GaugeTester):
|
|
45
41
|
two_qubit_gate = cirq.CZ**0.7
|
|
46
42
|
gauge_transformer = CPhaseGaugeTransformer
|
|
47
|
-
sweep_must_pass = True
|
|
@@ -20,22 +20,18 @@ from cirq.transformers.gauge_compiling.gauge_compiling_test_utils import GaugeTe
|
|
|
20
20
|
class TestSpinInversionGauge_0(GaugeTester):
|
|
21
21
|
two_qubit_gate = cirq.ZZ
|
|
22
22
|
gauge_transformer = SpinInversionGaugeTransformer
|
|
23
|
-
sweep_must_pass = True
|
|
24
23
|
|
|
25
24
|
|
|
26
25
|
class TestSpinInversionGauge_1(GaugeTester):
|
|
27
26
|
two_qubit_gate = cirq.ZZ**0.1
|
|
28
27
|
gauge_transformer = SpinInversionGaugeTransformer
|
|
29
|
-
sweep_must_pass = True
|
|
30
28
|
|
|
31
29
|
|
|
32
30
|
class TestSpinInversionGauge_2(GaugeTester):
|
|
33
31
|
two_qubit_gate = cirq.ZZ**-1
|
|
34
32
|
gauge_transformer = SpinInversionGaugeTransformer
|
|
35
|
-
sweep_must_pass = True
|
|
36
33
|
|
|
37
34
|
|
|
38
35
|
class TestSpinInversionGauge_3(GaugeTester):
|
|
39
36
|
two_qubit_gate = cirq.ZZ**0.3
|
|
40
37
|
gauge_transformer = SpinInversionGaugeTransformer
|
|
41
|
-
sweep_must_pass = True
|
|
@@ -20,10 +20,8 @@ from cirq.transformers.gauge_compiling.gauge_compiling_test_utils import GaugeTe
|
|
|
20
20
|
class TestSqrtCZGauge(GaugeTester):
|
|
21
21
|
two_qubit_gate = cirq.CZ**0.5
|
|
22
22
|
gauge_transformer = SqrtCZGaugeTransformer
|
|
23
|
-
sweep_must_pass = True
|
|
24
23
|
|
|
25
24
|
|
|
26
25
|
class TestAdjointSqrtCZGauge(GaugeTester):
|
|
27
26
|
two_qubit_gate = cirq.CZ**-0.5
|
|
28
27
|
gauge_transformer = SqrtCZGaugeTransformer
|
|
29
|
-
sweep_must_pass = True
|
{cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.5.0.
|
|
3
|
+
Version: 1.5.0.dev20250306222113
|
|
4
4
|
Summary: A framework for creating, editing, and invoking Noisy Intermediate Scale Quantum (NISQ) circuits.
|
|
5
5
|
Home-page: http://github.com/quantumlib/cirq
|
|
6
6
|
Author: The Cirq Developers
|
{cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=Qq3ZcfgD-Nb81cEppQdJqhAyrVqXKtfXZYGXT0p-Wh0,34718
|
|
|
4
4
|
cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
|
|
5
5
|
cirq/_import.py,sha256=p9gMHJscbtDDkfHOaulvd3Aer0pwUF5AXpL89XR8dNw,8402
|
|
6
6
|
cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=uvbP-dcLGZTTlmEkfQdaOy_OvtirC7CKNmidwZnmrfs,1206
|
|
8
|
+
cirq/_version_test.py,sha256=E9gTB5re6A70L5W2nPSnk-iBPRdT40gIiL6u36RJLO4,147
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=p-vEOa-8GQ2cFIAdze-kd6C1un1uRvtujVPljVKaHBg,13557
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -1106,9 +1106,9 @@ cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=F_
|
|
|
1106
1106
|
cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=eKOzjWkR7xs-CL2oPj__nWXR0LL9oO42wEHibnvWq-o,20618
|
|
1107
1107
|
cirq/transformers/gauge_compiling/__init__.py,sha256=cEcoLT8TONEE_r_sL_deLUvOQv64C1j6NN-5JtK0b1E,1522
|
|
1108
1108
|
cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=gJyNgic-_hxo1hjkDSAq1q8s8HaZ-rH734kkSZ0wQCc,5540
|
|
1109
|
-
cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=
|
|
1109
|
+
cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=_lXX8eEiq4kh8cxOb-3M-wRFTipCvjp3KIq8PtgvKsc,1391
|
|
1110
1110
|
cirq/transformers/gauge_compiling/cz_gauge.py,sha256=TNZviXFu4j-lCF87QMGYVdb2RC_ePHLdI6FRCqh9go4,2550
|
|
1111
|
-
cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=
|
|
1111
|
+
cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=_2RMzwuMoqytgsVZEET2m6QsGoZ2_uWgBfSGGvhZEWo,854
|
|
1112
1112
|
cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=4g2IyjGqEHD7KkawXlprhNLfbeSyz3QdWIHPAjqeGFo,18846
|
|
1113
1113
|
cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=srpVkn1WlJh5SATk1UozZT2aLVwcykSNBpsJ8u4YCrk,5234
|
|
1114
1114
|
cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=K49nP6OOi2Fga50RA-qwjgjnOMvuT9hqhJdhaQnriTM,5025
|
|
@@ -1116,9 +1116,9 @@ cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=4Hc3
|
|
|
1116
1116
|
cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=UGJ_061h65Rfgb9LWREjxC8OSt01ZqP9TGnacL8VAuk,3500
|
|
1117
1117
|
cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=HEIIwKlX5ixau1e_etSUj5NvYOVTT-Gc3kuHcyKAeJ4,866
|
|
1118
1118
|
cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=gfjSlQdo13GfBPlrkQoHPWWzouiV7yYr7JAaB85NSGY,1086
|
|
1119
|
-
cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=
|
|
1119
|
+
cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJwl11VPNXkf_v0WjCg9VxNKAplZ_5bZR7guOfnK-aI,1292
|
|
1120
1120
|
cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=XwqVMeJu8zYpW7SAWZgLLsLGtZWdPfJLtCBdpEoROLQ,2529
|
|
1121
|
-
cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=
|
|
1121
|
+
cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=RwjadOOJfa2Qf7iryTIMJLPzeDMNqFkP6Tewjq68gJI,997
|
|
1122
1122
|
cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=dqQa-UWq31bE_jF3KMhU76sND5GuqTpEp9-wVuXdWVM,3126
|
|
1123
1123
|
cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=0CLZoLw-WK3aKEIoaKBrQZ-qvaprOVLad-dVyWFmSiU,882
|
|
1124
1124
|
cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
|
|
@@ -1204,8 +1204,8 @@ cirq/work/sampler.py,sha256=bE5tmVkcR6cZZMLETxDfHehdsYUMbx2RvBeIBetehI4,19187
|
|
|
1204
1204
|
cirq/work/sampler_test.py,sha256=hL2UWx3dz2ukZVNxWftiKVvJcQoLplLZdQm-k1QcA40,13282
|
|
1205
1205
|
cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
|
|
1206
1206
|
cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
|
|
1207
|
-
cirq_core-1.5.0.
|
|
1208
|
-
cirq_core-1.5.0.
|
|
1209
|
-
cirq_core-1.5.0.
|
|
1210
|
-
cirq_core-1.5.0.
|
|
1211
|
-
cirq_core-1.5.0.
|
|
1207
|
+
cirq_core-1.5.0.dev20250306222113.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1208
|
+
cirq_core-1.5.0.dev20250306222113.dist-info/METADATA,sha256=BGtMpBhIMQ0YEHs4cmxpfCMVqVAARzx3I5VF6EM3hJI,4817
|
|
1209
|
+
cirq_core-1.5.0.dev20250306222113.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
1210
|
+
cirq_core-1.5.0.dev20250306222113.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1211
|
+
cirq_core-1.5.0.dev20250306222113.dist-info/RECORD,,
|
{cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/LICENSE
RENAMED
|
File without changes
|
{cirq_core-1.5.0.dev20250306212447.dist-info → cirq_core-1.5.0.dev20250306222113.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|