cirq-core 1.7.0.dev20250807224154__py3-none-any.whl → 1.7.0.dev20250812021254__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.

Files changed (59) hide show
  1. cirq/_version.py +1 -1
  2. cirq/_version_test.py +1 -1
  3. cirq/contrib/noise_models/noise_models.py +8 -8
  4. cirq/contrib/quimb/grid_circuits.py +1 -1
  5. cirq/contrib/quimb/grid_circuits_test.py +10 -5
  6. cirq/contrib/quimb/mps_simulator.py +3 -3
  7. cirq/contrib/quimb/mps_simulator_test.py +41 -42
  8. cirq/contrib/quimb/state_vector_test.py +14 -13
  9. cirq/contrib/quirk/export_to_quirk_test.py +2 -2
  10. cirq/contrib/quirk/linearize_circuit.py +1 -1
  11. cirq/contrib/routing/device.py +1 -1
  12. cirq/contrib/routing/device_test.py +7 -5
  13. cirq/contrib/routing/greedy_test.py +7 -2
  14. cirq/contrib/routing/initialization_test.py +1 -1
  15. cirq/contrib/routing/router_test.py +9 -10
  16. cirq/contrib/routing/swap_network_test.py +10 -4
  17. cirq/contrib/routing/utils_test.py +4 -4
  18. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +9 -9
  19. cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +18 -16
  20. cirq/contrib/svg/svg.py +1 -1
  21. cirq/devices/grid_device_metadata_test.py +12 -12
  22. cirq/devices/grid_qubit_test.py +52 -52
  23. cirq/devices/line_qubit_test.py +37 -37
  24. cirq/devices/named_topologies.py +7 -5
  25. cirq/devices/named_topologies_test.py +3 -2
  26. cirq/devices/noise_model.py +1 -1
  27. cirq/devices/noise_properties_test.py +1 -1
  28. cirq/devices/noise_utils.py +1 -1
  29. cirq/devices/noise_utils_test.py +6 -6
  30. cirq/devices/superconducting_qubits_noise_properties_test.py +31 -24
  31. cirq/devices/thermal_noise_model_test.py +48 -44
  32. cirq/devices/unconstrained_device.py +1 -1
  33. cirq/devices/unconstrained_device_test.py +3 -3
  34. cirq/experiments/benchmarking/parallel_xeb.py +24 -17
  35. cirq/experiments/benchmarking/parallel_xeb_test.py +42 -28
  36. cirq/experiments/fidelity_estimation.py +5 -5
  37. cirq/experiments/fidelity_estimation_test.py +7 -7
  38. cirq/experiments/purity_estimation.py +1 -1
  39. cirq/experiments/purity_estimation_test.py +1 -1
  40. cirq/experiments/qubit_characterizations_test.py +10 -10
  41. cirq/experiments/random_quantum_circuit_generation.py +1 -1
  42. cirq/experiments/random_quantum_circuit_generation_test.py +18 -13
  43. cirq/experiments/readout_confusion_matrix_test.py +12 -8
  44. cirq/experiments/single_qubit_readout_calibration_test.py +13 -13
  45. cirq/experiments/t2_decay_experiment.py +1 -1
  46. cirq/experiments/t2_decay_experiment_test.py +13 -13
  47. cirq/experiments/two_qubit_xeb_test.py +20 -22
  48. cirq/experiments/xeb_fitting.py +3 -3
  49. cirq/experiments/xeb_fitting_test.py +21 -19
  50. cirq/experiments/xeb_sampling.py +2 -2
  51. cirq/experiments/xeb_sampling_test.py +9 -9
  52. cirq/experiments/xeb_simulation.py +1 -1
  53. cirq/experiments/xeb_simulation_test.py +6 -6
  54. cirq/ops/measure_util.py +2 -0
  55. {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812021254.dist-info}/METADATA +1 -1
  56. {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812021254.dist-info}/RECORD +59 -59
  57. {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812021254.dist-info}/WHEEL +0 -0
  58. {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812021254.dist-info}/licenses/LICENSE +0 -0
  59. {cirq_core-1.7.0.dev20250807224154.dist-info → cirq_core-1.7.0.dev20250812021254.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 = np.arange(3, 50, 9)
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 = np.arange(3, 50, 9, dtype=np.int64)
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 = np.arange(3, 100, 9, dtype=np.int64)
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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cirq-core
3
- Version: 1.7.0.dev20250807224154
3
+ Version: 1.7.0.dev20250812021254
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
@@ -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=P5YAvfjPnif5jntwzbwusRIWDRHV_4TeXwkGNk6ekA0,1206
8
- cirq/_version_test.py,sha256=GGaSfPXWJBJgqgRIAVliLKF4FKGuJZNj_ImG_mGeWyY,155
7
+ cirq/_version.py,sha256=DHx7une2HEtyi6FUsHJc0N0dMLoNtnhTHsHGpwCAYSw,1206
8
+ cirq/_version_test.py,sha256=7WjGDJ22R0m-IKmCEsFeuLFjiMfk6XWbK0qCV93kpN0,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=roHyBEIvD-WqjOhY8bRi5nzz0lycp3Ny19mr6W0zWsU,11332
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=5tFgTwb83x7QFJh8-4Vj5lO07eJvEL3f8QW4MCdKucs,4701
141
- cirq/contrib/quimb/grid_circuits_test.py,sha256=gemrEO7qcxx7L4bIJbA6gHd4Ub3kVf8e_IQY6U9dyv8,3260
142
- cirq/contrib/quimb/mps_simulator.py,sha256=DVQHmlm9G0-OLjX6hH_lHLIJ0ely43LZfsxywyT-7mQ,24651
143
- cirq/contrib/quimb/mps_simulator_test.py,sha256=x4Ro-nAEb3xbr0I4pjw3oTRK4yRCYaRmv7obcr2ti9o,17179
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=l1soE2DqwBkPcinSFRRsmG36ukJ5Bahrin7SfIq4W34,5837
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=WaPfHVrC06yzIsJ91M0vR18D9dL0RpXuJcZ5Xz4-KQY,12149
149
- cirq/contrib/quirk/linearize_circuit.py,sha256=ackWBymRhMLOL9MBvPkamXLfOQG0xDKOHhP01_l1G9Y,1581
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=5BWKLh5AIJNNLNoUAr-ROHF87JSK75x5Hu4V2SRo6cU,2912
153
- cirq/contrib/routing/device_test.py,sha256=60ZAstzmHpw9XxrYd3HOMpWnXaEWmH2yq_zJmxLhC8E,1962
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=i4XSZyERmHKTkaLCHV5cBk0qH-LnRg8tcJVyKM2slmE,2290
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=-YzTK9rgiIjUdJnPQrhXtaxY6j5q6jnzs7S_sDdf0V8,2533
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=3VXVTexolCP0CKgsCSu6fMmEliQE48EcSq2uKujfJUY,6366
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=3xahmqi5etiksFgD1aNIqp_KnQ4JuhHeHF46h4FMGwA,4866
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=4ssy2pXdHKRv99on91ag1SgZihYEfNR96i4AuTh90nM,2057
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=QOiZeswqkGuuzIpFjSUID1-Y8H0lm5vhLW_poFzWa6E,22764
166
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=vk9wjIQwaOviqnzEnG-2IT8cLMLR4xEsP3EXHeeqLqs,23770
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=TU273Ei6XhKr_pbHyQPx2BPa-59r6L70IzDT8LvgDMQ,9391
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=W0G_ewse8AqAvbPV0JmIIDNSU_Okm7tzscPZ_LjOufY,8630
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=aRSoRL-L-LaXCgBOzaMvVDwdP0kGN0Oc1yIYaRlNYk0,15048
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=ZJjt3iWXxmFqpBypDvFKQhTFb_lvVp8aokbFG5iNfDc,10323
181
- cirq/devices/named_topologies.py,sha256=CNoMG2xhisUgssSdngzr8VpA5YBPjpVhw4dtXxKAb7Y,15735
182
- cirq/devices/named_topologies_test.py,sha256=opABh1NgkfubHF4sCCTAxmFHLZXVZIgdKrZLQefd-AE,4854
183
- cirq/devices/noise_model.py,sha256=teJNj25_tLTu_8_6fkKNyFAVnaRH6actJFXbhIJCHMY,11239
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=0g0_UP70FE0mU-SySOu-MX6jnuR7XH0Y0QOjZMO8HqA,3418
187
- cirq/devices/noise_utils.py,sha256=73B1o22072RhsNdo7_t_A-pa7Sub62ff4VpvNt0Ewdk,7155
188
- cirq/devices/noise_utils_test.py,sha256=Pn_BO0c5Ky9FJk384FXh_BkXXYe1V7GWIBgxsaoB9as,2099
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=Ld7ft0Vr4V69egdL67WKAdDF6vNXc2-SLPzx0u2ph2E,12200
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=F4PtsTxhM-FyA1E_VDgg7e3TjuKeN7sGCdvHi31RxWk,12914
193
- cirq/devices/unconstrained_device.py,sha256=wa94uVzaCPb1jmG3h6hSGJQggSuCvEK8wekkGXCOx_Q,1551
194
- cirq/devices/unconstrained_device_test.py,sha256=J8vABVWWywQuX6Jlo5Y0pWTh6VZRatdmjdBL6u0kZKk,1083
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=2wq4gFZ6XYzk3NUGbyNn7EZT911XEHcZot1RD4825mc,9264
197
- cirq/experiments/fidelity_estimation_test.py,sha256=On0O1StB6Fo85xuK6BWo-zZWb2at-GqhAgpSrNRBn3I,4955
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=0F5uWh0pqNJ9RZQtNBzGeF8OUpapGFeqPWWVsdpEA7k,2503
201
- cirq/experiments/purity_estimation_test.py,sha256=OF3EtFBg7ZqPSBfRJK_-1ji2-xrNVEuD77lHO8Sm3Jc,959
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=maQmdNAWwZ15OcUDe0gqu7irYOK8ldwF1CVBY53rmxY,10971
204
- cirq/experiments/random_quantum_circuit_generation.py,sha256=pV6ubukLLdfPXLvJD2t979rVDCOTM32X6SB65vExeE4,28012
205
- cirq/experiments/random_quantum_circuit_generation_test.py,sha256=4GSfUK2hw2r90JAO7R2zSBqjtwWi8vXuAhw-iK6quwY,16512
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=DNapm_kLa0Mn9vW_KejWKrmM4yqJ8Q-7gqxNjFkOFQU,10668
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=HQE29SxyL2mUhvNZnV9F_vOaAIJteox7volmDfZQy8g,7751
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=w4W7QvdIPW5LO9KeREpMFJpFpz0F0wA9T9qPs1t4Mzw,19135
213
- cirq/experiments/t2_decay_experiment_test.py,sha256=b2ikIWTctvAp66GZftmVJ1z0mgS-eN0FsUU7bErG7Cg,15066
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=MSwdIOcfFy9d-GZUzz4f-2_gblleR89dPIyC8pt_AsQ,10689
216
- cirq/experiments/xeb_fitting.py,sha256=SaiamG0gc36bC6ilecZwJou-taEh3REWJAwg5F47DEA,30306
217
- cirq/experiments/xeb_fitting_test.py,sha256=q4d-6dPnnN_E9Qw9laip-opsfhdftJuY3QZfEh_u7Wo,15483
218
- cirq/experiments/xeb_sampling.py,sha256=CkWJUqRPuHmnqUdVJl9j5X22iI-fP__t8hhr3_N_5xg,14921
219
- cirq/experiments/xeb_sampling_test.py,sha256=3iECmmPuBLLJqVRuhTqvewbI54WwHdsX7kcuivg0cx0,6821
220
- cirq/experiments/xeb_simulation.py,sha256=qAKssRqmPvFRalM6G9ArN1rTe404WBEfWxx7vKnn5HU,5073
221
- cirq/experiments/xeb_simulation_test.py,sha256=cJyaFepWIlkPeQb2vQI5W2iCTtNQlfaX0FQNmAvLC_A,5627
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=frCeZMRw03YGwDYYjWkg6blEFoGB8BPt9lxA9cNA8vA,25894
226
- cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=tT_iyG9_ZU933-t2altuugOy8ekqzxtjkmGn1rdF-ak,15867
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=iT7vrYLTo6L4z4_Zdm-8e8iiiKyQgF2v9Ui74Tg52aw,7261
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.dev20250807224154.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1238
- cirq_core-1.7.0.dev20250807224154.dist-info/METADATA,sha256=0e8gaieVOCv57evNnnXZD1_0NTOFWb-CXOzsi-HQBI0,4857
1239
- cirq_core-1.7.0.dev20250807224154.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1240
- cirq_core-1.7.0.dev20250807224154.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1241
- cirq_core-1.7.0.dev20250807224154.dist-info/RECORD,,
1237
+ cirq_core-1.7.0.dev20250812021254.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
1238
+ cirq_core-1.7.0.dev20250812021254.dist-info/METADATA,sha256=iC4LTyajSLC3iypZqml3zNtDX34V6eTcrieMSlLcIBE,4857
1239
+ cirq_core-1.7.0.dev20250812021254.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1240
+ cirq_core-1.7.0.dev20250812021254.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
1241
+ cirq_core-1.7.0.dev20250812021254.dist-info/RECORD,,