cirq-core 1.6.0.dev20250516060316__py3-none-any.whl → 1.6.0.dev20250517012327__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/__init__.py +1 -0
- cirq/_import_test.py +2 -2
- cirq/_version.py +1 -1
- cirq/_version_test.py +1 -1
- cirq/interop/quirk/cells/parse_test.py +10 -10
- cirq/testing/equals_tester_test.py +19 -17
- cirq/transformers/__init__.py +5 -0
- cirq/transformers/symbolize.py +101 -0
- cirq/transformers/symbolize_test.py +60 -0
- cirq/value/random_state_test.py +3 -3
- cirq/value/timestamp.py +4 -0
- cirq/value/timestamp_test.py +10 -10
- cirq/vis/density_matrix_test.py +17 -17
- cirq/work/collector_test.py +13 -10
- cirq/work/observable_measurement.py +14 -2
- cirq/work/observable_measurement_data.py +3 -3
- cirq/work/observable_measurement_test.py +43 -27
- cirq/work/observable_settings.py +2 -12
- cirq/work/observable_settings_test.py +7 -7
- cirq/work/pauli_sum_collector_test.py +7 -9
- cirq/work/sampler_test.py +25 -22
- {cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/RECORD +26 -24
- {cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/top_level.txt +0 -0
cirq/work/sampler_test.py
CHANGED
|
@@ -28,7 +28,7 @@ import cirq
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
@duet.sync
|
|
31
|
-
async def test_run_async():
|
|
31
|
+
async def test_run_async() -> None:
|
|
32
32
|
sim = cirq.Simulator()
|
|
33
33
|
result = await sim.run_async(
|
|
34
34
|
cirq.Circuit(cirq.measure(cirq.GridQubit(0, 0), key='m')), repetitions=10
|
|
@@ -37,7 +37,7 @@ async def test_run_async():
|
|
|
37
37
|
|
|
38
38
|
|
|
39
39
|
@duet.sync
|
|
40
|
-
async def test_run_sweep_async():
|
|
40
|
+
async def test_run_sweep_async() -> None:
|
|
41
41
|
sim = cirq.Simulator()
|
|
42
42
|
results = await sim.run_sweep_async(
|
|
43
43
|
cirq.Circuit(cirq.measure(cirq.GridQubit(0, 0), key='m')),
|
|
@@ -50,7 +50,7 @@ async def test_run_sweep_async():
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
@duet.sync
|
|
53
|
-
async def test_sampler_async_fail():
|
|
53
|
+
async def test_sampler_async_fail() -> None:
|
|
54
54
|
class FailingSampler(cirq.Sampler):
|
|
55
55
|
def run_sweep(self, program, params, repetitions: int = 1):
|
|
56
56
|
raise ValueError('test')
|
|
@@ -62,7 +62,7 @@ async def test_sampler_async_fail():
|
|
|
62
62
|
await FailingSampler().run_sweep_async(cirq.Circuit(), repetitions=1, params=None)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
def test_run_sweep_impl():
|
|
65
|
+
def test_run_sweep_impl() -> None:
|
|
66
66
|
"""Test run_sweep implemented in terms of run_sweep_async."""
|
|
67
67
|
|
|
68
68
|
class AsyncSampler(cirq.Sampler):
|
|
@@ -81,7 +81,7 @@ def test_run_sweep_impl():
|
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
@duet.sync
|
|
84
|
-
async def test_run_sweep_async_impl():
|
|
84
|
+
async def test_run_sweep_async_impl() -> None:
|
|
85
85
|
"""Test run_sweep_async implemented in terms of run_sweep."""
|
|
86
86
|
|
|
87
87
|
class SyncSampler(cirq.Sampler):
|
|
@@ -98,7 +98,7 @@ async def test_run_sweep_async_impl():
|
|
|
98
98
|
np.testing.assert_equal(result.records['m'], np.zeros((10, 1, 1)))
|
|
99
99
|
|
|
100
100
|
|
|
101
|
-
def test_sampler_sample_multiple_params():
|
|
101
|
+
def test_sampler_sample_multiple_params() -> None:
|
|
102
102
|
a, b = cirq.LineQubit.range(2)
|
|
103
103
|
s = sympy.Symbol('s')
|
|
104
104
|
t = sympy.Symbol('t')
|
|
@@ -132,7 +132,7 @@ def test_sampler_sample_multiple_params():
|
|
|
132
132
|
)
|
|
133
133
|
|
|
134
134
|
|
|
135
|
-
def test_sampler_sample_sweep():
|
|
135
|
+
def test_sampler_sample_sweep() -> None:
|
|
136
136
|
a = cirq.LineQubit(0)
|
|
137
137
|
t = sympy.Symbol('t')
|
|
138
138
|
sampler = cirq.Simulator()
|
|
@@ -158,7 +158,7 @@ def test_sampler_sample_sweep():
|
|
|
158
158
|
)
|
|
159
159
|
|
|
160
160
|
|
|
161
|
-
def test_sampler_sample_no_params():
|
|
161
|
+
def test_sampler_sample_no_params() -> None:
|
|
162
162
|
a, b = cirq.LineQubit.range(2)
|
|
163
163
|
sampler = cirq.Simulator()
|
|
164
164
|
circuit = cirq.Circuit(cirq.X(a), cirq.measure(a, b, key='out'))
|
|
@@ -168,7 +168,7 @@ def test_sampler_sample_no_params():
|
|
|
168
168
|
)
|
|
169
169
|
|
|
170
170
|
|
|
171
|
-
def test_sampler_sample_inconsistent_keys():
|
|
171
|
+
def test_sampler_sample_inconsistent_keys() -> None:
|
|
172
172
|
q = cirq.LineQubit(0)
|
|
173
173
|
sampler = cirq.Simulator()
|
|
174
174
|
circuit = cirq.Circuit(cirq.measure(q, key='out'))
|
|
@@ -177,7 +177,7 @@ def test_sampler_sample_inconsistent_keys():
|
|
|
177
177
|
|
|
178
178
|
|
|
179
179
|
@duet.sync
|
|
180
|
-
async def test_sampler_async_not_run_inline():
|
|
180
|
+
async def test_sampler_async_not_run_inline() -> None:
|
|
181
181
|
ran = False
|
|
182
182
|
|
|
183
183
|
class S(cirq.Sampler):
|
|
@@ -192,7 +192,7 @@ async def test_sampler_async_not_run_inline():
|
|
|
192
192
|
assert ran
|
|
193
193
|
|
|
194
194
|
|
|
195
|
-
def test_sampler_run_batch():
|
|
195
|
+
def test_sampler_run_batch() -> None:
|
|
196
196
|
sampler = cirq.ZerosSampler()
|
|
197
197
|
a = cirq.LineQubit(0)
|
|
198
198
|
circuit1 = cirq.Circuit(cirq.X(a) ** sympy.Symbol('t'), cirq.measure(a, key='m'))
|
|
@@ -215,7 +215,7 @@ def test_sampler_run_batch():
|
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
@duet.sync
|
|
218
|
-
async def test_run_batch_async_calls_run_sweep_asynchronously():
|
|
218
|
+
async def test_run_batch_async_calls_run_sweep_asynchronously() -> None:
|
|
219
219
|
"""Test run_batch_async calls run_sweep_async without waiting."""
|
|
220
220
|
finished = []
|
|
221
221
|
a = cirq.LineQubit(0)
|
|
@@ -241,7 +241,7 @@ async def test_run_batch_async_calls_run_sweep_asynchronously():
|
|
|
241
241
|
assert finished == list(reversed(params_list))
|
|
242
242
|
|
|
243
243
|
|
|
244
|
-
def test_sampler_run_batch_default_params_and_repetitions():
|
|
244
|
+
def test_sampler_run_batch_default_params_and_repetitions() -> None:
|
|
245
245
|
sampler = cirq.ZerosSampler()
|
|
246
246
|
a = cirq.LineQubit(0)
|
|
247
247
|
circuit1 = cirq.Circuit(cirq.X(a), cirq.measure(a, key='m'))
|
|
@@ -256,7 +256,7 @@ def test_sampler_run_batch_default_params_and_repetitions():
|
|
|
256
256
|
assert result.measurements == {'m': np.array([[0]], dtype='uint8')}
|
|
257
257
|
|
|
258
258
|
|
|
259
|
-
def test_sampler_run_batch_bad_input_lengths():
|
|
259
|
+
def test_sampler_run_batch_bad_input_lengths() -> None:
|
|
260
260
|
sampler = cirq.ZerosSampler()
|
|
261
261
|
a = cirq.LineQubit(0)
|
|
262
262
|
circuit1 = cirq.Circuit(cirq.X(a) ** sympy.Symbol('t'), cirq.measure(a, key='m'))
|
|
@@ -271,7 +271,7 @@ def test_sampler_run_batch_bad_input_lengths():
|
|
|
271
271
|
)
|
|
272
272
|
|
|
273
273
|
|
|
274
|
-
def test_sampler_simple_sample_expectation_values():
|
|
274
|
+
def test_sampler_simple_sample_expectation_values() -> None:
|
|
275
275
|
a = cirq.LineQubit(0)
|
|
276
276
|
sampler = cirq.Simulator()
|
|
277
277
|
circuit = cirq.Circuit(cirq.H(a))
|
|
@@ -281,7 +281,7 @@ def test_sampler_simple_sample_expectation_values():
|
|
|
281
281
|
assert np.allclose(results, [[1]])
|
|
282
282
|
|
|
283
283
|
|
|
284
|
-
def test_sampler_sample_expectation_values_calculation():
|
|
284
|
+
def test_sampler_sample_expectation_values_calculation() -> None:
|
|
285
285
|
class DeterministicImbalancedStateSampler(cirq.Sampler):
|
|
286
286
|
"""A simple, deterministic mock sampler.
|
|
287
287
|
Pretends to sample from a state vector with a 3:1 balance between the
|
|
@@ -311,7 +311,7 @@ def test_sampler_sample_expectation_values_calculation():
|
|
|
311
311
|
assert np.allclose(results, [[0.5]])
|
|
312
312
|
|
|
313
313
|
|
|
314
|
-
def test_sampler_sample_expectation_values_multi_param():
|
|
314
|
+
def test_sampler_sample_expectation_values_multi_param() -> None:
|
|
315
315
|
a = cirq.LineQubit(0)
|
|
316
316
|
t = sympy.Symbol('t')
|
|
317
317
|
sampler = cirq.Simulator(seed=1)
|
|
@@ -324,20 +324,23 @@ def test_sampler_sample_expectation_values_multi_param():
|
|
|
324
324
|
assert np.allclose(results, [[1], [-1], [1]])
|
|
325
325
|
|
|
326
326
|
|
|
327
|
-
def test_sampler_sample_expectation_values_complex_param():
|
|
327
|
+
def test_sampler_sample_expectation_values_complex_param() -> None:
|
|
328
328
|
a = cirq.LineQubit(0)
|
|
329
329
|
t = sympy.Symbol('t')
|
|
330
330
|
sampler = cirq.Simulator(seed=1)
|
|
331
331
|
circuit = cirq.Circuit(cirq.global_phase_operation(t))
|
|
332
332
|
obs = cirq.Z(a)
|
|
333
333
|
results = sampler.sample_expectation_values(
|
|
334
|
-
circuit,
|
|
334
|
+
circuit,
|
|
335
|
+
[obs],
|
|
336
|
+
num_samples=5,
|
|
337
|
+
params=cirq.Points('t', [1, 1j, (1 + 1j) / np.sqrt(2)]), # type: ignore[list-item]
|
|
335
338
|
)
|
|
336
339
|
|
|
337
340
|
assert np.allclose(results, [[1], [1], [1]])
|
|
338
341
|
|
|
339
342
|
|
|
340
|
-
def test_sampler_sample_expectation_values_multi_qubit():
|
|
343
|
+
def test_sampler_sample_expectation_values_multi_qubit() -> None:
|
|
341
344
|
q = cirq.LineQubit.range(3)
|
|
342
345
|
sampler = cirq.Simulator(seed=1)
|
|
343
346
|
circuit = cirq.Circuit(cirq.X(q[0]), cirq.X(q[1]), cirq.X(q[2]))
|
|
@@ -347,7 +350,7 @@ def test_sampler_sample_expectation_values_multi_qubit():
|
|
|
347
350
|
assert np.allclose(results, [[-3]])
|
|
348
351
|
|
|
349
352
|
|
|
350
|
-
def test_sampler_sample_expectation_values_composite():
|
|
353
|
+
def test_sampler_sample_expectation_values_composite() -> None:
|
|
351
354
|
# Tests multi-{param,qubit} sampling together in one circuit.
|
|
352
355
|
q = cirq.LineQubit.range(3)
|
|
353
356
|
t = [sympy.Symbol(f't{x}') for x in range(3)]
|
|
@@ -376,7 +379,7 @@ def test_sampler_sample_expectation_values_composite():
|
|
|
376
379
|
)
|
|
377
380
|
|
|
378
381
|
|
|
379
|
-
def test_sampler_simple_sample_expectation_requirements():
|
|
382
|
+
def test_sampler_simple_sample_expectation_requirements() -> None:
|
|
380
383
|
a = cirq.LineQubit(0)
|
|
381
384
|
sampler = cirq.Simulator(seed=1)
|
|
382
385
|
circuit = cirq.Circuit(cirq.H(a))
|
{cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.6.0.
|
|
3
|
+
Version: 1.6.0.dev20250517012327
|
|
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.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/RECORD
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
cirq/__init__.py,sha256=
|
|
1
|
+
cirq/__init__.py,sha256=ATT0Sbu4iemRSpJ0xGabMJJ85kEeGJZ0TPirye6BWwM,28336
|
|
2
2
|
cirq/_compat.py,sha256=WAe4w7ZvaLlmn5J-YQMoHNwlosFaTUW6XiI1bXhPCrA,29569
|
|
3
3
|
cirq/_compat_test.py,sha256=t51ZXkEuomg1SMI871Ws-5pk68DGBsAf2TGNjVXtZ8I,34755
|
|
4
4
|
cirq/_doc.py,sha256=GlE8YPG5aEuA_TNMQMvqS6Pd8654akVJavUnNngtWUg,2915
|
|
5
5
|
cirq/_import.py,sha256=bXzIRteBSrBl6D5KBIMP0uE8T-jjwMAgoF8yTC03tSc,8457
|
|
6
|
-
cirq/_import_test.py,sha256=
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
6
|
+
cirq/_import_test.py,sha256=oF4izzOVZLc7NZ0aZHFcGv-r01eiFFt_JORx_x7_D4s,1089
|
|
7
|
+
cirq/_version.py,sha256=rq86Hs4mipnt92Q2cs93kwAUwMfvMe3_kcxSP7F_Ck0,1206
|
|
8
|
+
cirq/_version_test.py,sha256=71ISiuhYPbGcYaOJ4S4Fu6S7fBE0P0n5V0gN4yltPzc,155
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=-4KqEEYb6aps-seafnFTHTp3SZc0D8mr4O-pCKIajn8,13653
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -237,7 +237,7 @@ cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=6UhV6T5Os3omTDGNy8v
|
|
|
237
237
|
cirq/interop/quirk/cells/measurement_cells.py,sha256=_6a6jm-EP9khPm2eZZu2ArlTdvfLzo1bW7LZ9GFaXVg,1539
|
|
238
238
|
cirq/interop/quirk/cells/measurement_cells_test.py,sha256=guP6XrUdM2gxOhjqc3QyWOSLYpkb9gZOZRPuyC5gPhM,1582
|
|
239
239
|
cirq/interop/quirk/cells/parse.py,sha256=Ilyzz9rbe9XYExVlj4rcJsrIWN4TnAj6LlVl37S9MO8,11873
|
|
240
|
-
cirq/interop/quirk/cells/parse_test.py,sha256=
|
|
240
|
+
cirq/interop/quirk/cells/parse_test.py,sha256=zmhvD08_yU7UMOvmG3i0dTwOIY-Qy9Q4iovpLleAIWA,7589
|
|
241
241
|
cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=swv_ovLaqO073j-uo6JtII_Sw_Nh51e53tSq-8JREoM,3424
|
|
242
242
|
cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=Yk1zMK1G-M58jph3m9vLwA_ouLbtgoEq0hC2Go-8N88,4516
|
|
243
243
|
cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJyGaMXGZYlnc,1281
|
|
@@ -1000,7 +1000,7 @@ cirq/testing/deprecation_test.py,sha256=CtEW1pOd9wALHVU96DNPGrANT9XRm5fF3nFdZBa2
|
|
|
1000
1000
|
cirq/testing/devices.py,sha256=i3v7hOGgblJXxOdZhWeAd-XszsF2PX4-ooTmqUdkAoM,3259
|
|
1001
1001
|
cirq/testing/devices_test.py,sha256=4cqjBi9BhmJpBdUq-nEsrtRYNhIdvTQKYynfA_CoFH8,2885
|
|
1002
1002
|
cirq/testing/equals_tester.py,sha256=3rTAyPAQs-Ocy8v26SzSSjmaqz3ROk0oZw0DpNWaWs0,6587
|
|
1003
|
-
cirq/testing/equals_tester_test.py,sha256=
|
|
1003
|
+
cirq/testing/equals_tester_test.py,sha256=SR0wJuRWFydBkQIAPxbupRHSN43v0HpbqQHD_DwAYeU,10559
|
|
1004
1004
|
cirq/testing/equivalent_basis_map.py,sha256=y9OlbBOWn-AC7l5x4iLfq5T4q8SxaWX_a-__QjL8_p0,2633
|
|
1005
1005
|
cirq/testing/equivalent_basis_map_test.py,sha256=uJ4Uxa7Dmvvgh_FX65jaXXtfTU8afigPg7X7LyI88fs,1503
|
|
1006
1006
|
cirq/testing/equivalent_repr_eval.py,sha256=vM8M9j-kVoxMg5BA1BCfZ3TgjFL5XthO7gXcau6BOak,3378
|
|
@@ -1050,7 +1050,7 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
1050
1050
|
cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1051
1051
|
cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1052
1052
|
cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1053
|
-
cirq/transformers/__init__.py,sha256=
|
|
1053
|
+
cirq/transformers/__init__.py,sha256=XrTXxZxi1jhBjcsAe86xtzE5KGOQ_JIIpsyLKistz-g,7183
|
|
1054
1054
|
cirq/transformers/align.py,sha256=XmARu30-wwsWMB-3z0K8WJ7zyErrdsTtgXgMDm4co6A,3355
|
|
1055
1055
|
cirq/transformers/align_test.py,sha256=AI26PxERbtJDfjKtoz17xVAKn6TSr-9pyImqfr5LJWc,7686
|
|
1056
1056
|
cirq/transformers/drop_empty_moments.py,sha256=j7zAoEsPs9JQ_zYpQX2yEvfiViDiYejnaOJ9GsXNbx4,1548
|
|
@@ -1083,6 +1083,8 @@ cirq/transformers/randomized_measurements.py,sha256=J4c9ZwYRDJ2_X_QzXWds4Qe0t9ZL
|
|
|
1083
1083
|
cirq/transformers/randomized_measurements_test.py,sha256=wQ8YXZv-pifnpKUdazSUvgRd3UNC9vaom08IxSGww9Q,2781
|
|
1084
1084
|
cirq/transformers/stratify.py,sha256=jfZEQuKv1YT8RdtcbGNsUNp4cs0WzZoiet-e5zwfLTc,10483
|
|
1085
1085
|
cirq/transformers/stratify_test.py,sha256=17ic2VAUPEGuPG2o5j98yDxQ2j2J_PN3EsPsfh5xwUk,15220
|
|
1086
|
+
cirq/transformers/symbolize.py,sha256=1YE-SMa6iR_YTGiKll0iZXp5uuBTOpSVF_UQts6DwVA,3977
|
|
1087
|
+
cirq/transformers/symbolize_test.py,sha256=bMQhtvt301uKyQH3tAM_wwVjBmPSZAqGpQH3p-DK5NE,2207
|
|
1086
1088
|
cirq/transformers/synchronize_terminal_measurements.py,sha256=uh3u53xLjQLyZvh6KY-oOk_i6j8VveMeOi_zGdi748I,3856
|
|
1087
1089
|
cirq/transformers/synchronize_terminal_measurements_test.py,sha256=vBO2LosBIDbjSXb61zt9k-AvS1M5u-Z13hqS6WaSZn0,7822
|
|
1088
1090
|
cirq/transformers/tag_transformers.py,sha256=7Y5w6sKjT5Ccevwu3EysSMLZ4mZvW9jM2wcAFDqBOnU,3510
|
|
@@ -1182,15 +1184,15 @@ cirq/value/probability_test.py,sha256=TyomoRJ97eO0Wcmzc0Dlm7_iqFFTgKetnTwYcbvhL4
|
|
|
1182
1184
|
cirq/value/product_state.py,sha256=C72NlKOkHXhlAeh6Zz2uO1JzZD1p-E67RhU2Hws_8aw,9026
|
|
1183
1185
|
cirq/value/product_state_test.py,sha256=-xEbZ7TCPvkBcveKvDO6FgbPzvqdQCuZndFZK7Gwwjs,5945
|
|
1184
1186
|
cirq/value/random_state.py,sha256=aJ2czSgM7Oiy4lrL4QPWirZy3o7C5MdKn8TDKR-aBVw,2063
|
|
1185
|
-
cirq/value/random_state_test.py,sha256=
|
|
1186
|
-
cirq/value/timestamp.py,sha256=
|
|
1187
|
-
cirq/value/timestamp_test.py,sha256=
|
|
1187
|
+
cirq/value/random_state_test.py,sha256=jfwVpo8Aos4QCGI1Tj_UHj0EJo1zKoD4YkZBroxzyCE,1358
|
|
1188
|
+
cirq/value/timestamp.py,sha256=nVAbM4PaAqu9a67u1wRewcOPC_S_-wn_3dedba20qUc,3688
|
|
1189
|
+
cirq/value/timestamp_test.py,sha256=lewJmgbIclbeKZ-_lbP51yr2BJgTKWzTQlvxy80r_2w,4146
|
|
1188
1190
|
cirq/value/type_alias.py,sha256=bmKOnIIiHbjU4x62QBxAPyvdzsyv9fGyMEBz_ivwBo8,1128
|
|
1189
1191
|
cirq/value/value_equality_attr.py,sha256=ZaCd8VW36yKENuBlmxjbdUp8NZa9wlegJqnE9vTN7G0,10545
|
|
1190
1192
|
cirq/value/value_equality_attr_test.py,sha256=7CO1U7ct4IeloutMygx5SBrQQu9FffhORI0K3eB2-cA,6520
|
|
1191
1193
|
cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
|
|
1192
1194
|
cirq/vis/density_matrix.py,sha256=8jadiGKgOG86llpgCahDcBJnWw0IpCooWWREJcNGXP4,4819
|
|
1193
|
-
cirq/vis/density_matrix_test.py,sha256=
|
|
1195
|
+
cirq/vis/density_matrix_test.py,sha256=gsCjGjWVsAgyEdliFqaGKuEWZSwLH-JP0unZ2D7XxYk,7045
|
|
1194
1196
|
cirq/vis/heatmap.py,sha256=zQi8LqyZZUFXKKAzFgyFWPoo5MK51D126ODIqRFhtjg,17765
|
|
1195
1197
|
cirq/vis/heatmap_test.py,sha256=6CEVTaS6jfpdE7EhJIs7D_AXclA0pS_calDAHx0gW2Q,20550
|
|
1196
1198
|
cirq/vis/histogram.py,sha256=Zo4JCkQm7zNqUmae9e4hYd0fFcEY__TXaGl5mNkG-5M,5107
|
|
@@ -1201,25 +1203,25 @@ cirq/vis/vis_utils.py,sha256=CsNHb9vMBF9UjxZ2k5XqMESbATOx0FXhWAwxFbq-9pQ,1239
|
|
|
1201
1203
|
cirq/vis/vis_utils_test.py,sha256=V_41sZlIRzuvmhk_wgDyQl6XyXzEOTSr9CmXWzxnD34,947
|
|
1202
1204
|
cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
|
|
1203
1205
|
cirq/work/collector.py,sha256=UqvhkMJm4fl4M_Xhc0xI2xc7FlVmMRDwKrQ6N6v-Icc,7870
|
|
1204
|
-
cirq/work/collector_test.py,sha256=
|
|
1206
|
+
cirq/work/collector_test.py,sha256=Vz41CZUvBhp4dKb_V6jW4RegAARQEGt7D5yBMPTSv5s,4968
|
|
1205
1207
|
cirq/work/observable_grouping.py,sha256=Nx-oeih6fCDVxux3E3b6_Q4xDBJaEhzujc9Y2xYX8uY,3492
|
|
1206
1208
|
cirq/work/observable_grouping_test.py,sha256=NzTPw6PD0-jvRRsGj4Q1kmZRj68I9SXbKR_PBr7OZAM,5875
|
|
1207
|
-
cirq/work/observable_measurement.py,sha256=
|
|
1208
|
-
cirq/work/observable_measurement_data.py,sha256=
|
|
1209
|
+
cirq/work/observable_measurement.py,sha256=Y6cl2IJSRoMxdhgbJyMeRoqEJh5aLwDvS61ZD9NkizQ,28364
|
|
1210
|
+
cirq/work/observable_measurement_data.py,sha256=kQxXJaZqU2seYrQ6Zt58XgWC7CZKa7Ws20nYcK41v5w,21195
|
|
1209
1211
|
cirq/work/observable_measurement_data_test.py,sha256=vI_SMbG4riMu0XD0tN9d_Kbq2u73k6kxTWU6Vx_tfOI,19696
|
|
1210
|
-
cirq/work/observable_measurement_test.py,sha256=
|
|
1212
|
+
cirq/work/observable_measurement_test.py,sha256=5nqIYbHcF5AFSWQVDG9A05eyg55mB36n-Cgly_ldI2Q,21046
|
|
1211
1213
|
cirq/work/observable_readout_calibration.py,sha256=XM8pY3lAJqwQSuCqVDhx4P2XeDzk-QC2nXMVlhlDz5s,1921
|
|
1212
1214
|
cirq/work/observable_readout_calibration_test.py,sha256=5XpRIP3VQ1EGtbvnOetElWHIDpKv6d086eyHtAxDeh0,1849
|
|
1213
|
-
cirq/work/observable_settings.py,sha256
|
|
1214
|
-
cirq/work/observable_settings_test.py,sha256=
|
|
1215
|
+
cirq/work/observable_settings.py,sha256=-FTSGTT_Dn-uC619zJMO_F_PJc8Qi3FRmT4TzaKU61Q,6744
|
|
1216
|
+
cirq/work/observable_settings_test.py,sha256=i4BMv74RT_32QPuf8W7pbAFygq_hJtwjUVfaYEglris,4337
|
|
1215
1217
|
cirq/work/pauli_sum_collector.py,sha256=5Ld5nOS6qe5a9ZZzx7rOinFC78FovWpbObMcPg61lFY,4250
|
|
1216
|
-
cirq/work/pauli_sum_collector_test.py,sha256=
|
|
1218
|
+
cirq/work/pauli_sum_collector_test.py,sha256=PG8rO_XyD21Z4pjcWGA3MLgcE8Nvy0H2iDfX6TQZ9D8,2407
|
|
1217
1219
|
cirq/work/sampler.py,sha256=b7O3B8bc77KQb8ReLx7qeF8owP1Qwb5_I-RwC6-M_C8,19118
|
|
1218
|
-
cirq/work/sampler_test.py,sha256=
|
|
1220
|
+
cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
|
|
1219
1221
|
cirq/work/zeros_sampler.py,sha256=vHCfqkXmUcPkaDuKHlY-UQ71dUHVroEtm_XW51mZpHs,2390
|
|
1220
1222
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1221
|
-
cirq_core-1.6.0.
|
|
1222
|
-
cirq_core-1.6.0.
|
|
1223
|
-
cirq_core-1.6.0.
|
|
1224
|
-
cirq_core-1.6.0.
|
|
1225
|
-
cirq_core-1.6.0.
|
|
1223
|
+
cirq_core-1.6.0.dev20250517012327.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1224
|
+
cirq_core-1.6.0.dev20250517012327.dist-info/METADATA,sha256=cXxICm9cyeqhPURTPuLwSApTst-cCGk3X4ZI0aHO8oY,4857
|
|
1225
|
+
cirq_core-1.6.0.dev20250517012327.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
1226
|
+
cirq_core-1.6.0.dev20250517012327.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1227
|
+
cirq_core-1.6.0.dev20250517012327.dist-info/RECORD,,
|
{cirq_core-1.6.0.dev20250516060316.dist-info → cirq_core-1.6.0.dev20250517012327.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|