cirq-core 1.6.0.dev20250520183459__py3-none-any.whl → 1.6.0.dev20250520204921__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/paulistring/clifford_optimize_test.py +0 -1
- cirq/contrib/paulistring/optimize_test.py +0 -1
- cirq/contrib/qcircuit/qcircuit_pdf.py +0 -1
- cirq/ops/qubit_order.py +2 -3
- cirq/protocols/apply_channel_protocol.py +4 -4
- cirq/protocols/apply_mixture_protocol.py +4 -4
- cirq/testing/consistent_unitary.py +0 -1
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py +0 -1
- cirq/transformers/gauge_compiling/iswap_gauge_test.py +0 -1
- cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +0 -1
- cirq/transformers/symbolize.py +7 -5
- cirq/transformers/symbolize_test.py +2 -0
- {cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/METADATA +1 -1
- {cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/RECORD +19 -19
- {cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/WHEEL +0 -0
- {cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
cirq/ops/qubit_order.py
CHANGED
|
@@ -12,10 +12,9 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
|
|
16
15
|
from __future__ import annotations
|
|
17
16
|
|
|
18
|
-
from typing import Any, Callable, Iterable,
|
|
17
|
+
from typing import Any, Callable, Iterable, TYPE_CHECKING, TypeVar
|
|
19
18
|
|
|
20
19
|
if TYPE_CHECKING:
|
|
21
20
|
import cirq
|
|
@@ -41,7 +40,7 @@ class QubitOrder:
|
|
|
41
40
|
|
|
42
41
|
@staticmethod
|
|
43
42
|
def explicit(
|
|
44
|
-
fixed_qubits: Iterable[cirq.Qid], fallback:
|
|
43
|
+
fixed_qubits: Iterable[cirq.Qid], fallback: QubitOrder | None = None
|
|
45
44
|
) -> QubitOrder:
|
|
46
45
|
"""A basis that contains exactly the given qubits in the given order.
|
|
47
46
|
|
|
@@ -271,7 +271,7 @@ def apply_channel(
|
|
|
271
271
|
)
|
|
272
272
|
|
|
273
273
|
|
|
274
|
-
def _apply_unitary(val: Any, args:
|
|
274
|
+
def _apply_unitary(val: Any, args: ApplyChannelArgs) -> np.ndarray | None:
|
|
275
275
|
"""Attempt to use `apply_unitary` and return the result.
|
|
276
276
|
|
|
277
277
|
If `val` does not support `apply_unitary` returns None.
|
|
@@ -294,7 +294,7 @@ def _apply_unitary(val: Any, args: 'ApplyChannelArgs') -> np.ndarray | None:
|
|
|
294
294
|
return right_result
|
|
295
295
|
|
|
296
296
|
|
|
297
|
-
def _apply_kraus(kraus: tuple[np.ndarray] | Sequence[Any], args:
|
|
297
|
+
def _apply_kraus(kraus: tuple[np.ndarray] | Sequence[Any], args: ApplyChannelArgs) -> np.ndarray:
|
|
298
298
|
"""Directly apply the kraus operators to the target tensor."""
|
|
299
299
|
# Initialize output.
|
|
300
300
|
args.out_buffer[:] = 0
|
|
@@ -309,7 +309,7 @@ def _apply_kraus(kraus: tuple[np.ndarray] | Sequence[Any], args: 'ApplyChannelAr
|
|
|
309
309
|
|
|
310
310
|
|
|
311
311
|
def _apply_kraus_single_qubit(
|
|
312
|
-
kraus: tuple[Any] | Sequence[Any], args:
|
|
312
|
+
kraus: tuple[Any] | Sequence[Any], args: ApplyChannelArgs
|
|
313
313
|
) -> np.ndarray:
|
|
314
314
|
"""Use slicing to apply single qubit channel. Only for two-level qubits."""
|
|
315
315
|
zero_left = linalg.slice_for_qubits_equal_to(args.left_axes, 0)
|
|
@@ -334,7 +334,7 @@ def _apply_kraus_single_qubit(
|
|
|
334
334
|
|
|
335
335
|
|
|
336
336
|
def _apply_kraus_multi_qubit(
|
|
337
|
-
kraus: tuple[Any] | Sequence[Any], args:
|
|
337
|
+
kraus: tuple[Any] | Sequence[Any], args: ApplyChannelArgs
|
|
338
338
|
) -> np.ndarray:
|
|
339
339
|
"""Use numpy's einsum to apply a multi-qubit channel."""
|
|
340
340
|
qid_shape = tuple(args.target_tensor.shape[i] for i in args.left_axes)
|
|
@@ -273,7 +273,7 @@ def apply_mixture(
|
|
|
273
273
|
)
|
|
274
274
|
|
|
275
275
|
|
|
276
|
-
def _validate_input(val: Any, args:
|
|
276
|
+
def _validate_input(val: Any, args: ApplyMixtureArgs) -> tuple[Any, ApplyMixtureArgs, bool]:
|
|
277
277
|
"""Validate args input and determine if we are operating on a
|
|
278
278
|
density matrix or a state vector.
|
|
279
279
|
"""
|
|
@@ -303,7 +303,7 @@ def _validate_input(val: Any, args: 'ApplyMixtureArgs') -> tuple[Any, 'ApplyMixt
|
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
def _apply_unitary_strat(
|
|
306
|
-
val: Any, args:
|
|
306
|
+
val: Any, args: ApplyMixtureArgs, is_density_matrix: bool
|
|
307
307
|
) -> np.ndarray | None:
|
|
308
308
|
"""Attempt to use `apply_unitary` and return the result.
|
|
309
309
|
|
|
@@ -333,7 +333,7 @@ def _apply_unitary_strat(
|
|
|
333
333
|
|
|
334
334
|
|
|
335
335
|
def _apply_unitary_from_matrix_strat(
|
|
336
|
-
val: np.ndarray, args:
|
|
336
|
+
val: np.ndarray, args: ApplyMixtureArgs, is_density_matrix: bool
|
|
337
337
|
) -> np.ndarray | None:
|
|
338
338
|
"""Used to enact mixture tuples that are given as (probability, np.ndarray)
|
|
339
339
|
|
|
@@ -359,7 +359,7 @@ def _apply_unitary_from_matrix_strat(
|
|
|
359
359
|
|
|
360
360
|
|
|
361
361
|
def _apply_mixture_from_mixture_strat(
|
|
362
|
-
val: Any, args:
|
|
362
|
+
val: Any, args: ApplyMixtureArgs, is_density_matrix: bool
|
|
363
363
|
) -> np.ndarray | None:
|
|
364
364
|
"""Attempt to use unitary matrices in _mixture_ and return the result."""
|
|
365
365
|
method = getattr(val, '_mixture_', None)
|
cirq/transformers/symbolize.py
CHANGED
|
@@ -14,8 +14,10 @@
|
|
|
14
14
|
|
|
15
15
|
"""Transformers that symbolize operations."""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import re
|
|
18
|
-
from typing import Hashable,
|
|
20
|
+
from typing import Hashable, TYPE_CHECKING
|
|
19
21
|
|
|
20
22
|
import attrs
|
|
21
23
|
import sympy
|
|
@@ -37,11 +39,11 @@ class SymbolizeTag:
|
|
|
37
39
|
|
|
38
40
|
@transformer_api.transformer
|
|
39
41
|
def symbolize_single_qubit_gates_by_indexed_tags(
|
|
40
|
-
circuit:
|
|
42
|
+
circuit: cirq.AbstractCircuit,
|
|
41
43
|
*,
|
|
42
|
-
context:
|
|
44
|
+
context: cirq.TransformerContext | None = None,
|
|
43
45
|
symbolize_tag: SymbolizeTag = SymbolizeTag(prefix="TO-PHXZ"),
|
|
44
|
-
) ->
|
|
46
|
+
) -> cirq.Circuit:
|
|
45
47
|
"""Symbolizes single qubit operations by indexed tags prefixed by symbolize_tag.prefix.
|
|
46
48
|
|
|
47
49
|
Example:
|
|
@@ -72,7 +74,7 @@ def symbolize_single_qubit_gates_by_indexed_tags(
|
|
|
72
74
|
Copy of the transformed input circuit.
|
|
73
75
|
"""
|
|
74
76
|
|
|
75
|
-
def _map_func(op:
|
|
77
|
+
def _map_func(op: cirq.Operation, _):
|
|
76
78
|
"""Maps an op with tag `{tag_prefix}_i` to a symbolzied `PhasedXZGate(xi,zi,ai)`."""
|
|
77
79
|
tags: set[Hashable] = set(op.tags)
|
|
78
80
|
tag_id: None | int = None
|
{cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.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.dev20250520204921
|
|
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.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=ZSmenkbqEfRJpGsvutmV8vgIlfZCWj8GAVgi3t5YRso,34635
|
|
|
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=0KrDOoEn9f3hT7ZPxSztPI8mrJBR8kwLe4DqlMEs5bY,1206
|
|
8
|
+
cirq/_version_test.py,sha256=iEVa4oa5-xMLvr_dS1tH6QLVXmxF9XOIzgHTlC7pHsQ,155
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=S-zUVI4D_XnAxyR6z7WHDImCVmB_awJp6EStD1-CNPU,13621
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -89,11 +89,11 @@ cirq/contrib/noise_models/noise_models.py,sha256=i1hCLuI4c6DLMQzBenK1ghAvfnrGKCY
|
|
|
89
89
|
cirq/contrib/noise_models/noise_models_test.py,sha256=oA7HRMPDi9lv9Lqb8idF9C6Vqjh3KuxD00z5JkE5ybw,10588
|
|
90
90
|
cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
|
|
91
91
|
cirq/contrib/paulistring/clifford_optimize.py,sha256=VMdivMpQnPQhgqtasce6dOPGx6x6eIZ6Z4f1H666j-I,7859
|
|
92
|
-
cirq/contrib/paulistring/clifford_optimize_test.py,sha256=
|
|
92
|
+
cirq/contrib/paulistring/clifford_optimize_test.py,sha256=8FFLg9gb1HmHHMdXPa-vCr1zyxvgdlciRH8qyfTWQRw,3964
|
|
93
93
|
cirq/contrib/paulistring/clifford_target_gateset.py,sha256=L-oL0chwBIEQ6zWVPO6ENQJTK7vB5I7RP6i9SkDyr8Q,6330
|
|
94
94
|
cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
|
|
95
95
|
cirq/contrib/paulistring/optimize.py,sha256=F02c_9nuc8a41XNsA9bzTGaW2kR3hZw-MdaQLse5xj8,2743
|
|
96
|
-
cirq/contrib/paulistring/optimize_test.py,sha256
|
|
96
|
+
cirq/contrib/paulistring/optimize_test.py,sha256=FsmwyYFIGyyiO115oYgmCfaSV3De55Azd0_rzsi_xnU,3618
|
|
97
97
|
cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
|
|
98
98
|
cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
|
|
99
99
|
cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=Tz69rtet_u69CpOxERkGjaC0Ty13OTd6THP8tl097No,20057
|
|
@@ -116,7 +116,7 @@ cirq/contrib/qcircuit/__init__.py,sha256=6-pIZQUK3LlPVGiPFI7HJTl2_O1P-Rts0MsdDgQ
|
|
|
116
116
|
cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z375DYfAhpkDVAs,2780
|
|
117
117
|
cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=iseXGluQb8lWQ9L9mF9uJQMhInFaPWXDOBumX_fj34E,4551
|
|
118
118
|
cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=mNeqAKJwzE4sZQEadto8EFuP_UI9ckfMJFzqfBHuYhc,2429
|
|
119
|
-
cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=
|
|
119
|
+
cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=IEuq2rQMU9x_NcU8MS9uRc5o-E_BoeJPo8ixLRBH83A,2485
|
|
120
120
|
cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=qiR8GIopgeImoLtGD4vTzp_R3nPRhOg9pUND4Y6gRjs,1122
|
|
121
121
|
cirq/contrib/qcircuit/qcircuit_test.py,sha256=Q6SqGhxvs2JVYvmT0S4tSNxB-DBUE7bHkrhqUb1cLNo,6125
|
|
122
122
|
cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
|
|
@@ -361,7 +361,7 @@ cirq/ops/qid_util.py,sha256=B2Ilqp4LCDN-Um3lx2GfWq3IelZYicMvFx7hgIQmmhc,2095
|
|
|
361
361
|
cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
|
|
362
362
|
cirq/ops/qubit_manager.py,sha256=5CFtTkkWE5aW4yyFnr2M70_Fw6jNUI-ltTXMVcL9oUc,3549
|
|
363
363
|
cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
|
|
364
|
-
cirq/ops/qubit_order.py,sha256=
|
|
364
|
+
cirq/ops/qubit_order.py,sha256=Ekk246AzaeW6w3fNGNhHdGOQbD_DU8KeXl7BMhX-SDM,5497
|
|
365
365
|
cirq/ops/qubit_order_or_list.py,sha256=vP5MwFI5pbn8WH6eFzwe_sE3EPixRRWGDj0jlbECNRM,1201
|
|
366
366
|
cirq/ops/qubit_order_test.py,sha256=e8gBGSCHyKu9nJHPwEPVO060uDpJCpO0ok5n6toR0PU,4274
|
|
367
367
|
cirq/ops/random_gate_channel.py,sha256=i4eg9GA4CF6ZWQRrICa5lfYqvdZzN8oLEWwXHcxRStM,5115
|
|
@@ -385,9 +385,9 @@ cirq/ops/wait_gate_test.py,sha256=cBYqPQc339lfwXgdUSl0OD0ZlfsqaPvyrmnArD7ERs8,35
|
|
|
385
385
|
cirq/protocols/__init__.py,sha256=JvMKV92kF8qxm8mXNM9iY8TMyn87mwSwaafnvuphcgY,6087
|
|
386
386
|
cirq/protocols/act_on_protocol.py,sha256=yf8QZwBUG6E2vdkHHZho7-6n2_qtBQJZ9onw6XMAO8w,6912
|
|
387
387
|
cirq/protocols/act_on_protocol_test.py,sha256=X7GNM9mGPCpWukW9_7kF88g12RdqsWhcniIw5LW1tC4,3215
|
|
388
|
-
cirq/protocols/apply_channel_protocol.py,sha256
|
|
388
|
+
cirq/protocols/apply_channel_protocol.py,sha256=-FkwzW2FKDY713lGOTIJ0yMIPKp3ZzWqLBl_yhmOGdk,15615
|
|
389
389
|
cirq/protocols/apply_channel_protocol_test.py,sha256=THW95ZzW1y8UtBIuzVJ872wEOZqIcFdPbXocBUzAiWw,10618
|
|
390
|
-
cirq/protocols/apply_mixture_protocol.py,sha256=
|
|
390
|
+
cirq/protocols/apply_mixture_protocol.py,sha256=bB2EJOrGccuMBuHR4paZnguYavL4KanzTTiLUgzM1eM,16438
|
|
391
391
|
cirq/protocols/apply_mixture_protocol_test.py,sha256=_ftefdRBYj73OC_m3179VX8U1-xDesAOHu94tx3d-gU,11142
|
|
392
392
|
cirq/protocols/apply_unitary_protocol.py,sha256=bvqGe_Yt_pnJiVRlj9Kq0_sf557BrA1iUgr8fEJeB9g,29714
|
|
393
393
|
cirq/protocols/apply_unitary_protocol_test.py,sha256=po1z7a-r4kbfLg7_7XKgFMrsFIzQCFgceCwn-lyBEOA,26172
|
|
@@ -993,7 +993,7 @@ cirq/testing/consistent_qasm_test.py,sha256=Z1bfMsgoXwe27RDhruKqBV4eGqTHUOwkP17T
|
|
|
993
993
|
cirq/testing/consistent_resolve_parameters.py,sha256=1Vq4GWoZdFOnz8b_M_rFwScR-bcVfctfLWbBLHRO7zs,2010
|
|
994
994
|
cirq/testing/consistent_specified_has_unitary.py,sha256=R8xFCPoIUZn-4KoUGPHASGfwQ5iqqeLO5qQgT1HB1Xs,1168
|
|
995
995
|
cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
|
|
996
|
-
cirq/testing/consistent_unitary.py,sha256
|
|
996
|
+
cirq/testing/consistent_unitary.py,sha256=8O9xaTEQCUNOn8BsuHnCXcbXI8ZV2DZGiNp1dk55xM0,3284
|
|
997
997
|
cirq/testing/consistent_unitary_test.py,sha256=yK8fFh2bcmZunUF2lrsTWY5pt9sk6pFKInvMg0MrKZ0,3312
|
|
998
998
|
cirq/testing/deprecation.py,sha256=FMgdC8sXKXYZl6abKM_6FymzSulhtAewmWnjVWlGF3g,2189
|
|
999
999
|
cirq/testing/deprecation_test.py,sha256=LC---8mwEnEu4mi_95aJmv-z5lEB1wSFVqX_KVueOT0,2219
|
|
@@ -1083,8 +1083,8 @@ cirq/transformers/randomized_measurements.py,sha256=J4c9ZwYRDJ2_X_QzXWds4Qe0t9ZL
|
|
|
1083
1083
|
cirq/transformers/randomized_measurements_test.py,sha256=ZfD8QW9Iy7NfidA1Iez9DUuT9HuzyEzFpHF1JNffE-I,2817
|
|
1084
1084
|
cirq/transformers/stratify.py,sha256=-Kl9y508gRi84Jwh-ZvLAerdpqPBmhAdknxXfVhcUK0,10452
|
|
1085
1085
|
cirq/transformers/stratify_test.py,sha256=X4h2KMc82N3G6d_qLIP0HTsrDWerWgEXTH_WBPN8nd0,15257
|
|
1086
|
-
cirq/transformers/symbolize.py,sha256=
|
|
1087
|
-
cirq/transformers/symbolize_test.py,sha256=
|
|
1086
|
+
cirq/transformers/symbolize.py,sha256=F4ky19Fd81recaSpmvldCmAjbmlEnf9-WxUexAYy9As,3992
|
|
1087
|
+
cirq/transformers/symbolize_test.py,sha256=IF92t0r_mhC48tmCCVJqykXD6ms166n6XfbcSRTrJbY,2243
|
|
1088
1088
|
cirq/transformers/synchronize_terminal_measurements.py,sha256=lORajz_Qd1RC3baNdrqo5xJcqEWgwPHUfY0VaHk6lxI,3825
|
|
1089
1089
|
cirq/transformers/synchronize_terminal_measurements_test.py,sha256=sOmAYP3jXSUbUSJO5KKgkLPDWCWxPLUcRTSZ48HaDrA,7858
|
|
1090
1090
|
cirq/transformers/tag_transformers.py,sha256=WQSjTBRfwuhzYfqe-bbyUA-nEYHAFcNg8jiEn-Uru2U,3526
|
|
@@ -1128,12 +1128,12 @@ cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=MQURH_tIIPxHu7CRWWEdDk
|
|
|
1128
1128
|
cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=bXqAEVBXHplnxRMwNA0GrbpHsVLoY-zV0zpeP3VNjJY,18834
|
|
1129
1129
|
cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=JFG7aCe-PxPGZDPCAx82ILu6PX_laFvCDlaabwvL0Kc,5272
|
|
1130
1130
|
cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=NUbcz-tGS58QPohpsmMx0RbB4d79GMSoyVxdL3CPiZc,5060
|
|
1131
|
-
cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=
|
|
1131
|
+
cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=qPcs2BWU-1gOEz0NCLixBLO9I1PVIOLShB7wkprcQZY,1896
|
|
1132
1132
|
cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=CfW3hgO6AgUB7D6tC8J2XZQw2Ge77LT44BygCzMW4Xc,3536
|
|
1133
|
-
cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=
|
|
1133
|
+
cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=V6g-jyGujMKEzGtOi_OhMxX5oTznGXJi9tCNKI9Qrb8,901
|
|
1134
1134
|
cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=yhrF4pa1u0-iwYay47_2bZ4xfU323TOdlyazl0U9v4c,1122
|
|
1135
1135
|
cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJO8BoP4uA0SqSLXS6bqn3T69SwcBHCQHBwWAkI8YTk,1328
|
|
1136
|
-
cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=
|
|
1136
|
+
cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=qnVmbXqehhDucg6Cm3VZm5lHez-uttayPSHqL4JHPEA,2557
|
|
1137
1137
|
cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=WXZjPf3SAxZHwWbORnsNPeBu1jHeqBqRkrTPCZiNnAY,1033
|
|
1138
1138
|
cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=kOFHb5GydzeMNwSvDLFuEjc71jHC1HBWxaWinPlrArs,3163
|
|
1139
1139
|
cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=2KJ14je7QNISHQE8GAK0Oy0HisDFiGEYHxCGc0LhRRg,918
|
|
@@ -1220,8 +1220,8 @@ cirq/work/sampler.py,sha256=rxbMWvrhu3gfNSBjZKozw28lLKVvBAS_1EGyPdYe8Xg,19041
|
|
|
1220
1220
|
cirq/work/sampler_test.py,sha256=SsMrRvLDYELyOAWLKISjkdEfrBwLYWRsT6D8WrsLM3Q,13533
|
|
1221
1221
|
cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
|
|
1222
1222
|
cirq/work/zeros_sampler_test.py,sha256=lQLgQDGBLtfImryys2HzQ2jOSGxHgc7-koVBUhv8qYk,3345
|
|
1223
|
-
cirq_core-1.6.0.
|
|
1224
|
-
cirq_core-1.6.0.
|
|
1225
|
-
cirq_core-1.6.0.
|
|
1226
|
-
cirq_core-1.6.0.
|
|
1227
|
-
cirq_core-1.6.0.
|
|
1223
|
+
cirq_core-1.6.0.dev20250520204921.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1224
|
+
cirq_core-1.6.0.dev20250520204921.dist-info/METADATA,sha256=T-FCIvB2vQdLR67zd6LoaNlBxyhah281E_u95vweg04,4857
|
|
1225
|
+
cirq_core-1.6.0.dev20250520204921.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
|
|
1226
|
+
cirq_core-1.6.0.dev20250520204921.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1227
|
+
cirq_core-1.6.0.dev20250520204921.dist-info/RECORD,,
|
{cirq_core-1.6.0.dev20250520183459.dist-info → cirq_core-1.6.0.dev20250520204921.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|