cirq-core 1.7.0.dev20250819195403__py3-none-any.whl → 1.7.0.dev20250820205919__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/experiments/z_phase_calibration_test.py +8 -7
- cirq/interop/quirk/cells/arithmetic_cells.py +1 -1
- cirq/interop/quirk/cells/cell_test.py +5 -5
- cirq/interop/quirk/cells/composite_cell_test.py +5 -3
- cirq/interop/quirk/cells/control_cells.py +2 -2
- cirq/interop/quirk/cells/input_cells.py +3 -3
- cirq/interop/quirk/cells/input_rotation_cells.py +2 -2
- cirq/interop/quirk/cells/swap_cell.py +2 -2
- cirq/interop/quirk/cells/testing.py +1 -1
- cirq/interop/quirk/url_to_circuit.py +2 -2
- cirq/interop/quirk/url_to_circuit_test.py +11 -11
- cirq/linalg/decompositions.py +1 -1
- cirq/linalg/decompositions_test.py +52 -50
- cirq/linalg/diagonalize_test.py +2 -2
- cirq/linalg/predicates.py +1 -1
- cirq/linalg/predicates_test.py +24 -24
- cirq/linalg/transformations.py +6 -4
- cirq/neutral_atoms/neutral_atom_devices.py +1 -1
- cirq/ops/classically_controlled_operation.py +2 -2
- cirq/ops/clifford_gate.py +1 -1
- cirq/ops/common_channels_test.py +1 -1
- cirq/ops/common_gates.py +2 -2
- cirq/ops/controlled_operation.py +2 -2
- cirq/ops/controlled_operation_test.py +17 -16
- cirq/ops/dense_pauli_string_test.py +41 -37
- cirq/ops/eigen_gate_test.py +0 -7
- cirq/ops/gateset.py +3 -3
- cirq/ops/gateset_test.py +23 -23
- cirq/ops/linear_combinations.py +1 -1
- cirq/ops/linear_combinations_test.py +103 -89
- cirq/ops/matrix_gates_test.py +31 -31
- cirq/ops/measure_util_test.py +11 -10
- cirq/ops/measurement_gate_test.py +23 -22
- cirq/ops/pauli_gates.py +1 -1
- cirq/ops/pauli_measurement_gate_test.py +12 -12
- cirq/ops/pauli_string_phasor_test.py +45 -40
- cirq/ops/pauli_string_raw_types_test.py +5 -4
- cirq/ops/pauli_string_test.py +190 -118
- cirq/ops/permutation_gate.py +1 -1
- cirq/ops/raw_types.py +3 -4
- cirq/ops/raw_types_test.py +1 -1
- cirq/ops/three_qubit_gates.py +3 -3
- cirq/protocols/act_on_protocol.py +1 -1
- cirq/protocols/act_on_protocol_test.py +4 -4
- cirq/protocols/apply_channel_protocol_test.py +19 -18
- cirq/protocols/apply_mixture_protocol_test.py +20 -19
- cirq/protocols/apply_unitary_protocol_test.py +31 -23
- cirq/protocols/approximate_equality_protocol_test.py +22 -16
- cirq/protocols/circuit_diagram_info_protocol.py +4 -4
- cirq/protocols/commutes_protocol_test.py +4 -4
- {cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.dist-info}/METADATA +1 -1
- {cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.dist-info}/RECORD +57 -57
- {cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.dist-info}/WHEEL +0 -0
- {cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.dist-info}/top_level.txt +0 -0
|
@@ -25,7 +25,7 @@ import sympy
|
|
|
25
25
|
import cirq
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
def test_approx_eq_primitives():
|
|
28
|
+
def test_approx_eq_primitives() -> None:
|
|
29
29
|
assert not cirq.approx_eq(1, 2, atol=1e-01)
|
|
30
30
|
assert cirq.approx_eq(1.0, 1.0 + 1e-10, atol=1e-09)
|
|
31
31
|
assert not cirq.approx_eq(1.0, 1.0 + 1e-10, atol=1e-11)
|
|
@@ -40,7 +40,7 @@ def test_approx_eq_primitives():
|
|
|
40
40
|
assert not cirq.approx_eq('1', 1, atol=1e-3)
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
def test_approx_eq_mixed_primitives():
|
|
43
|
+
def test_approx_eq_mixed_primitives() -> None:
|
|
44
44
|
assert cirq.approx_eq(complex(1, 1e-10), 1, atol=1e-09)
|
|
45
45
|
assert not cirq.approx_eq(complex(1, 1e-4), 1, atol=1e-09)
|
|
46
46
|
assert cirq.approx_eq(complex(1, 1e-10), 1.0, atol=1e-09)
|
|
@@ -49,7 +49,7 @@ def test_approx_eq_mixed_primitives():
|
|
|
49
49
|
assert not cirq.approx_eq(1, 1.0 + 1e-10, atol=1e-11)
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
def test_numpy_dtype_compatibility():
|
|
52
|
+
def test_numpy_dtype_compatibility() -> None:
|
|
53
53
|
i_a, i_b, i_c = 0, 1, 2
|
|
54
54
|
i_types = [np.intc, np.intp, np.int8, np.int16, np.int32, np.int64]
|
|
55
55
|
for i_type in i_types:
|
|
@@ -77,18 +77,18 @@ def test_numpy_dtype_compatibility():
|
|
|
77
77
|
assert not cirq.approx_eq(c_type(c_a), c_type(c_c), atol=1e-8)
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
def test_fractions_compatibility():
|
|
80
|
+
def test_fractions_compatibility() -> None:
|
|
81
81
|
assert cirq.approx_eq(Fraction(0), Fraction(1, int(1e10)), atol=1e-9)
|
|
82
82
|
assert not cirq.approx_eq(Fraction(0), Fraction(1, int(1e7)), atol=1e-9)
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
def test_decimal_compatibility():
|
|
85
|
+
def test_decimal_compatibility() -> None:
|
|
86
86
|
assert cirq.approx_eq(Decimal('0'), Decimal('0.0000000001'), atol=1e-9)
|
|
87
87
|
assert not cirq.approx_eq(Decimal('0'), Decimal('0.00000001'), atol=1e-9)
|
|
88
88
|
assert not cirq.approx_eq(Decimal('NaN'), Decimal('-Infinity'), atol=1e-9)
|
|
89
89
|
|
|
90
90
|
|
|
91
|
-
def test_approx_eq_mixed_types():
|
|
91
|
+
def test_approx_eq_mixed_types() -> None:
|
|
92
92
|
assert cirq.approx_eq(np.float32(1), 1.0 + 1e-10, atol=1e-9)
|
|
93
93
|
assert cirq.approx_eq(np.float64(1), np.complex64(1 + 1e-8j), atol=1e-4)
|
|
94
94
|
assert cirq.approx_eq(np.uint8(1), np.complex64(1 + 1e-8j), atol=1e-4)
|
|
@@ -103,7 +103,7 @@ def test_approx_eq_mixed_types():
|
|
|
103
103
|
assert not cirq.approx_eq(np.complex64(1e-5j), Decimal('0.001'), atol=1e-4)
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
def test_approx_eq_special_numerics():
|
|
106
|
+
def test_approx_eq_special_numerics() -> None:
|
|
107
107
|
assert not cirq.approx_eq(float('nan'), 0, atol=0.0)
|
|
108
108
|
assert not cirq.approx_eq(float('nan'), float('nan'), atol=0.0)
|
|
109
109
|
assert not cirq.approx_eq(float('inf'), float('-inf'), atol=0.0)
|
|
@@ -123,6 +123,9 @@ class X(Number):
|
|
|
123
123
|
return NotImplemented
|
|
124
124
|
return self.val == other.val
|
|
125
125
|
|
|
126
|
+
def __hash__(self):
|
|
127
|
+
return hash(self.val) # pragma: no cover
|
|
128
|
+
|
|
126
129
|
|
|
127
130
|
class Y(Number):
|
|
128
131
|
"""Subtype of Number that cannot fallback to __eq__"""
|
|
@@ -130,15 +133,18 @@ class Y(Number):
|
|
|
130
133
|
def __init__(self):
|
|
131
134
|
pass
|
|
132
135
|
|
|
136
|
+
def __hash__(self):
|
|
137
|
+
return hash(complex(self)) # pragma: no cover
|
|
138
|
+
|
|
133
139
|
|
|
134
|
-
def test_approx_eq_number_uses__eq__():
|
|
140
|
+
def test_approx_eq_number_uses__eq__() -> None:
|
|
135
141
|
assert cirq.approx_eq(C(0), C(0), atol=0.0)
|
|
136
142
|
assert not cirq.approx_eq(X(0), X(1), atol=0.0)
|
|
137
143
|
assert not cirq.approx_eq(X(0), 0, atol=0.0)
|
|
138
144
|
assert not cirq.approx_eq(Y(), 1, atol=0.0)
|
|
139
145
|
|
|
140
146
|
|
|
141
|
-
def test_approx_eq_tuple():
|
|
147
|
+
def test_approx_eq_tuple() -> None:
|
|
142
148
|
assert cirq.approx_eq((1, 1), (1, 1), atol=0.0)
|
|
143
149
|
assert not cirq.approx_eq((1, 1), (1, 1, 1), atol=0.0)
|
|
144
150
|
assert not cirq.approx_eq((1, 1), (1,), atol=0.0)
|
|
@@ -146,7 +152,7 @@ def test_approx_eq_tuple():
|
|
|
146
152
|
assert not cirq.approx_eq((1.1, 1.2, 1.3), (1, 1, 1), atol=0.2)
|
|
147
153
|
|
|
148
154
|
|
|
149
|
-
def test_approx_eq_list():
|
|
155
|
+
def test_approx_eq_list() -> None:
|
|
150
156
|
assert cirq.approx_eq([], [], atol=0.0)
|
|
151
157
|
assert not cirq.approx_eq([], [[]], atol=0.0)
|
|
152
158
|
assert cirq.approx_eq([1, 1], [1, 1], atol=0.0)
|
|
@@ -156,7 +162,7 @@ def test_approx_eq_list():
|
|
|
156
162
|
assert not cirq.approx_eq([1.1, 1.2, 1.3], [1, 1, 1], atol=0.2)
|
|
157
163
|
|
|
158
164
|
|
|
159
|
-
def test_approx_eq_symbol():
|
|
165
|
+
def test_approx_eq_symbol() -> None:
|
|
160
166
|
q = cirq.GridQubit(0, 0)
|
|
161
167
|
s = sympy.Symbol("s")
|
|
162
168
|
t = sympy.Symbol("t")
|
|
@@ -184,14 +190,14 @@ def test_approx_eq_symbol():
|
|
|
184
190
|
cirq.approx_eq(symbol_1, symbol_3, atol=0.2)
|
|
185
191
|
|
|
186
192
|
|
|
187
|
-
def test_approx_eq_default():
|
|
193
|
+
def test_approx_eq_default() -> None:
|
|
188
194
|
assert cirq.approx_eq(1.0, 1.0 + 1e-9)
|
|
189
195
|
assert cirq.approx_eq(1.0, 1.0 - 1e-9)
|
|
190
196
|
assert not cirq.approx_eq(1.0, 1.0 + 1e-7)
|
|
191
197
|
assert not cirq.approx_eq(1.0, 1.0 - 1e-7)
|
|
192
198
|
|
|
193
199
|
|
|
194
|
-
def test_approx_eq_iterables():
|
|
200
|
+
def test_approx_eq_iterables() -> None:
|
|
195
201
|
def gen_1_1():
|
|
196
202
|
yield 1
|
|
197
203
|
yield 1
|
|
@@ -221,7 +227,7 @@ class B:
|
|
|
221
227
|
return cirq.approx_eq(self.val, other, atol=atol)
|
|
222
228
|
|
|
223
229
|
|
|
224
|
-
def test_approx_eq_supported():
|
|
230
|
+
def test_approx_eq_supported() -> None:
|
|
225
231
|
assert cirq.approx_eq(A(0.0), A(0.1), atol=0.1)
|
|
226
232
|
assert not cirq.approx_eq(A(0.0), A(0.1), atol=0.0)
|
|
227
233
|
assert cirq.approx_eq(B(0.0), 0.1, atol=0.1)
|
|
@@ -238,7 +244,7 @@ class C:
|
|
|
238
244
|
return self.val == other.val
|
|
239
245
|
|
|
240
246
|
|
|
241
|
-
def test_approx_eq_uses__eq__():
|
|
247
|
+
def test_approx_eq_uses__eq__() -> None:
|
|
242
248
|
assert cirq.approx_eq(C(0), C(0), atol=0.0)
|
|
243
249
|
assert not cirq.approx_eq(C(1), C(2), atol=0.0)
|
|
244
250
|
assert cirq.approx_eq([C(0)], [C(0)], atol=0.0)
|
|
@@ -247,7 +253,7 @@ def test_approx_eq_uses__eq__():
|
|
|
247
253
|
assert cirq.approx_eq(0, complex(0, 0), atol=0.0)
|
|
248
254
|
|
|
249
255
|
|
|
250
|
-
def test_approx_eq_types_mismatch():
|
|
256
|
+
def test_approx_eq_types_mismatch() -> None:
|
|
251
257
|
assert not cirq.approx_eq(0, A(0), atol=0.0)
|
|
252
258
|
assert not cirq.approx_eq(A(0), 0, atol=0.0)
|
|
253
259
|
assert not cirq.approx_eq(B(0), A(0), atol=0.0)
|
|
@@ -16,7 +16,7 @@ from __future__ import annotations
|
|
|
16
16
|
|
|
17
17
|
import re
|
|
18
18
|
from fractions import Fraction
|
|
19
|
-
from typing import Any, Iterable, overload, Sequence, TYPE_CHECKING, TypeVar, Union
|
|
19
|
+
from typing import Any, Iterable, overload, Self, Sequence, TYPE_CHECKING, TypeVar, Union
|
|
20
20
|
|
|
21
21
|
import numpy as np
|
|
22
22
|
import sympy
|
|
@@ -76,7 +76,7 @@ class CircuitDiagramInfo:
|
|
|
76
76
|
self.exponent_qubit_index = exponent_qubit_index
|
|
77
77
|
self.auto_exponent_parens = auto_exponent_parens
|
|
78
78
|
|
|
79
|
-
def with_wire_symbols(self, new_wire_symbols: Iterable[str]):
|
|
79
|
+
def with_wire_symbols(self, new_wire_symbols: Iterable[str]) -> CircuitDiagramInfo:
|
|
80
80
|
return CircuitDiagramInfo(
|
|
81
81
|
wire_symbols=new_wire_symbols,
|
|
82
82
|
exponent=self.exponent,
|
|
@@ -300,7 +300,7 @@ class CircuitDiagramInfoArgs:
|
|
|
300
300
|
return str(radians)
|
|
301
301
|
return repr(radians)
|
|
302
302
|
|
|
303
|
-
def copy(self):
|
|
303
|
+
def copy(self) -> Self:
|
|
304
304
|
return self.__class__(
|
|
305
305
|
known_qubits=self.known_qubits,
|
|
306
306
|
known_qubit_count=self.known_qubit_count,
|
|
@@ -311,7 +311,7 @@ class CircuitDiagramInfoArgs:
|
|
|
311
311
|
transpose=self.transpose,
|
|
312
312
|
)
|
|
313
313
|
|
|
314
|
-
def with_args(self, **kwargs):
|
|
314
|
+
def with_args(self, **kwargs) -> Self:
|
|
315
315
|
args = self.copy()
|
|
316
316
|
for arg_name, val in kwargs.items():
|
|
317
317
|
setattr(args, arg_name, val)
|
|
@@ -21,7 +21,7 @@ import sympy
|
|
|
21
21
|
import cirq
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
def test_commutes_on_matrices():
|
|
24
|
+
def test_commutes_on_matrices() -> None:
|
|
25
25
|
I, X, Y, Z = (cirq.unitary(A) for A in (cirq.I, cirq.X, cirq.Y, cirq.Z))
|
|
26
26
|
IX, IY = (np.kron(I, A) for A in (X, Y))
|
|
27
27
|
XI, YI, ZI = (np.kron(A, I) for A in (X, Y, Z))
|
|
@@ -38,14 +38,14 @@ def test_commutes_on_matrices():
|
|
|
38
38
|
assert cirq.commutes(A, B)
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
def test_commutes_on_gates_and_gate_operations():
|
|
41
|
+
def test_commutes_on_gates_and_gate_operations() -> None:
|
|
42
42
|
X, Y, Z = tuple(cirq.unitary(A) for A in (cirq.X, cirq.Y, cirq.Z))
|
|
43
43
|
XGate, YGate, ZGate = (cirq.MatrixGate(A) for A in (X, Y, Z))
|
|
44
44
|
XXGate, YYGate, ZZGate = (cirq.MatrixGate(cirq.kron(A, A)) for A in (X, Y, Z))
|
|
45
45
|
a, b = cirq.LineQubit.range(2)
|
|
46
46
|
for A in (XGate, YGate, ZGate):
|
|
47
47
|
assert cirq.commutes(A, A)
|
|
48
|
-
assert A._commutes_on_qids_(a, A, atol=1e-8) is NotImplemented
|
|
48
|
+
assert A._commutes_on_qids_([a], A, atol=1e-8) is NotImplemented
|
|
49
49
|
with pytest.raises(TypeError):
|
|
50
50
|
cirq.commutes(A(a), A)
|
|
51
51
|
with pytest.raises(TypeError):
|
|
@@ -91,7 +91,7 @@ def test_commutes_on_gates_and_gate_operations():
|
|
|
91
91
|
assert cirq.commutes(XGate(a), 'Gate', default='default') == 'default'
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
def test_operation_commutes_using_overlap_and_unitary():
|
|
94
|
+
def test_operation_commutes_using_overlap_and_unitary() -> None:
|
|
95
95
|
class CustomCnotGate(cirq.Gate):
|
|
96
96
|
def num_qubits(self) -> int:
|
|
97
97
|
return 2
|
{cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.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.dev20250820205919
|
|
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.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.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=OjghmZLlpJmpwG7pt5CqjwsbMHO6y7_tYp-EoJa0dZg,1206
|
|
8
|
+
cirq/_version_test.py,sha256=4SayG4s3UHq3I3JBZ6QGwcKIFK0wercVLoT-B3tOrN0,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
|
|
@@ -220,31 +220,31 @@ cirq/experiments/xeb_sampling_test.py,sha256=wVFcyAoErAC6tRQMA6AJ1MrTT1DGwW_0PuK
|
|
|
220
220
|
cirq/experiments/xeb_simulation.py,sha256=HqUb7d1XIgp0GEThIEHfDEsrh3kUee9pFS7k1vFWnIA,5089
|
|
221
221
|
cirq/experiments/xeb_simulation_test.py,sha256=UAm6qCTJWa9o5Nwr9LwvJ8fmlNvg6IQs8gsraasK2I8,5625
|
|
222
222
|
cirq/experiments/z_phase_calibration.py,sha256=0W2VWV6SPWwQnPVJqhrxih0CLlR1SNRJU_CZ48C5PHo,15018
|
|
223
|
-
cirq/experiments/z_phase_calibration_test.py,sha256=
|
|
223
|
+
cirq/experiments/z_phase_calibration_test.py,sha256=0no2wWui8Ha5hKDiFXzMqEdv3ghY6zN3mpCLYYE9DXM,9178
|
|
224
224
|
cirq/experiments/benchmarking/__init__.py,sha256=oAom0qrtLKb8NqUcBJWiKd6chwFE2j6jVLI8_iNivzA,723
|
|
225
225
|
cirq/experiments/benchmarking/parallel_xeb.py,sha256=xC7BOr9cDTGshRNG4tgXAXXH4VuMntIBYjp_PQZW5Tc,26117
|
|
226
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
|
-
cirq/interop/quirk/url_to_circuit.py,sha256=
|
|
230
|
-
cirq/interop/quirk/url_to_circuit_test.py,sha256=
|
|
229
|
+
cirq/interop/quirk/url_to_circuit.py,sha256=SOr-U5C_oOJoJ2XCM2QkEeUq3CDAugj7Q4_dlrHTURM,14089
|
|
230
|
+
cirq/interop/quirk/url_to_circuit_test.py,sha256=0soI7pem2vbZ0orCQLtXV1YXtYfSjIOw3XflGppOKlU,26421
|
|
231
231
|
cirq/interop/quirk/cells/__init__.py,sha256=qFnhZj9KKX1PFDSK3xEiJA5aHzOF1UUgoICJTeWHINM,1497
|
|
232
232
|
cirq/interop/quirk/cells/all_cells.py,sha256=FcmQqufelhW-LWPXbrKJsbFYtVNm44Jo1xH8k0RjL-0,2633
|
|
233
|
-
cirq/interop/quirk/cells/arithmetic_cells.py,sha256=
|
|
233
|
+
cirq/interop/quirk/cells/arithmetic_cells.py,sha256=KCms0ME2VCvdmBOr4BKw2bGuDg0Ws5rcR3szH5VBnPI,13035
|
|
234
234
|
cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
|
|
235
235
|
cirq/interop/quirk/cells/cell.py,sha256=RUJm4fErnDBLNm-2GDoE2aKxOygOsFXo2TaGAb4uWHY,8365
|
|
236
|
-
cirq/interop/quirk/cells/cell_test.py,sha256=
|
|
236
|
+
cirq/interop/quirk/cells/cell_test.py,sha256=fI6B5kdKwcCX-yo9YVWomvTOSlqqwR91KkL0HmINM9s,2364
|
|
237
237
|
cirq/interop/quirk/cells/composite_cell.py,sha256=SuCoJ-Px2HEEuoGXeX5mecza13VYfLCzi7F1AMVuNBY,5240
|
|
238
|
-
cirq/interop/quirk/cells/composite_cell_test.py,sha256=
|
|
239
|
-
cirq/interop/quirk/cells/control_cells.py,sha256=
|
|
238
|
+
cirq/interop/quirk/cells/composite_cell_test.py,sha256=FGU-I6PouPJWGSD5qcnEGuVL4dL4Ib7Q3GkDP6751eE,5404
|
|
239
|
+
cirq/interop/quirk/cells/control_cells.py,sha256=ISXqZMEUS455lZjPrwVjwuSiwX79Lx-0qSNN9f2jpJM,5545
|
|
240
240
|
cirq/interop/quirk/cells/control_cells_test.py,sha256=87ZsBjuJIYqx6RJPf8tu9hKPju7WJM6QxENHlYFQ_Ek,4749
|
|
241
241
|
cirq/interop/quirk/cells/frequency_space_cells.py,sha256=OWkNeR8ssvuapsOLWmJytEexhf84TmFz-uKT97XZIJQ,1919
|
|
242
242
|
cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=BgXK4Dvt-WvvenmNL0wta410qZSthBxoPodkcyKn07s,1856
|
|
243
243
|
cirq/interop/quirk/cells/ignored_cells.py,sha256=AEZ7O4kQZgCkd_Uvn2TbQkofp2IHM3GdY9c-9E2wSpw,1415
|
|
244
244
|
cirq/interop/quirk/cells/ignored_cells_test.py,sha256=lbhDHO5YKQ7N2-s7sVww289BLE9aFCHY5QTLV121TXs,963
|
|
245
|
-
cirq/interop/quirk/cells/input_cells.py,sha256=
|
|
245
|
+
cirq/interop/quirk/cells/input_cells.py,sha256=Cb9XOFCtMIQ5eHqE5CM2aAafWafKd8n-QZweGgA30qk,2987
|
|
246
246
|
cirq/interop/quirk/cells/input_cells_test.py,sha256=Wcx7BvhZk0pgR_61VElw0y-0MhvJ2tQYHki0rvKyBhA,3576
|
|
247
|
-
cirq/interop/quirk/cells/input_rotation_cells.py,sha256=
|
|
247
|
+
cirq/interop/quirk/cells/input_rotation_cells.py,sha256=4ANzgjoW86WEwL9DT3uETwtzlnqqnhCyKoKFLmf5mr8,7390
|
|
248
248
|
cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=uYIkzwQioX9GxrKrEGgMAVn_OFnmqcT4nWPoK3NGLOQ,6410
|
|
249
249
|
cirq/interop/quirk/cells/measurement_cells.py,sha256=U3I8wEX5BVp8Rlg1MkQAwaRMJ6wl6KGC805RGMoSO8A,1526
|
|
250
250
|
cirq/interop/quirk/cells/measurement_cells_test.py,sha256=DFc5Do4ePN5dGSzmbkXCpAwJ8UTth031uhq9QqpIEKw,1618
|
|
@@ -256,9 +256,9 @@ cirq/interop/quirk/cells/scalar_cells.py,sha256=rHgoPJX3a9CGFAcjnJJMjc6xIsDTKdGJ
|
|
|
256
256
|
cirq/interop/quirk/cells/scalar_cells_test.py,sha256=FcH5qjfluiLfEgIxvQzU5y8bQMVKyc3f2cMeLF1yApA,1411
|
|
257
257
|
cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=v9BZKb4sCW7aVfddfdnDNoqmxbIL7FXnppyLp-4iqM0,4494
|
|
258
258
|
cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=lBsdOHF2fAZT8KoKlqaNczXN7om15v9nUIE6oG01wIU,5097
|
|
259
|
-
cirq/interop/quirk/cells/swap_cell.py,sha256=
|
|
259
|
+
cirq/interop/quirk/cells/swap_cell.py,sha256=1-tKp9hWuQSZtyEa3JuD0AsS1s5F9hy1Csxe-rIKiIo,2444
|
|
260
260
|
cirq/interop/quirk/cells/swap_cell_test.py,sha256=Qo8zFLruemnQbxEt0DtJO8QwKJ688zQvEZh648WVkQw,2389
|
|
261
|
-
cirq/interop/quirk/cells/testing.py,sha256=
|
|
261
|
+
cirq/interop/quirk/cells/testing.py,sha256=crjATbwkd9FekUIhbFRZa3mbGpg9EM0iIINyGiNz-ag,3304
|
|
262
262
|
cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58blHaWPCW9mJhU,4013
|
|
263
263
|
cirq/interop/quirk/cells/unsupported_cells.py,sha256=wMhcKqgEveQ5VWS4ItrWoj9uVG-rEjdFN6Tx3agAuyA,2878
|
|
264
264
|
cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
|
|
@@ -266,49 +266,49 @@ cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
|
|
|
266
266
|
cirq/linalg/__init__.py,sha256=k3hZ6NMJN9b9ExgzkoHG4W2SFVEpYf8ZCSmIkOtRBOU,4029
|
|
267
267
|
cirq/linalg/combinators.py,sha256=7V9oNSojc466NvOXyt4FMu50yDQ77iM5N4oZ37fV9tc,5347
|
|
268
268
|
cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
|
|
269
|
-
cirq/linalg/decompositions.py,sha256=
|
|
270
|
-
cirq/linalg/decompositions_test.py,sha256=
|
|
269
|
+
cirq/linalg/decompositions.py,sha256=qUgmm61cmoNZhOMji4q8kR8ki0SqBwU-Y8sR71mCA7Y,38562
|
|
270
|
+
cirq/linalg/decompositions_test.py,sha256=eUl-O-PaY_IVuznJLPKnthiAIM_mI1bkJZJGgp6xWkI,25896
|
|
271
271
|
cirq/linalg/diagonalize.py,sha256=3PpGmlI7CCkQS3JKr0AkgdHOZedXLniZkxmUtpCNQPk,10074
|
|
272
|
-
cirq/linalg/diagonalize_test.py,sha256=
|
|
272
|
+
cirq/linalg/diagonalize_test.py,sha256=4gpQ2MmjK9C8khX1LTR1hfXAdP7Hl8e5jf1UszbXTFs,9177
|
|
273
273
|
cirq/linalg/operator_spaces.py,sha256=jUU-OYL8Lnn58kbhLskDyhkBeXZXPXVmR-hcIkq60JQ,4132
|
|
274
274
|
cirq/linalg/operator_spaces_test.py,sha256=9puH8uqMhWVF4QvJImX0WvcxsxBMvvroUZUSNNvaTDQ,10729
|
|
275
|
-
cirq/linalg/predicates.py,sha256=
|
|
276
|
-
cirq/linalg/predicates_test.py,sha256=
|
|
275
|
+
cirq/linalg/predicates.py,sha256=V-zUR07_rEBjXFPgif6EYrEHM6uDUzPOIcZTo0HguYE,12172
|
|
276
|
+
cirq/linalg/predicates_test.py,sha256=D_0TSF787MluJBJ_WctBPz8SsGBJesYgndCUISniw3Q,21911
|
|
277
277
|
cirq/linalg/tolerance.py,sha256=4TZ_BjldOhPuP2CwYvMdzHCc9Lzfwi9ZkndSKObyyBg,1893
|
|
278
278
|
cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
|
|
279
|
-
cirq/linalg/transformations.py,sha256=
|
|
279
|
+
cirq/linalg/transformations.py,sha256=vJcgYa_KxYacPgLHA_Kp7AfWMamB_73pxD0y4FJVcuQ,32588
|
|
280
280
|
cirq/linalg/transformations_test.py,sha256=2HdnYDzNDq7djdPByQmRphKkpy6k3rK9nC8uZfDlSZs,26462
|
|
281
281
|
cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
|
|
282
282
|
cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
|
|
283
283
|
cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
|
|
284
|
-
cirq/neutral_atoms/neutral_atom_devices.py,sha256=
|
|
284
|
+
cirq/neutral_atoms/neutral_atom_devices.py,sha256=9GP2IsrivvAoqnoEe-jkZ4Ef7v-zylwAr7jlAFkdEIo,1409
|
|
285
285
|
cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
|
|
286
286
|
cirq/ops/arithmetic_operation.py,sha256=FO2ne5ZHIcUCJySgOC60UApfDtfVBaZqlrhM46f7-34,10051
|
|
287
287
|
cirq/ops/arithmetic_operation_test.py,sha256=F5fPQF_sRWi8qyP_SgDzJ8kfX0jUVMj59_VOPpbXH_0,4938
|
|
288
288
|
cirq/ops/boolean_hamiltonian.py,sha256=x25fraM9NNs-XzDKDl2AZ1AMpkVovfe-dNm_0wOolyI,14927
|
|
289
289
|
cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
|
|
290
|
-
cirq/ops/classically_controlled_operation.py,sha256=
|
|
290
|
+
cirq/ops/classically_controlled_operation.py,sha256=Oro9yC5-2p7_O5IpHz-qHAmnry79qOfiRL-BKmVbnpQ,10290
|
|
291
291
|
cirq/ops/classically_controlled_operation_test.py,sha256=OedFFoAwS4WnHKG58xgjhbKFgKebhYyP8I7AU4a0m9k,50425
|
|
292
|
-
cirq/ops/clifford_gate.py,sha256=
|
|
292
|
+
cirq/ops/clifford_gate.py,sha256=F4RiKZcf8PT1oUR0PfXPrIgDUcr9FJkwppPW39dpM2M,40078
|
|
293
293
|
cirq/ops/clifford_gate_test.py,sha256=nuIGDqc7AWf5KJY3JJSe4mt8egLlcyuf5oorX_aBdsU,41268
|
|
294
294
|
cirq/ops/common_channels.py,sha256=ZZa2JCyPtrKfGhcAGCUUzA4qym8S9isKs-xs-TEkhKs,37022
|
|
295
|
-
cirq/ops/common_channels_test.py,sha256=
|
|
295
|
+
cirq/ops/common_channels_test.py,sha256=dPveO6j3qxmdRXaQhEIvj5vKRE0v3pQ9ICmjnSSbP0Q,30761
|
|
296
296
|
cirq/ops/common_gate_families.py,sha256=trK4ZXCKqYahZkyuwaAn-TcjUu7gmI9n9geO8PYiRGE,8606
|
|
297
297
|
cirq/ops/common_gate_families_test.py,sha256=SfIKolQhVIof0uOHljY1QKT9Tu_4WzUsoeCNR2jIOPg,5441
|
|
298
|
-
cirq/ops/common_gates.py,sha256=
|
|
298
|
+
cirq/ops/common_gates.py,sha256=luEk507wQgstyl15DUq0AtKsXYnJqX0Xei4hM5RFjaY,58239
|
|
299
299
|
cirq/ops/common_gates_test.py,sha256=IcUWxDTTTbis0efXz2Kn0zAdclp9R31fZAfCx3E-BOo,49758
|
|
300
300
|
cirq/ops/control_values.py,sha256=GrNi8YJZSZDCl8Su6Ocimvd1R1SejFJjVu2thcJ8VLI,13346
|
|
301
301
|
cirq/ops/control_values_test.py,sha256=Wyn0nwtcpnJvcPVRHmFGb3PtYxvsbpluA5UbPrG7tIo,13067
|
|
302
302
|
cirq/ops/controlled_gate.py,sha256=3Hex9AdY6c_DedKoCqqpS4gx9rAgm9KZITbwUBXsoYg,13562
|
|
303
303
|
cirq/ops/controlled_gate_test.py,sha256=jmIOlCx8dC3VId4NynX1ZYy7s7tkLav_d-fjiIZyVh0,29308
|
|
304
|
-
cirq/ops/controlled_operation.py,sha256=
|
|
305
|
-
cirq/ops/controlled_operation_test.py,sha256=
|
|
304
|
+
cirq/ops/controlled_operation.py,sha256=KAbQGf6-AXm-DV9nk05S3sqJumOgvG9P6jO4Zx1gxec,13561
|
|
305
|
+
cirq/ops/controlled_operation_test.py,sha256=hTqK6R0so-ZmZLcqS9xQl39ekNZ82UVYPbhmfbbh6vg,16699
|
|
306
306
|
cirq/ops/dense_pauli_string.py,sha256=1TijNu1D2HIbbnwLbT_f546R2L4OCQtm1bKjqhno1Kg,24234
|
|
307
|
-
cirq/ops/dense_pauli_string_test.py,sha256=
|
|
307
|
+
cirq/ops/dense_pauli_string_test.py,sha256=Wh2YIpydze9GAxIDEPIo6YbdKxjvHLBoqAaVO-DqbmQ,22037
|
|
308
308
|
cirq/ops/diagonal_gate.py,sha256=HNMxcgKgfZ2ZcXGaPhcBp6yOwu_stpSN3_GtNeWnR5s,8909
|
|
309
309
|
cirq/ops/diagonal_gate_test.py,sha256=JRQWrL4cEYzVjwal-EewyIPgThUwLdrE6f9i7ifd6Rk,6319
|
|
310
310
|
cirq/ops/eigen_gate.py,sha256=OoUpOwHw6VZ2CpH0Qb-eQLD4c-cjj8wFwBr8NEc7C0g,17788
|
|
311
|
-
cirq/ops/eigen_gate_test.py,sha256=
|
|
311
|
+
cirq/ops/eigen_gate_test.py,sha256=k48rIbYKUErElQBfiV8cNGcKRnO6_vSJtghDxm-rflA,16772
|
|
312
312
|
cirq/ops/fourier_transform.py,sha256=JMledJB0tPjLlIlG9bfapJSqass94rXkAheXragQxq8,7455
|
|
313
313
|
cirq/ops/fourier_transform_test.py,sha256=sX5TfZd9-n1WTyZcqOQ0x6yyI8k6rasywijMo3bc1ls,6426
|
|
314
314
|
cirq/ops/fsim_gate.py,sha256=Qs7FLsNXR7K2jNVZ8I9o9YLvOb6cC6iBnAvZAHERNk0,20037
|
|
@@ -317,8 +317,8 @@ cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,108
|
|
|
317
317
|
cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
|
|
318
318
|
cirq/ops/gate_operation.py,sha256=PowWX9XcX_xHXt_7Ccg8pqqQwiJtN3qSfbtlKJEyXx4,13321
|
|
319
319
|
cirq/ops/gate_operation_test.py,sha256=4QwWxCjGXNM__6QGw1kYSbBMh_4783jBZVBJD1ERGPk,18020
|
|
320
|
-
cirq/ops/gateset.py,sha256=
|
|
321
|
-
cirq/ops/gateset_test.py,sha256=
|
|
320
|
+
cirq/ops/gateset.py,sha256=Ww5MwvIkV7Qr_uBFGowmyhvyCh4N5JjDevr4ucwZybg,21492
|
|
321
|
+
cirq/ops/gateset_test.py,sha256=oeJ0zLgknWxgW39_bc_8Ii_5_g5VNxiJWicZkkS-TaE,17651
|
|
322
322
|
cirq/ops/global_phase_op.py,sha256=GcERs4X5h5_at6tvJc8-AcM0cVsLCRPlpPkAWMINm54,5711
|
|
323
323
|
cirq/ops/global_phase_op_test.py,sha256=9BBnPZLLmBzHsMoRPMFTAShx87TJnhTLvvgLpHJF4wc,10721
|
|
324
324
|
cirq/ops/greedy_qubit_manager.py,sha256=UTd9cTRbl4GQmf6ai6zqVBn5TR3-Vg84jJu4AN-0cxc,4050
|
|
@@ -327,14 +327,14 @@ cirq/ops/identity.py,sha256=jWPE3jWLduXF5JgA0qol2blHXRvFUndClukG6nwGvUE,5862
|
|
|
327
327
|
cirq/ops/identity_test.py,sha256=doObedJYSIb2v_ZnsL1iBsaRnX8jn5ZriqV8eoOvBzw,8161
|
|
328
328
|
cirq/ops/kraus_channel.py,sha256=uSLq2AG72zbwzcbiEETFOAZ35KNR9U9KIFO31HYzLKA,5072
|
|
329
329
|
cirq/ops/kraus_channel_test.py,sha256=FhgCyCKa4bIgGc4yAQbqDKB80910TEVVWRknyyGbILg,4955
|
|
330
|
-
cirq/ops/linear_combinations.py,sha256=
|
|
331
|
-
cirq/ops/linear_combinations_test.py,sha256=
|
|
330
|
+
cirq/ops/linear_combinations.py,sha256=YNSEAMBhlacvVvXy3MS-36uKlv9By18IWfipG8VLNYk,39886
|
|
331
|
+
cirq/ops/linear_combinations_test.py,sha256=a-tk0Cd7zhlWXb_o8IrLkabimOqXLgYPJAwNgY8rh7o,68322
|
|
332
332
|
cirq/ops/matrix_gates.py,sha256=or8Kc3kP1NFjLbAHemmrZIqYFgEeeteMogNVEzYjosk,10238
|
|
333
|
-
cirq/ops/matrix_gates_test.py,sha256=
|
|
333
|
+
cirq/ops/matrix_gates_test.py,sha256=GEb2QTC2cNTQGVNXCXHL5PstrQLVpFEfQ3eGMZHe8z8,15006
|
|
334
334
|
cirq/ops/measure_util.py,sha256=JtBgBFTGVUPstC8SdhV7JQhaEd3zYdKvUMJSoBRsngc,7397
|
|
335
|
-
cirq/ops/measure_util_test.py,sha256=
|
|
335
|
+
cirq/ops/measure_util_test.py,sha256=xsjcz70eXiDfGN_tFz4mNcF18dXgdV6z3vyOVnsF2BE,5570
|
|
336
336
|
cirq/ops/measurement_gate.py,sha256=i7ThYTd1xdzOG274jzFnzqEz5Qmv6wggcubWa-3FDZE,11874
|
|
337
|
-
cirq/ops/measurement_gate_test.py,sha256=
|
|
337
|
+
cirq/ops/measurement_gate_test.py,sha256=IF8ceuD2Sb4kFlp9x9evwl8F7j4BkCvZXSgKCP4Ac1g,18573
|
|
338
338
|
cirq/ops/mixed_unitary_channel.py,sha256=guje2Jbj2uWG8NSlwazK1r-XjxlTHA6s7ti52tWS-Nk,5246
|
|
339
339
|
cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
|
|
340
340
|
cirq/ops/named_qubit.py,sha256=e2GdyDfeyKNgmXiiQh8yW59t4qDIvAEzXjb_NfyhgHs,9997
|
|
@@ -345,21 +345,21 @@ cirq/ops/parallel_gate.py,sha256=B6uwL0lPJLiv_TL62U4HGyv7FZn_CvljSUK7jKTuu-M,625
|
|
|
345
345
|
cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
|
|
346
346
|
cirq/ops/parity_gates.py,sha256=hcF2jtrX-ay46UyiXpH9DT-5ihWhGkhN6fH5454FmKA,14289
|
|
347
347
|
cirq/ops/parity_gates_test.py,sha256=-hnUpof7lKrBz1i06wQ8H3RsIy03gFczaVq3xK8s-HY,11587
|
|
348
|
-
cirq/ops/pauli_gates.py,sha256=
|
|
348
|
+
cirq/ops/pauli_gates.py,sha256=hXChuK9F56DEft2KHcMhjf6cPyEHHB5BKy10Dsk0FNM,6776
|
|
349
349
|
cirq/ops/pauli_gates_test.py,sha256=YYzQBojxoZTM6WH7pD3PNwmQrIO6U7FTG6AaZ-6z-To,8334
|
|
350
350
|
cirq/ops/pauli_interaction_gate.py,sha256=1drxD57PLCmp7dI9p5oDX2HPzsqwh0rrqHltUjtbWZU,5539
|
|
351
351
|
cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
|
|
352
352
|
cirq/ops/pauli_measurement_gate.py,sha256=OzbQeMzr9cHQsai8K-usg3Il74o8gdXZLksLuYr8RcU,7113
|
|
353
|
-
cirq/ops/pauli_measurement_gate_test.py,sha256=
|
|
353
|
+
cirq/ops/pauli_measurement_gate_test.py,sha256=IDnbQgyaj-nbYw_sslPBccl8aRGTlMrADc_EEiAvluk,6929
|
|
354
354
|
cirq/ops/pauli_string.py,sha256=_OYVeQ9G9sgim636rdrqD3h-KyPhuYHMqBRE8lTy6e8,64066
|
|
355
355
|
cirq/ops/pauli_string_phasor.py,sha256=JLKZem7rdshQ0doNvFMJmP7cLhl9lCsHAI1QlOmbmrg,18207
|
|
356
|
-
cirq/ops/pauli_string_phasor_test.py,sha256
|
|
356
|
+
cirq/ops/pauli_string_phasor_test.py,sha256=ZIoraHH3kOFjtEfThXDS-sxUvSU8MYZ2avtdiPcyN6w,28309
|
|
357
357
|
cirq/ops/pauli_string_raw_types.py,sha256=lXW-Fv2TTv77g_7VMdQun33y4reD4p7dS7g9Nm1Id20,2256
|
|
358
|
-
cirq/ops/pauli_string_raw_types_test.py,sha256=
|
|
359
|
-
cirq/ops/pauli_string_test.py,sha256=
|
|
358
|
+
cirq/ops/pauli_string_raw_types_test.py,sha256=ZcOZ31KSVIc7ReZoO8WZEX8MOyPOhUWaYLppvGTE4-8,2761
|
|
359
|
+
cirq/ops/pauli_string_test.py,sha256=i_SkDlRuoYB5AZZ-KW4aFJBHp14AzMXlx-ZIJzPkDT8,78278
|
|
360
360
|
cirq/ops/pauli_sum_exponential.py,sha256=Zq8YBMZ7sLLEPQuoX4uR95I9VY4C38Ma8FtOEjQGr3k,4861
|
|
361
361
|
cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
|
|
362
|
-
cirq/ops/permutation_gate.py,sha256=
|
|
362
|
+
cirq/ops/permutation_gate.py,sha256=mTCKrLSNP3nm2hPebfBJNR5mHO6qb1ZqDT3pFA0zM_M,4218
|
|
363
363
|
cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96HfdCZyc,3381
|
|
364
364
|
cirq/ops/phased_iswap_gate.py,sha256=AQIPHurGVx4ccinrT8UZc9bZT9yX53Q4PlBk4uaqrGw,8939
|
|
365
365
|
cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
|
|
@@ -378,15 +378,15 @@ cirq/ops/qubit_order_or_list.py,sha256=5kChRv1gUnBKB-kF6okXoXcCa5CXbJ6HoB6ETpfl3
|
|
|
378
378
|
cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,4372
|
|
379
379
|
cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
|
|
380
380
|
cirq/ops/random_gate_channel_test.py,sha256=p-xtDOMIYBJ1wVHLJmrALi-ZU978l3AVuX0kgoan1Ac,8523
|
|
381
|
-
cirq/ops/raw_types.py,sha256=
|
|
382
|
-
cirq/ops/raw_types_test.py,sha256=
|
|
381
|
+
cirq/ops/raw_types.py,sha256=T90X1zF5B0aJVHDw8JVCv7VwZDeiLejcUQhQwC_RAOE,43414
|
|
382
|
+
cirq/ops/raw_types_test.py,sha256=CoooLVSYidx1QkAFWJM4gNbs3CwkHHtVKE8HW6gPAxs,35408
|
|
383
383
|
cirq/ops/state_preparation_channel.py,sha256=3qbqrrYaVN2eHL1qiBHcItj1Pzjxhtq10tSEkRz9GNM,4781
|
|
384
384
|
cirq/ops/state_preparation_channel_test.py,sha256=xFi6nOFPoQatxvnorCXujmhMvtf65lmyFfxbGlTKo4c,6039
|
|
385
385
|
cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
|
|
386
386
|
cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
|
|
387
387
|
cirq/ops/tags.py,sha256=nBKqDnPHunxABIOqSAHsVb2hByRAJSfGCJjTC6-AbTY,2307
|
|
388
388
|
cirq/ops/tags_test.py,sha256=EUCAjFYsQ98r6eo8XUNJoQCKMRCc4KvcqXUZAzfPqiE,1210
|
|
389
|
-
cirq/ops/three_qubit_gates.py,sha256=
|
|
389
|
+
cirq/ops/three_qubit_gates.py,sha256=qOFW-bva07ao30LL5tnkLV4kEmF_V5yIl8w5fXF5_DA,27937
|
|
390
390
|
cirq/ops/three_qubit_gates_test.py,sha256=r9bO7noLCUIGhSprE-KUTlnrf16IEoAhy93Obi6oL18,11951
|
|
391
391
|
cirq/ops/two_qubit_diagonal_gate.py,sha256=m2wnFpi0sHA9cxMa2cqwRYGQIlbyTGohMTLdVVQZ2-U,5377
|
|
392
392
|
cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
|
|
@@ -395,20 +395,20 @@ cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6
|
|
|
395
395
|
cirq/ops/wait_gate.py,sha256=CU_CdgkNZV5BjVnBKu-GEIdkyu787mqiQEV0fnjhLkc,5575
|
|
396
396
|
cirq/ops/wait_gate_test.py,sha256=BkRLYMTETWoTYh8LA1S9Yvh8u7wX4-YNVhXhiCOQIAo,3628
|
|
397
397
|
cirq/protocols/__init__.py,sha256=SZCBRpL2YbYWMVcvJVR6FGkBv9aGv01oY2skSBvtNcg,6015
|
|
398
|
-
cirq/protocols/act_on_protocol.py,sha256=
|
|
399
|
-
cirq/protocols/act_on_protocol_test.py,sha256=
|
|
398
|
+
cirq/protocols/act_on_protocol.py,sha256=S9hUdYaZ-7HDpjbRVvlvlIPL-Xrv4RZXB-NdF4zDcgM,6888
|
|
399
|
+
cirq/protocols/act_on_protocol_test.py,sha256=pEHu0SYpbf1dvgATFeIhJB1_I7sZoFZx9oqrYIrvzaI,3300
|
|
400
400
|
cirq/protocols/apply_channel_protocol.py,sha256=-FkwzW2FKDY713lGOTIJ0yMIPKp3ZzWqLBl_yhmOGdk,15615
|
|
401
|
-
cirq/protocols/apply_channel_protocol_test.py,sha256=
|
|
401
|
+
cirq/protocols/apply_channel_protocol_test.py,sha256=XtvZzmG9x-cdeLeCm7ojHsSbMkQZJEjyFB3EFiPbA10,10896
|
|
402
402
|
cirq/protocols/apply_mixture_protocol.py,sha256=a5St6DR5kIcXqDxXblBPYFuoSeAT8N1roJguTidGMyM,15321
|
|
403
|
-
cirq/protocols/apply_mixture_protocol_test.py,sha256=
|
|
403
|
+
cirq/protocols/apply_mixture_protocol_test.py,sha256=dd1cLUDsSnvBKoX_IjqV4BzcZ4SsBWe5-rDJMy7AD5A,11422
|
|
404
404
|
cirq/protocols/apply_unitary_protocol.py,sha256=NBq_RqzSAlqHaNi90MKN9uncHUyKpgQ2t9Wa8c-rHdA,29899
|
|
405
|
-
cirq/protocols/apply_unitary_protocol_test.py,sha256=
|
|
405
|
+
cirq/protocols/apply_unitary_protocol_test.py,sha256=XukFnr2B5vAobIr9laDNjCk68oM6QeDnquxtKz32j6w,26667
|
|
406
406
|
cirq/protocols/approximate_equality_protocol.py,sha256=DZ4eNCSwl_MI1LIo6tosFFqw0Gl9snM51C2vR5X1mdA,6293
|
|
407
|
-
cirq/protocols/approximate_equality_protocol_test.py,sha256=
|
|
408
|
-
cirq/protocols/circuit_diagram_info_protocol.py,sha256
|
|
407
|
+
cirq/protocols/approximate_equality_protocol_test.py,sha256=APzdSFqSTTBsjEtfSRR44H2CllYL1_OsPUH1NTzR08c,9495
|
|
408
|
+
cirq/protocols/circuit_diagram_info_protocol.py,sha256=-q8ifiROgUa2GXifk0NaVms2n8yiq79KHLSA1qEQUtg,17208
|
|
409
409
|
cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=r-kNamR6QPdu-Q9to2DKLrDP9J8rWOA7IxfMVvcO0qE,12074
|
|
410
410
|
cirq/protocols/commutes_protocol.py,sha256=6cJNba3aEsCh_XHIeNTHb0LRzws6ZbxOrKL_rieqU6k,7397
|
|
411
|
-
cirq/protocols/commutes_protocol_test.py,sha256=
|
|
411
|
+
cirq/protocols/commutes_protocol_test.py,sha256=INP3i39_3Xqh8oDTDNdY546fqD3eqnVzW_TO0zUVCeg,5911
|
|
412
412
|
cirq/protocols/control_key_protocol.py,sha256=uGgfahCHzsFpUGq6flgTMuqPh20zUSB2AOkSrhyoqwQ,2621
|
|
413
413
|
cirq/protocols/control_key_protocol_test.py,sha256=fNDDkf4mQpA_tKuhX1e2BJN72v9HdGftgd79sOqREJE,1014
|
|
414
414
|
cirq/protocols/decompose_protocol.py,sha256=QFiH6D1QzWT-TCwkClXbcVADIBwKHl39X8SPJ8E2524,18967
|
|
@@ -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.dev20250820205919.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1238
|
+
cirq_core-1.7.0.dev20250820205919.dist-info/METADATA,sha256=VKhxRPbLYN3IztL9C05nvAjPFDNR95YXcqAxzZojFCo,4857
|
|
1239
|
+
cirq_core-1.7.0.dev20250820205919.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1240
|
+
cirq_core-1.7.0.dev20250820205919.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1241
|
+
cirq_core-1.7.0.dev20250820205919.dist-info/RECORD,,
|
{cirq_core-1.7.0.dev20250819195403.dist-info → cirq_core-1.7.0.dev20250820205919.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|