cirq-core 1.7.0.dev20250807224154__py3-none-any.whl → 1.7.0.dev20250812001555__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/contrib/noise_models/noise_models.py +8 -8
- cirq/contrib/quimb/grid_circuits.py +1 -1
- cirq/contrib/quimb/grid_circuits_test.py +10 -5
- cirq/contrib/quimb/mps_simulator.py +3 -3
- cirq/contrib/quimb/mps_simulator_test.py +41 -42
- cirq/contrib/quimb/state_vector_test.py +14 -13
- cirq/contrib/quirk/export_to_quirk_test.py +2 -2
- cirq/contrib/quirk/linearize_circuit.py +1 -1
- cirq/contrib/routing/device.py +1 -1
- cirq/contrib/routing/device_test.py +7 -5
- cirq/contrib/routing/greedy_test.py +7 -2
- cirq/contrib/routing/initialization_test.py +1 -1
- cirq/contrib/routing/router_test.py +9 -10
- cirq/contrib/routing/swap_network_test.py +10 -4
- cirq/contrib/routing/utils_test.py +4 -4
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +9 -9
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +18 -16
- cirq/contrib/svg/svg.py +1 -1
- cirq/devices/grid_device_metadata_test.py +12 -12
- cirq/devices/grid_qubit_test.py +52 -52
- cirq/devices/line_qubit_test.py +37 -37
- cirq/devices/named_topologies.py +7 -5
- cirq/devices/named_topologies_test.py +3 -2
- cirq/devices/noise_model.py +1 -1
- cirq/devices/noise_properties_test.py +1 -1
- cirq/devices/noise_utils.py +1 -1
- cirq/devices/noise_utils_test.py +6 -6
- cirq/devices/superconducting_qubits_noise_properties_test.py +31 -24
- cirq/devices/thermal_noise_model_test.py +48 -44
- cirq/devices/unconstrained_device.py +1 -1
- cirq/devices/unconstrained_device_test.py +3 -3
- cirq/experiments/benchmarking/parallel_xeb.py +24 -17
- cirq/experiments/benchmarking/parallel_xeb_test.py +42 -28
- cirq/experiments/fidelity_estimation.py +5 -5
- cirq/experiments/fidelity_estimation_test.py +7 -7
- cirq/experiments/purity_estimation.py +1 -1
- cirq/experiments/purity_estimation_test.py +1 -1
- cirq/experiments/qubit_characterizations_test.py +10 -10
- cirq/experiments/random_quantum_circuit_generation.py +1 -1
- cirq/experiments/random_quantum_circuit_generation_test.py +18 -13
- cirq/experiments/readout_confusion_matrix_test.py +12 -8
- cirq/experiments/single_qubit_readout_calibration_test.py +13 -13
- cirq/experiments/t2_decay_experiment.py +1 -1
- cirq/experiments/t2_decay_experiment_test.py +13 -13
- cirq/experiments/two_qubit_xeb_test.py +20 -22
- cirq/experiments/xeb_fitting.py +3 -3
- cirq/experiments/xeb_fitting_test.py +21 -19
- cirq/experiments/xeb_sampling.py +2 -2
- cirq/experiments/xeb_sampling_test.py +9 -9
- cirq/experiments/xeb_simulation.py +1 -1
- cirq/experiments/xeb_simulation_test.py +6 -6
- cirq/ops/measure_util.py +2 -0
- {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/METADATA +1 -1
- {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/RECORD +59 -59
- {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/WHEEL +0 -0
- {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/top_level.txt +0 -0
|
@@ -35,7 +35,7 @@ def pool() -> Iterator[multiprocessing.pool.Pool]:
|
|
|
35
35
|
yield pool
|
|
36
36
|
|
|
37
37
|
|
|
38
|
-
def test_simulate_2q_xeb_circuits(pool):
|
|
38
|
+
def test_simulate_2q_xeb_circuits(pool) -> None:
|
|
39
39
|
q0, q1 = cirq.LineQubit.range(2)
|
|
40
40
|
circuits = [
|
|
41
41
|
rqcg.random_rotations_between_two_qubit_circuit(
|
|
@@ -43,7 +43,7 @@ def test_simulate_2q_xeb_circuits(pool):
|
|
|
43
43
|
)
|
|
44
44
|
for _ in range(2)
|
|
45
45
|
]
|
|
46
|
-
cycle_depths =
|
|
46
|
+
cycle_depths = list(range(3, 50, 9))
|
|
47
47
|
|
|
48
48
|
df = simulate_2q_xeb_circuits(circuits=circuits, cycle_depths=cycle_depths)
|
|
49
49
|
assert len(df) == len(cycle_depths) * len(circuits)
|
|
@@ -58,7 +58,7 @@ def test_simulate_2q_xeb_circuits(pool):
|
|
|
58
58
|
pd.testing.assert_frame_equal(df, df2)
|
|
59
59
|
|
|
60
60
|
|
|
61
|
-
def test_simulate_circuit_length_validation():
|
|
61
|
+
def test_simulate_circuit_length_validation() -> None:
|
|
62
62
|
q0, q1 = cirq.LineQubit.range(2)
|
|
63
63
|
circuits = [
|
|
64
64
|
rqcg.random_rotations_between_two_qubit_circuit(
|
|
@@ -69,7 +69,7 @@ def test_simulate_circuit_length_validation():
|
|
|
69
69
|
)
|
|
70
70
|
for _ in range(2)
|
|
71
71
|
]
|
|
72
|
-
cycle_depths =
|
|
72
|
+
cycle_depths = list(range(3, 50, 9))
|
|
73
73
|
with pytest.raises(ValueError, match='.*not long enough.*'):
|
|
74
74
|
_ = simulate_2q_xeb_circuits(circuits=circuits, cycle_depths=cycle_depths)
|
|
75
75
|
|
|
@@ -129,7 +129,7 @@ def _ref_simulate_2q_xeb_circuits(
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
@pytest.mark.parametrize('use_pool', (True, False))
|
|
132
|
-
def test_incremental_simulate(request, use_pool):
|
|
132
|
+
def test_incremental_simulate(request, use_pool) -> None:
|
|
133
133
|
q0, q1 = cirq.LineQubit.range(2)
|
|
134
134
|
circuits = [
|
|
135
135
|
rqcg.random_rotations_between_two_qubit_circuit(
|
|
@@ -137,7 +137,7 @@ def test_incremental_simulate(request, use_pool):
|
|
|
137
137
|
)
|
|
138
138
|
for _ in range(20)
|
|
139
139
|
]
|
|
140
|
-
cycle_depths =
|
|
140
|
+
cycle_depths = list(range(3, 100, 9))
|
|
141
141
|
|
|
142
142
|
# avoid starting worker pool if it is not needed
|
|
143
143
|
pool = request.getfixturevalue("pool") if use_pool else None
|
cirq/ops/measure_util.py
CHANGED
|
@@ -95,6 +95,7 @@ def measure(
|
|
|
95
95
|
*target: raw_types.Qid,
|
|
96
96
|
key: str | cirq.MeasurementKey | None = None,
|
|
97
97
|
invert_mask: tuple[bool, ...] = (),
|
|
98
|
+
confusion_map: dict[tuple[int, ...], np.ndarray] | None = None,
|
|
98
99
|
) -> raw_types.Operation:
|
|
99
100
|
pass
|
|
100
101
|
|
|
@@ -105,6 +106,7 @@ def measure(
|
|
|
105
106
|
*,
|
|
106
107
|
key: str | cirq.MeasurementKey | None = None,
|
|
107
108
|
invert_mask: tuple[bool, ...] = (),
|
|
109
|
+
confusion_map: dict[tuple[int, ...], np.ndarray] | None = None,
|
|
108
110
|
) -> raw_types.Operation:
|
|
109
111
|
pass
|
|
110
112
|
|
{cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.7.0.
|
|
3
|
+
Version: 1.7.0.dev20250812001555
|
|
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.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=emXpdD5ZvwLRlFAoQB8YatmZyU3b4e9jg6FppMTUhkU,33900
|
|
|
4
4
|
cirq/_doc.py,sha256=BrnoABo1hk5RgB3Cgww4zLHUfiyFny0F1V-tOMCbdaU,2909
|
|
5
5
|
cirq/_import.py,sha256=ixBu4EyGl46Ram2cP3p5eZVEFDW5L2DS-VyTjz4N9iw,8429
|
|
6
6
|
cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=VUWTzT8gBOhoAVnA84IVRsUX0OgBqo08yR_V6z0R1wY,1206
|
|
8
|
+
cirq/_version_test.py,sha256=lDEBY7v4_ZGSrT9zDIR2KVCAm4suJscmXw4lgMm0IlI,155
|
|
9
9
|
cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=A5DIgFAY1hUNt9vai_C3-gGBv24116CJMzQxMcXOax4,13726
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -97,7 +97,7 @@ cirq/contrib/json_test_data/ReadoutNoiseModel.repr,sha256=2D9n9x2HpMimEUPqcnGdsm
|
|
|
97
97
|
cirq/contrib/json_test_data/__init__.py,sha256=y4pe0VWiQAa4PmWikB3XKFVgiuJWspUzW9ugDUYq8C8,723
|
|
98
98
|
cirq/contrib/json_test_data/spec.py,sha256=9Q_-qZkFM6S0bMFzyt-Bv2lPrHaUxltPmYCsn-wTxrs,1182
|
|
99
99
|
cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
|
|
100
|
-
cirq/contrib/noise_models/noise_models.py,sha256=
|
|
100
|
+
cirq/contrib/noise_models/noise_models.py,sha256=CJcvVQTaah5t6AC2nFTbaiSL-nTR1jtYV3ftO7nTbyo,11404
|
|
101
101
|
cirq/contrib/noise_models/noise_models_test.py,sha256=htDTYcWeMtgtLIo_4DaTIidoHCxPMVIAKtS80R4OmDs,11472
|
|
102
102
|
cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
|
|
103
103
|
cirq/contrib/paulistring/clifford_optimize.py,sha256=VMdivMpQnPQhgqtasce6dOPGx6x6eIZ6Z4f1H666j-I,7859
|
|
@@ -137,93 +137,93 @@ cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=CZ_CyJMhLHlaIiG8doLC5e
|
|
|
137
137
|
cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
|
|
138
138
|
cirq/contrib/quimb/density_matrix.py,sha256=BJj3odlXIzZievkSpaouggIMHFVjQUzVf05r25O8AgQ,8610
|
|
139
139
|
cirq/contrib/quimb/density_matrix_test.py,sha256=WBQY9vdQAuPFUYBTTJRUmP-161e7FasfTBvdq1oggyw,3092
|
|
140
|
-
cirq/contrib/quimb/grid_circuits.py,sha256=
|
|
141
|
-
cirq/contrib/quimb/grid_circuits_test.py,sha256=
|
|
142
|
-
cirq/contrib/quimb/mps_simulator.py,sha256=
|
|
143
|
-
cirq/contrib/quimb/mps_simulator_test.py,sha256=
|
|
140
|
+
cirq/contrib/quimb/grid_circuits.py,sha256=nC-nSB7CPS9XeDOXt0PMyxTbJQWmzl4m7Azq9Lzn0dg,4709
|
|
141
|
+
cirq/contrib/quimb/grid_circuits_test.py,sha256=bEoY_mITuYbhmMSZbEnkNu1QUbmvy9Tkl5a66INiKE8,3398
|
|
142
|
+
cirq/contrib/quimb/mps_simulator.py,sha256=F7hwGMV3DZpyOvWWp73V24Z2oP6yP75eQipApmUd2uE,24703
|
|
143
|
+
cirq/contrib/quimb/mps_simulator_test.py,sha256=MF9hye-gG1epkJRvtiGsHJChLerOV5MHhqDWADASAWI,17485
|
|
144
144
|
cirq/contrib/quimb/state_vector.py,sha256=8CvClbDRr4rLSApbIAVYzDs3zMZ9e3a_VW7VErIectM,6693
|
|
145
|
-
cirq/contrib/quimb/state_vector_test.py,sha256=
|
|
145
|
+
cirq/contrib/quimb/state_vector_test.py,sha256=vPTNvd4nOhS3fCOzTDYxRxlLcl1ua2jO_uN7u0kw55s,5975
|
|
146
146
|
cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
|
|
147
147
|
cirq/contrib/quirk/export_to_quirk.py,sha256=vbzG3LzqlZfRxdqVIdYoqFalBfkFHUtE762rCVTYNqs,3860
|
|
148
|
-
cirq/contrib/quirk/export_to_quirk_test.py,sha256=
|
|
149
|
-
cirq/contrib/quirk/linearize_circuit.py,sha256=
|
|
148
|
+
cirq/contrib/quirk/export_to_quirk_test.py,sha256=v0MJdEsU_aT-NRzBoOsgC_CCHuqq2DKjZYK5O27kPlI,12193
|
|
149
|
+
cirq/contrib/quirk/linearize_circuit.py,sha256=T47QSIpPTj1w-vKuqshsHwWKPQVNSIEP3xBgJejxdm8,1589
|
|
150
150
|
cirq/contrib/quirk/quirk_gate.py,sha256=-nfwb4y-gIuFNVyFu_RT47p-7MUV-3wvcpWab5h2mbI,7186
|
|
151
151
|
cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
|
|
152
|
-
cirq/contrib/routing/device.py,sha256
|
|
153
|
-
cirq/contrib/routing/device_test.py,sha256=
|
|
152
|
+
cirq/contrib/routing/device.py,sha256=-kFzQ6e5iDXYVO79gLtZQZQJZ8zgHH38_Bkb0ASAxuc,2924
|
|
153
|
+
cirq/contrib/routing/device_test.py,sha256=RA0bY5HgQhMUyIHP0cBi4xRDK-UUp3jW9Zzm7JxGx-o,2107
|
|
154
154
|
cirq/contrib/routing/greedy.py,sha256=QUD9WRBdc7nCe7nx_MBoawNIZ4wtIWH2TU_AiHGsuBI,13841
|
|
155
|
-
cirq/contrib/routing/greedy_test.py,sha256=
|
|
155
|
+
cirq/contrib/routing/greedy_test.py,sha256=MwYKSuSOc4Ao4FnvoRZYMkcGrhWmotXdCoJJvnd-TvI,2447
|
|
156
156
|
cirq/contrib/routing/initialization.py,sha256=WPHsk488_O3_brXrxJ5lciljj25BFbv_Yr0vxE8AtZc,3727
|
|
157
|
-
cirq/contrib/routing/initialization_test.py,sha256
|
|
157
|
+
cirq/contrib/routing/initialization_test.py,sha256=uKp999BFZnjJsduZxL9kA7nvDdJAjPfsBJ2lH3ipuq8,2561
|
|
158
158
|
cirq/contrib/routing/router.py,sha256=79h5mqaBo2PI1-bT6hbDMKJw0wRDbm6eliloP6OClMA,2591
|
|
159
|
-
cirq/contrib/routing/router_test.py,sha256=
|
|
159
|
+
cirq/contrib/routing/router_test.py,sha256=v0P3Q3Lfl1vcp8xJ7qPpc6oSA1VUUgHZlNDcL4X3cUc,6410
|
|
160
160
|
cirq/contrib/routing/swap_network.py,sha256=wQPDb3ZyIyaB1O2H7IyoZxfsGsuVn5GpdpDSURwdzj4,2379
|
|
161
|
-
cirq/contrib/routing/swap_network_test.py,sha256=
|
|
161
|
+
cirq/contrib/routing/swap_network_test.py,sha256=dQw1LgVCU4bcjEaYBwRNMM2i4TfxkWpd-ansQJg5Lw4,5141
|
|
162
162
|
cirq/contrib/routing/utils.py,sha256=xvA1khTMBly750GVJm_pCc5uBpAHpayLGZ-Yq4m2qg8,3780
|
|
163
|
-
cirq/contrib/routing/utils_test.py,sha256=
|
|
163
|
+
cirq/contrib/routing/utils_test.py,sha256=0TuaQdLTui_fFPRXGJfRBj5k5ysCyIQwW7OMfeABmR0,2107
|
|
164
164
|
cirq/contrib/shuffle_circuits/__init__.py,sha256=yKqR59wvZYmIrolsEEqoO9Dhgd5hALMkAoR9AtjnbUY,1030
|
|
165
|
-
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=
|
|
166
|
-
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=
|
|
165
|
+
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=xzMS1EysSMRrrlWE37MyYV-NR9b48kINH204ejYPzkA,22730
|
|
166
|
+
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=JM1GZ3aCYQuc8IHrA9CG3PEZeMnV73roBlm9bEoDArw,23924
|
|
167
167
|
cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
|
|
168
|
-
cirq/contrib/svg/svg.py,sha256=
|
|
168
|
+
cirq/contrib/svg/svg.py,sha256=WxwlIcCv5SofhiZ16Bej6qHkdZgU4lT1Gw5GMZnFAkE,9398
|
|
169
169
|
cirq/contrib/svg/svg_test.py,sha256=YYgUxcthavh4cTbTcb3NIabJVCi0u2AOeyF7rJWicQ4,2507
|
|
170
170
|
cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
|
|
171
171
|
cirq/devices/device.py,sha256=Ejkn0qIW8r406kn7rCOQ96SEJu4dUuKK13hazJl1VYg,5383
|
|
172
172
|
cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1194
|
|
173
173
|
cirq/devices/grid_device_metadata.py,sha256=pgh2wu33i9rWOqqYgsTMtLuB2k4L8EAD6tMx_o_ju5g,8602
|
|
174
|
-
cirq/devices/grid_device_metadata_test.py,sha256=
|
|
174
|
+
cirq/devices/grid_device_metadata_test.py,sha256=jNTQGFUrl-xCtuP6s04_FWtP1S87ot9TwYbXq-K950g,8799
|
|
175
175
|
cirq/devices/grid_qubit.py,sha256=dkTauRKFL2pjdpHLLNfO9RY03tYKKLtSBZZhIpikJ98,19154
|
|
176
|
-
cirq/devices/grid_qubit_test.py,sha256=
|
|
176
|
+
cirq/devices/grid_qubit_test.py,sha256=DtLAKSTRvTQ7XXujxDzhQIWgNbmFxdx-5A2tvDxUsaY,15642
|
|
177
177
|
cirq/devices/insertion_noise_model.py,sha256=FCVsVsrPyGT0WsvIWQUgu4IliSRpck3znrEmlI-xOPU,3609
|
|
178
178
|
cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
|
|
179
179
|
cirq/devices/line_qubit.py,sha256=Bwr4KM7F9o5n_ChYtkH5uSaRUqMqAQaRAsVF7yl4bkM,11773
|
|
180
|
-
cirq/devices/line_qubit_test.py,sha256=
|
|
181
|
-
cirq/devices/named_topologies.py,sha256=
|
|
182
|
-
cirq/devices/named_topologies_test.py,sha256=
|
|
183
|
-
cirq/devices/noise_model.py,sha256=
|
|
180
|
+
cirq/devices/line_qubit_test.py,sha256=gcOey2XO9QyBsI20wNtoFy0MYz5J-wwpC60P3018iL0,10667
|
|
181
|
+
cirq/devices/named_topologies.py,sha256=iU7Tvp_4dhxA23-wBIl9mMRBSpXdsdEv7BUZPqzvkHo,15817
|
|
182
|
+
cirq/devices/named_topologies_test.py,sha256=cZlodti18nnvWyKTVMnQUIC4wlrdlKL93ptgnfgzyVw,4911
|
|
183
|
+
cirq/devices/noise_model.py,sha256=8fcMrLzD3bgAHOvpmTdpdUxBDSGVYgM4Gbj-xNd-aaE,11255
|
|
184
184
|
cirq/devices/noise_model_test.py,sha256=0kLY4lksbfBz1pAuSXQWBw8xSnwVrfXqlxrUbsaUuUg,9412
|
|
185
185
|
cirq/devices/noise_properties.py,sha256=pXsTxgj2J6RcJ1uWUYdczUTBMn6ThtvucijNEgbrzQg,5321
|
|
186
|
-
cirq/devices/noise_properties_test.py,sha256=
|
|
187
|
-
cirq/devices/noise_utils.py,sha256=
|
|
188
|
-
cirq/devices/noise_utils_test.py,sha256=
|
|
186
|
+
cirq/devices/noise_properties_test.py,sha256=h8y7SgiA_VuoPvlnv0WseMUouHUlbhKiWQoh_yzqJqE,3443
|
|
187
|
+
cirq/devices/noise_utils.py,sha256=Gr51L8Zj1hQ7XCAPreqJdlIHNVpZswXzbUaQZmPcQ-o,7163
|
|
188
|
+
cirq/devices/noise_utils_test.py,sha256=kYLGs40QOih7Ai7KHIs5dF_z1_suT0kzlma5-kJ1qLE,2145
|
|
189
189
|
cirq/devices/superconducting_qubits_noise_properties.py,sha256=pQYEs6KupGW1lOQ5Tt8CEI0vdJ3sh94uTrVZHXosRmk,8142
|
|
190
|
-
cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=
|
|
190
|
+
cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=9EyqTXQ5BLpPY90pu8pXNzVSwhf-ub5jZuBEEAq6AIE,12535
|
|
191
191
|
cirq/devices/thermal_noise_model.py,sha256=TSOKMP1GSVS2FVzFGGt6_Rqd-0Dx4tnvMv6Yf_1YTk0,14426
|
|
192
|
-
cirq/devices/thermal_noise_model_test.py,sha256=
|
|
193
|
-
cirq/devices/unconstrained_device.py,sha256=
|
|
194
|
-
cirq/devices/unconstrained_device_test.py,sha256=
|
|
192
|
+
cirq/devices/thermal_noise_model_test.py,sha256=2IKRk30OXQ6wVuOGM28dYdXOaP578nTGexyyzY6M0vg,13857
|
|
193
|
+
cirq/devices/unconstrained_device.py,sha256=gC3NB4P8UUsVyz3o7CcVV_L6xIeY-ewgaUoXy3UCfDE,1536
|
|
194
|
+
cirq/devices/unconstrained_device_test.py,sha256=R3JSwkjSIMYd9jtNGsYmEAw4yzESPhh88MZfd86Cekg,1107
|
|
195
195
|
cirq/experiments/__init__.py,sha256=3y8FX6Edh_mEFJ7AWjhDurnSLxuEt0_edqL7CitCrTQ,3777
|
|
196
|
-
cirq/experiments/fidelity_estimation.py,sha256=
|
|
197
|
-
cirq/experiments/fidelity_estimation_test.py,sha256=
|
|
196
|
+
cirq/experiments/fidelity_estimation.py,sha256=MjLWhlpvO70Oy62sz44sqq6VtgTQJkDXnXsAMMTGx7U,9227
|
|
197
|
+
cirq/experiments/fidelity_estimation_test.py,sha256=ivUgYobEuN2eIzUveXy1Asabure2fRaopL8QfdFtvFQ,5007
|
|
198
198
|
cirq/experiments/n_qubit_tomography.py,sha256=16u0Tv14SyUM9WCk-ZxbBit9cl93MbZodGrj16XiBuo,8436
|
|
199
199
|
cirq/experiments/n_qubit_tomography_test.py,sha256=8wIgs0O8DtlCGOyC0MZA_d3tLNoURX1ARcqnnp1360g,4439
|
|
200
|
-
cirq/experiments/purity_estimation.py,sha256=
|
|
201
|
-
cirq/experiments/purity_estimation_test.py,sha256=
|
|
200
|
+
cirq/experiments/purity_estimation.py,sha256=20MRvxDyxlcnWkwI94_PzMexOytS3NgnaaVbtFwLv2c,2516
|
|
201
|
+
cirq/experiments/purity_estimation_test.py,sha256=ZDU6k-pja5W5kQ-5cy4id1IWUQ86WMiQYNOiXyAI0YU,967
|
|
202
202
|
cirq/experiments/qubit_characterizations.py,sha256=RO-gxOI_7n4HhGOmumgLGacV4Ve8bAY_s7XyxkOTUjo,40887
|
|
203
|
-
cirq/experiments/qubit_characterizations_test.py,sha256=
|
|
204
|
-
cirq/experiments/random_quantum_circuit_generation.py,sha256=
|
|
205
|
-
cirq/experiments/random_quantum_circuit_generation_test.py,sha256=
|
|
203
|
+
cirq/experiments/qubit_characterizations_test.py,sha256=gcMeYJLMWvboZGJqOicNAmGV736Ty1I5D5Ihd4EHOf0,11066
|
|
204
|
+
cirq/experiments/random_quantum_circuit_generation.py,sha256=90iD2KulPXKy9mu5MiHnir2ozCJ5bgGBzxNv9odw5FY,28016
|
|
205
|
+
cirq/experiments/random_quantum_circuit_generation_test.py,sha256=R4ShY12vAfLd4fTT9mX0VQM9VQol58ZdPsqBkZvFds4,16737
|
|
206
206
|
cirq/experiments/readout_confusion_matrix.py,sha256=qK6qDoNRuIHGTV7PS8xGkS7tCXGGyoDfUJJj6575-cE,20664
|
|
207
|
-
cirq/experiments/readout_confusion_matrix_test.py,sha256=
|
|
207
|
+
cirq/experiments/readout_confusion_matrix_test.py,sha256=qbaS1smXtRaMcboN1eI1DIRxzrDCq8-LNSgGee3bENo,10885
|
|
208
208
|
cirq/experiments/single_qubit_readout_calibration.py,sha256=0vnmKBtcjS8kCbJj_iJ0BWW23W6UCc4X2Ig9N_UUs0s,15243
|
|
209
|
-
cirq/experiments/single_qubit_readout_calibration_test.py,sha256=
|
|
209
|
+
cirq/experiments/single_qubit_readout_calibration_test.py,sha256=2VG4uh25UVlRscdx9v24RHW4uVKnsEnWAqgiVubqAVo,7873
|
|
210
210
|
cirq/experiments/t1_decay_experiment.py,sha256=ojtmkQ5mgiQ-cK389YrvlRXotzHon83HNG_8sae-JdE,7099
|
|
211
211
|
cirq/experiments/t1_decay_experiment_test.py,sha256=vjm-zV0a2yrFrFhzq03GOMBy5U_XnvX1Ga3NN4FiT3k,9262
|
|
212
|
-
cirq/experiments/t2_decay_experiment.py,sha256=
|
|
213
|
-
cirq/experiments/t2_decay_experiment_test.py,sha256=
|
|
212
|
+
cirq/experiments/t2_decay_experiment.py,sha256=emyOtoJa8Z7nbnTJbxTrqfWdWceMCoKWA4aBGnUHLBg,19096
|
|
213
|
+
cirq/experiments/t2_decay_experiment_test.py,sha256=_h_cDm9RHlsOm-R9g5LITm_ogQ9l_MAf6vZv6rQw95A,15170
|
|
214
214
|
cirq/experiments/two_qubit_xeb.py,sha256=7CXYU1W-qijnp-1831zT-lEXCx6GeEJoCf6QOBvBChw,22803
|
|
215
|
-
cirq/experiments/two_qubit_xeb_test.py,sha256=
|
|
216
|
-
cirq/experiments/xeb_fitting.py,sha256=
|
|
217
|
-
cirq/experiments/xeb_fitting_test.py,sha256=
|
|
218
|
-
cirq/experiments/xeb_sampling.py,sha256=
|
|
219
|
-
cirq/experiments/xeb_sampling_test.py,sha256=
|
|
220
|
-
cirq/experiments/xeb_simulation.py,sha256=
|
|
221
|
-
cirq/experiments/xeb_simulation_test.py,sha256=
|
|
215
|
+
cirq/experiments/two_qubit_xeb_test.py,sha256=IW9dAlI7pZGUlzIq8_2cKfTAWtPm53BZ2vRjHCzsxpY,10787
|
|
216
|
+
cirq/experiments/xeb_fitting.py,sha256=cO6hFOirbuWfWJOsgZC-lOLYBwqyK2IBAqP5lmjlpI8,30399
|
|
217
|
+
cirq/experiments/xeb_fitting_test.py,sha256=QxqG7-yAr10wLveKYDyOHQF7Kn-KkRVslNE9mrJ1DAg,15748
|
|
218
|
+
cirq/experiments/xeb_sampling.py,sha256=7Bnt9x5olJpsKkwh0ab7Oug1-1jlFjBTMOmPzmwC6r4,14941
|
|
219
|
+
cirq/experiments/xeb_sampling_test.py,sha256=wVFcyAoErAC6tRQMA6AJ1MrTT1DGwW_0PuKlwXCU5o8,6861
|
|
220
|
+
cirq/experiments/xeb_simulation.py,sha256=HqUb7d1XIgp0GEThIEHfDEsrh3kUee9pFS7k1vFWnIA,5089
|
|
221
|
+
cirq/experiments/xeb_simulation_test.py,sha256=UAm6qCTJWa9o5Nwr9LwvJ8fmlNvg6IQs8gsraasK2I8,5625
|
|
222
222
|
cirq/experiments/z_phase_calibration.py,sha256=0W2VWV6SPWwQnPVJqhrxih0CLlR1SNRJU_CZ48C5PHo,15018
|
|
223
223
|
cirq/experiments/z_phase_calibration_test.py,sha256=F5ePCPHukDolucMPDfMbyeDSHMF3hEzW-EBEQHKrCyI,9048
|
|
224
224
|
cirq/experiments/benchmarking/__init__.py,sha256=oAom0qrtLKb8NqUcBJWiKd6chwFE2j6jVLI8_iNivzA,723
|
|
225
|
-
cirq/experiments/benchmarking/parallel_xeb.py,sha256=
|
|
226
|
-
cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=
|
|
225
|
+
cirq/experiments/benchmarking/parallel_xeb.py,sha256=xC7BOr9cDTGshRNG4tgXAXXH4VuMntIBYjp_PQZW5Tc,26117
|
|
226
|
+
cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=mrP97qFvhPa7_FYuW-PXGP9wAnxOFVCo8jwjwcGGWFQ,16352
|
|
227
227
|
cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
|
|
228
228
|
cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
|
|
229
229
|
cirq/interop/quirk/url_to_circuit.py,sha256=oEyMpUxjViS-TVzN3HWg_rK2k_MEBzn1VByMoOyJMi0,14083
|
|
@@ -331,7 +331,7 @@ cirq/ops/linear_combinations.py,sha256=AQA0aFDuHXks44fFtevrc2Zl1chleSlf1A0LkmrZr
|
|
|
331
331
|
cirq/ops/linear_combinations_test.py,sha256=EYqrWlFFThv8dl5B_9yIckEn_z3-Nfzh7rdVzGpIVWM,67351
|
|
332
332
|
cirq/ops/matrix_gates.py,sha256=or8Kc3kP1NFjLbAHemmrZIqYFgEeeteMogNVEzYjosk,10238
|
|
333
333
|
cirq/ops/matrix_gates_test.py,sha256=MEK1VsaAv2Li_aYhFIfD53gytCNo854l5-BXL9yZBFs,14770
|
|
334
|
-
cirq/ops/measure_util.py,sha256=
|
|
334
|
+
cirq/ops/measure_util.py,sha256=JtBgBFTGVUPstC8SdhV7JQhaEd3zYdKvUMJSoBRsngc,7397
|
|
335
335
|
cirq/ops/measure_util_test.py,sha256=WrbR2jr_bFXxpQe8n3ANLAKYo1hcf-SlgsFOi-ULRXU,5343
|
|
336
336
|
cirq/ops/measurement_gate.py,sha256=i7ThYTd1xdzOG274jzFnzqEz5Qmv6wggcubWa-3FDZE,11874
|
|
337
337
|
cirq/ops/measurement_gate_test.py,sha256=SPVD8DTc0Kmkazp7jmUIVHfELihkK_SFu3aXSw-uHbc,18335
|
|
@@ -1234,8 +1234,8 @@ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
|
|
|
1234
1234
|
cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
|
|
1235
1235
|
cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
|
|
1236
1236
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1237
|
-
cirq_core-1.7.0.
|
|
1238
|
-
cirq_core-1.7.0.
|
|
1239
|
-
cirq_core-1.7.0.
|
|
1240
|
-
cirq_core-1.7.0.
|
|
1241
|
-
cirq_core-1.7.0.
|
|
1237
|
+
cirq_core-1.7.0.dev20250812001555.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1238
|
+
cirq_core-1.7.0.dev20250812001555.dist-info/METADATA,sha256=nXJD4WM4oiZZqJ0Riqm2cyKd16tY1d2num2fOZC85kw,4857
|
|
1239
|
+
cirq_core-1.7.0.dev20250812001555.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1240
|
+
cirq_core-1.7.0.dev20250812001555.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1241
|
+
cirq_core-1.7.0.dev20250812001555.dist-info/RECORD,,
|
{cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812001555.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|