cirq-core 1.5.0.dev20250225034703__py3-none-any.whl → 1.5.0.dev20250225182416__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/acquaintance/strategies/quartic_paired.py +1 -1
- cirq/contrib/json.py +1 -2
- cirq/interop/quirk/cells/parse_test.py +1 -1
- cirq/ops/__init__.py +1 -2
- cirq/ops/op_tree.py +1 -2
- cirq/sim/clifford/clifford_simulator.py +2 -2
- cirq/sim/clifford/clifford_tableau_simulation_state.py +1 -1
- cirq/study/sweepable.py +1 -1
- cirq/transformers/analytical_decompositions/cphase_to_fsim.py +1 -1
- cirq/transformers/dynamical_decoupling.py +1 -1
- cirq/transformers/optimize_for_target_gateset_test.py +1 -1
- {cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/METADATA +1 -1
- {cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/RECORD +18 -18
- {cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/LICENSE +0 -0
- {cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/WHEEL +0 -0
- {cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/top_level.txt +0 -0
cirq/_version.py
CHANGED
cirq/_version_test.py
CHANGED
|
@@ -47,7 +47,7 @@ def qubit_pairs_to_qubit_order(qubit_pairs: Sequence[Sequence['cirq.Qid']]) -> L
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
def quartic_paired_acquaintance_strategy(
|
|
50
|
-
qubit_pairs: Iterable[Tuple['cirq.Qid', ops.Qid]]
|
|
50
|
+
qubit_pairs: Iterable[Tuple['cirq.Qid', ops.Qid]],
|
|
51
51
|
) -> Tuple['cirq.Circuit', Sequence['cirq.Qid']]:
|
|
52
52
|
"""Acquaintance strategy for pairs of pairs.
|
|
53
53
|
|
cirq/contrib/json.py
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# pylint: disable=wrong-or-nonexistent-copyright-notice
|
|
2
|
-
"""Functions for JSON serialization and de-serialization for classes in Contrib.
|
|
3
|
-
"""
|
|
2
|
+
"""Functions for JSON serialization and de-serialization for classes in Contrib."""
|
|
4
3
|
|
|
5
4
|
from cirq.protocols.json_serialization import DEFAULT_RESOLVERS
|
|
6
5
|
|
|
@@ -102,7 +102,7 @@ def test_parse_complex_raw_cases_from_quirk():
|
|
|
102
102
|
|
|
103
103
|
assert parse_complex("3/2i") == 1.5j
|
|
104
104
|
|
|
105
|
-
assert parse_complex("\
|
|
105
|
+
assert parse_complex("\u221a2-\u2153i") == np.sqrt(2) - 1j / 3
|
|
106
106
|
|
|
107
107
|
assert parse_complex("1e-10") == 0.0000000001
|
|
108
108
|
assert parse_complex("1e+10") == 10000000000
|
cirq/ops/__init__.py
CHANGED
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
|
-
"""Gates (unitary and non-unitary), operations, base types, and gate sets.
|
|
15
|
-
"""
|
|
14
|
+
"""Gates (unitary and non-unitary), operations, base types, and gate sets."""
|
|
16
15
|
|
|
17
16
|
from cirq.ops.arithmetic_operation import ArithmeticGate as ArithmeticGate
|
|
18
17
|
|
cirq/ops/op_tree.py
CHANGED
|
@@ -12,8 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
"""A recursive type describing trees of operations, and utility methods for it.
|
|
16
|
-
"""
|
|
15
|
+
"""A recursive type describing trees of operations, and utility methods for it."""
|
|
17
16
|
|
|
18
17
|
from typing import Callable, Iterable, Iterator, NoReturn, Union, TYPE_CHECKING
|
|
19
18
|
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"""An efficient simulator for Clifford circuits.
|
|
16
16
|
|
|
17
17
|
Allowed operations include:
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
- X,Y,Z,H,S,CNOT,CZ
|
|
19
|
+
- measurements in the computational basis
|
|
20
20
|
|
|
21
21
|
The quantum state is specified in two forms:
|
|
22
22
|
1. In terms of stabilizer generators. These are a set of n Pauli operators
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
"""A protocol for implementing high performance clifford tableau evolutions
|
|
15
|
-
|
|
15
|
+
for Clifford Simulator."""
|
|
16
16
|
|
|
17
17
|
from typing import Optional, Sequence, TYPE_CHECKING
|
|
18
18
|
|
cirq/study/sweepable.py
CHANGED
|
@@ -72,7 +72,7 @@ def to_sweeps(sweepable: Sweepable, metadata: Optional[dict] = None) -> List[Swe
|
|
|
72
72
|
def to_sweep(
|
|
73
73
|
sweep_or_resolver_list: Union[
|
|
74
74
|
'Sweep', ParamResolverOrSimilarType, Iterable[ParamResolverOrSimilarType]
|
|
75
|
-
]
|
|
75
|
+
],
|
|
76
76
|
) -> 'Sweep':
|
|
77
77
|
"""Converts the argument into a ``cirq.Sweep``.
|
|
78
78
|
|
|
@@ -56,7 +56,7 @@ def compute_cphase_exponents_for_fsim_decomposition(
|
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
58
|
def nonempty_intervals(
|
|
59
|
-
intervals: Sequence[Tuple[float, float]]
|
|
59
|
+
intervals: Sequence[Tuple[float, float]],
|
|
60
60
|
) -> Sequence[Tuple[float, float]]:
|
|
61
61
|
return tuple((a, b) for a, b in intervals if a < b)
|
|
62
62
|
|
|
@@ -83,7 +83,7 @@ def _validate_dd_sequence(dd_sequence: Tuple[ops.Gate, ...]) -> None:
|
|
|
83
83
|
|
|
84
84
|
|
|
85
85
|
def _parse_dd_sequence(
|
|
86
|
-
schema: Union[str, Tuple[ops.Gate, ...]]
|
|
86
|
+
schema: Union[str, Tuple[ops.Gate, ...]],
|
|
87
87
|
) -> Tuple[Tuple[ops.Gate, ...], Dict[ops.Gate, ops.Pauli]]:
|
|
88
88
|
"""Parses and returns dynamical decoupling sequence and its associated pauli map from schema."""
|
|
89
89
|
dd_sequence = None
|
|
@@ -327,7 +327,7 @@ def test_optimize_for_target_gateset_multiple_passes(max_num_passes: Union[int,
|
|
|
327
327
|
|
|
328
328
|
@pytest.mark.parametrize('max_num_passes', [2, None])
|
|
329
329
|
def test_optimize_for_target_gateset_multiple_passes_dont_preserve_moment_structure(
|
|
330
|
-
max_num_passes: Union[int, None]
|
|
330
|
+
max_num_passes: Union[int, None],
|
|
331
331
|
):
|
|
332
332
|
gateset = cirq.CZTargetGateset(preserve_moment_structure=False)
|
|
333
333
|
|
{cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cirq-core
|
|
3
|
-
Version: 1.5.0.
|
|
3
|
+
Version: 1.5.0.dev20250225182416
|
|
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.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/RECORD
RENAMED
|
@@ -4,8 +4,8 @@ cirq/_compat_test.py,sha256=Qq3ZcfgD-Nb81cEppQdJqhAyrVqXKtfXZYGXT0p-Wh0,34718
|
|
|
4
4
|
cirq/_doc.py,sha256=yDyWUD_2JDS0gShfGRb-rdqRt9-WeL7DhkqX7np0Nko,2879
|
|
5
5
|
cirq/_import.py,sha256=p9gMHJscbtDDkfHOaulvd3Aer0pwUF5AXpL89XR8dNw,8402
|
|
6
6
|
cirq/_import_test.py,sha256=6K_v0riZJXOXUphHNkGA8MY-JcmGlezFaGmvrNhm3OQ,1015
|
|
7
|
-
cirq/_version.py,sha256=
|
|
8
|
-
cirq/_version_test.py,sha256=
|
|
7
|
+
cirq/_version.py,sha256=ArE7B0ZTPpgh2pCXoWs8M5dQM_T8p0S4EuZEu8AdCpg,1206
|
|
8
|
+
cirq/_version_test.py,sha256=UNDJ1AF7WZKS1oemSpoPsUCJwJ1JFfBNumtX2zecUIw,147
|
|
9
9
|
cirq/conftest.py,sha256=X7yLFL8GLhg2CjPw0hp5e_dGASfvHx1-QT03aUbhKJw,1168
|
|
10
10
|
cirq/json_resolver_cache.py,sha256=p-vEOa-8GQ2cFIAdze-kd6C1un1uRvtujVPljVKaHBg,13557
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
@@ -33,7 +33,7 @@ cirq/circuits/qasm_output_test.py,sha256=PawmzjqGpwauWgESqoi_U_iaYVZAMg_eIhZ_2Vr
|
|
|
33
33
|
cirq/circuits/text_diagram_drawer.py,sha256=w--5J7YoLGQO2b6kFEg0KAQP0YbjVSnrDqnRABdsPyo,16572
|
|
34
34
|
cirq/circuits/text_diagram_drawer_test.py,sha256=2bSoBIeQajRi0aQxqYDpbMlT2eqpx_f-Cmg9XO6A9Jk,10750
|
|
35
35
|
cirq/contrib/__init__.py,sha256=Mha0eF2ci88OVQX3laQiXgdEVo0yGwM7R5a13ryQ8jM,1065
|
|
36
|
-
cirq/contrib/json.py,sha256=
|
|
36
|
+
cirq/contrib/json.py,sha256=L9vDmk4YWJynzWzwRvK8Lwfb2pTXPQKJsJKumJJJnSQ,752
|
|
37
37
|
cirq/contrib/json_test.py,sha256=I9t_WpBfTBaIxKVo0HjK806V_FguTSBR95Y2gu-qYBo,1117
|
|
38
38
|
cirq/contrib/acquaintance/__init__.py,sha256=mJgE6eQjZ0csa7hrGYkb3lC86c4hY4LvmpY8QEOIA8s,3201
|
|
39
39
|
cirq/contrib/acquaintance/bipartite.py,sha256=iEElNihoQ0m1pt5f0bPOIubPnRqqbPJSEhc-WumIJgM,6526
|
|
@@ -63,7 +63,7 @@ cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSE
|
|
|
63
63
|
cirq/contrib/acquaintance/strategies/complete.py,sha256=3cWAO7N5fBh0rlAUz2BoIFxPR7Uekkzql4oay9UPZ-E,2165
|
|
64
64
|
cirq/contrib/acquaintance/strategies/cubic.py,sha256=wsDNDzeq5hFwYguLX3xvTuR30s6RN5YN5rbO5Yx2q6k,3150
|
|
65
65
|
cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=0ZgDl8uNv9lG1TxQSaCEjNGgRFMeaoETzKSpnhBlR8Y,1547
|
|
66
|
-
cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=
|
|
66
|
+
cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=LGOa-E-v2RjK2QIEqbF2UffrAvVFsdzbr-NSm2W81u4,2560
|
|
67
67
|
cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=zIMocEKc6rcCSJlyBsI2EJqiNY_iLVrNqruzqiQFDMk,2129
|
|
68
68
|
cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
|
|
69
69
|
cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=WchaOQe6zPQe72I1UA2o5plnnckoyyp3VU5rvUQ7ono,9157
|
|
@@ -231,7 +231,7 @@ cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=1jmEBHbHpmSSB3grPbn
|
|
|
231
231
|
cirq/interop/quirk/cells/measurement_cells.py,sha256=1jLtGMHCbxfNN9r5E_GWPIqz7fLdNKJK0WgrcjXsS3I,1504
|
|
232
232
|
cirq/interop/quirk/cells/measurement_cells_test.py,sha256=AYYzjn3BrQbk-Rg1L3WjCOQN9eGLRQzqwYr6i8UH0Fk,1574
|
|
233
233
|
cirq/interop/quirk/cells/parse.py,sha256=lvh6rqSrBr8-CYQuq4qGdHcZipnZ9XAIQGCwYshjCUY,11874
|
|
234
|
-
cirq/interop/quirk/cells/parse_test.py,sha256=
|
|
234
|
+
cirq/interop/quirk/cells/parse_test.py,sha256=MKIwjt-xb0S3p-ffWU0--SZebTPHs2jsAqKHe8idYq0,7473
|
|
235
235
|
cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=F9Br_SFB1ys4pP-hYlpPRMXH_4Cd8LePtOl4aTE_p8g,3390
|
|
236
236
|
cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=n0veQKx0EdFzu_gdY_AVjwqyoHae7JGkDFX6qhLeGrQ,4460
|
|
237
237
|
cirq/interop/quirk/cells/scalar_cells.py,sha256=TuV5TwiY2SEb3776k1MvkSMcJoP2uQVXfpWf4uaNf30,1246
|
|
@@ -264,7 +264,7 @@ cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5
|
|
|
264
264
|
cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=SsXFh1-NoBGqp4yX8-jIbIw-AK40baA-qh-iTL1wS6Q,1070
|
|
265
265
|
cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=mIeGevxs9NoYpfTF_znHL67RrJKVQyQP-DPhn7t9SUA,1862
|
|
266
266
|
cirq/neutral_atoms/neutral_atom_devices.py,sha256=s-LInrNp8k_txKbpLWfsaoiZvUScOWNxr-jiB-nFcDA,1358
|
|
267
|
-
cirq/ops/__init__.py,sha256=
|
|
267
|
+
cirq/ops/__init__.py,sha256=Fvghj3MopLpeIdbpb6en855QgwperBs5esV1iszhBDA,8274
|
|
268
268
|
cirq/ops/arithmetic_operation.py,sha256=PBqIwOfADRlsij11Lo1ao_OZM-O8PDlObgZBxGKsYKs,10125
|
|
269
269
|
cirq/ops/arithmetic_operation_test.py,sha256=axy8xy9IvDb-ATUV-LE1HNWRqCEz06VyZWVrLNOtXXI,4942
|
|
270
270
|
cirq/ops/boolean_hamiltonian.py,sha256=li003lNq6zS8pNPTobqzfzYJvyvaIpCVo3wkliI6Hzk,14930
|
|
@@ -321,7 +321,7 @@ cirq/ops/mixed_unitary_channel.py,sha256=k3O4ovH3bFs1WnAZc647IgCK8thC5JnTGxsCzjB
|
|
|
321
321
|
cirq/ops/mixed_unitary_channel_test.py,sha256=x8LIAea2KcutNupnRJ_cLy1kmxhbUh3K3BkZtg3OkKQ,5058
|
|
322
322
|
cirq/ops/named_qubit.py,sha256=niAsH7m32n3lEVIcy1nnVDPkPqk6PY2qlriz7mzgZmk,10006
|
|
323
323
|
cirq/ops/named_qubit_test.py,sha256=mtJVRe4JzFSNckMQJSGCj1P0VBtpGh--6YxKbIEE3TQ,5221
|
|
324
|
-
cirq/ops/op_tree.py,sha256=
|
|
324
|
+
cirq/ops/op_tree.py,sha256=jh4SA9lVSz6BF7K8cx5Nb3GfN36bqlcR2W8Gvw1lOB8,5276
|
|
325
325
|
cirq/ops/op_tree_test.py,sha256=h4phqrxQwYAfyu8o4f_fLi3WP2kdVuzWqrSCWGLHo_c,5575
|
|
326
326
|
cirq/ops/parallel_gate.py,sha256=duCtDht-HRlYM3V7JmFnB_l2rx5PRqAwyRMjug9kvnM,6318
|
|
327
327
|
cirq/ops/parallel_gate_test.py,sha256=M6o3AyXFQrwyiOTtGxlYH09TbHdjtTxCuMjmn-ALnn0,6298
|
|
@@ -936,9 +936,9 @@ cirq/sim/state_vector_simulator.py,sha256=j1Dcu6k3gtX2cHedVlJiSgDQ_WQ2UUUyFnAEeH
|
|
|
936
936
|
cirq/sim/state_vector_simulator_test.py,sha256=wJq1OZRzKokeM9cJyaJXi6wHH2qi97h0HmJlYOEBDzU,7864
|
|
937
937
|
cirq/sim/state_vector_test.py,sha256=AF5LbyRymSjuFDG19gPetp7morKLl8v5yfgf17TFCNg,16586
|
|
938
938
|
cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
|
|
939
|
-
cirq/sim/clifford/clifford_simulator.py,sha256=
|
|
939
|
+
cirq/sim/clifford/clifford_simulator.py,sha256=QXXGNagV1ljuR6oIJiw2i2Bi-PzaWCezAeXK_eUPg_k,9755
|
|
940
940
|
cirq/sim/clifford/clifford_simulator_test.py,sha256=pgLz8-SSFLBq6kcJ516ufQMJiJI2dG9NM2nkmzwY124,20380
|
|
941
|
-
cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=
|
|
941
|
+
cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=YO_I-k-WeIqbwRapUMoJxKA3B93uof8ewbBvVNNIu8M,2159
|
|
942
942
|
cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=KTzEoK5HcauVBj5tc8sXLt5vBXbDhxnFyj1bLt09nHo,3184
|
|
943
943
|
cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=2ZY_tQIp9J4NjoYkEEz1EdlNUGdyws1T7bl5hJ1VPgw,3028
|
|
944
944
|
cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=P6MEakfiHrlVYyoNDOJt9_txIdq9y87WD9lrtJIcM48,3874
|
|
@@ -955,7 +955,7 @@ cirq/study/resolver.py,sha256=dDEGIwWueP7ZICbEAUc6G5li2UoTFkPS9Qs2dSDCbV8,11906
|
|
|
955
955
|
cirq/study/resolver_test.py,sha256=QQe9Rr0z6qNbSWPEvCKd_DNka6454AWVKbG2J2DD1Wg,10228
|
|
956
956
|
cirq/study/result.py,sha256=KzjpjvDVCTFjMyq9r91pZSYdtcD1x3yj8jP_StlOSMg,19285
|
|
957
957
|
cirq/study/result_test.py,sha256=fq5BH78RswfTiYjMchJ4wEDDyaJu0QdJoGobMjKDeSI,15591
|
|
958
|
-
cirq/study/sweepable.py,sha256=
|
|
958
|
+
cirq/study/sweepable.py,sha256=CHC6NMZbenwKdTQrFJnbK4PlwoXhXTWmAzi1ZjSpS00,4357
|
|
959
959
|
cirq/study/sweepable_test.py,sha256=ENv03_GJmbUc_ukJoqfgG-H5C_yyx1jCcvxohSMyQVU,5502
|
|
960
960
|
cirq/study/sweeps.py,sha256=lFryWabkSqtp5f_RS88dWlGYWabkN6OFEwDsDJbxGsM,21599
|
|
961
961
|
cirq/study/sweeps_test.py,sha256=rgnU7zB7hxOXLbalYJb0yy_QPCOd-LxKgUir1bcyC2s,15426
|
|
@@ -1045,7 +1045,7 @@ cirq/transformers/drop_empty_moments.py,sha256=Rtn_BrpwkLXyZBdLzwdnsnEGWTdYuf1xO
|
|
|
1045
1045
|
cirq/transformers/drop_empty_moments_test.py,sha256=G8pZmTfi8NG2NpGz_K3LZu5NQoqa-xPMCuZjwEu07xk,1907
|
|
1046
1046
|
cirq/transformers/drop_negligible_operations.py,sha256=8eyOMy7bra2wJAjORbk6QjwHiLdL5SfwRaz8D2Dazbw,2083
|
|
1047
1047
|
cirq/transformers/drop_negligible_operations_test.py,sha256=gqL6RoDPm6Zf4RxtprBenFyIsZQPUxmPur9oRl0Yr3U,3823
|
|
1048
|
-
cirq/transformers/dynamical_decoupling.py,sha256=
|
|
1048
|
+
cirq/transformers/dynamical_decoupling.py,sha256=NiHZTN2TDgC7um61cP1J5GN_3fAlsK5kqAIYb8Q6aUg,14944
|
|
1049
1049
|
cirq/transformers/dynamical_decoupling_test.py,sha256=XCLH9Clco1KM6NXQmaVYCpUR1SALBRofgFgCH79RBuI,44690
|
|
1050
1050
|
cirq/transformers/eject_phased_paulis.py,sha256=usuPCxHgZf6Aw6pqIU4vOvaOypH4SiT2lY8VwAnlObs,13975
|
|
1051
1051
|
cirq/transformers/eject_phased_paulis_test.py,sha256=-mXsfbi3V0ojC_YqoQM5otzdW4kjGusCx6F-kCv8M98,15834
|
|
@@ -1064,7 +1064,7 @@ cirq/transformers/merge_single_qubit_gates_test.py,sha256=SWf1Il7Bz0iUCDM7JoDG2Y
|
|
|
1064
1064
|
cirq/transformers/noise_adding.py,sha256=fndp5mHYpdErdhd8YlzUtVl0J2phcryuY_zvBIEzguc,4439
|
|
1065
1065
|
cirq/transformers/noise_adding_test.py,sha256=ricl2YSqi0MCzudR2F_FDqr3vEAHFQEVGzHLEXRYSBM,2134
|
|
1066
1066
|
cirq/transformers/optimize_for_target_gateset.py,sha256=MxhFsCm2XgW3gdpNW4NGVmz1VdQvzKdNNCtVZDuZiVE,7229
|
|
1067
|
-
cirq/transformers/optimize_for_target_gateset_test.py,sha256=
|
|
1067
|
+
cirq/transformers/optimize_for_target_gateset_test.py,sha256=SIsv87E6A9xDKvs7g6NNqpepVO_CMbsv2qZpJ2XT6eo,19524
|
|
1068
1068
|
cirq/transformers/qubit_management_transformers.py,sha256=A7Mweu9ElLSCsy_atmgFbYlzOFXKhct5gQ5YNTjjaVU,9430
|
|
1069
1069
|
cirq/transformers/qubit_management_transformers_test.py,sha256=GGuZ4uxtFI59t9diW67_J17XQdBu9NFZjOHeMAHmm8Y,13991
|
|
1070
1070
|
cirq/transformers/randomized_measurements.py,sha256=E1VG4sKWcZ-OZINpFT7F2n0I3kZpButkjNbHz95YaVw,5686
|
|
@@ -1082,7 +1082,7 @@ cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=Dsu
|
|
|
1082
1082
|
cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=AAZh_9vEb5f2E_EItPZTlMRNdv0d47AwqTn4BytX0UI,7102
|
|
1083
1083
|
cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=iFF2vb5tI4PVQVHBOP_tuy8EKUtGg8aMDZSdK-74YMI,8675
|
|
1084
1084
|
cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=sZ2eDF5foEyNhTDqSzTYKkug4CMY7QmF4NCN-FaA530,5050
|
|
1085
|
-
cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=
|
|
1085
|
+
cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=YPkHUwi_FXzjYudOyACXKoa787Mi4chPhxuvc2dQM3I,9109
|
|
1086
1086
|
cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=bwZa0BDclAd1sX3bD-GdNF2MO5DtH7mw2YLppEK0LG0,5568
|
|
1087
1087
|
cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=bU9IoY0igVZTmF_wsTdTxAfqPKWyqZ14Gt2AJoK5D_4,4524
|
|
1088
1088
|
cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=qpFODpCJrE9piYLWR1FzweTn3v80EvLCV-PP2fbHcoE,2112
|
|
@@ -1202,8 +1202,8 @@ cirq/work/sampler.py,sha256=bE5tmVkcR6cZZMLETxDfHehdsYUMbx2RvBeIBetehI4,19187
|
|
|
1202
1202
|
cirq/work/sampler_test.py,sha256=hL2UWx3dz2ukZVNxWftiKVvJcQoLplLZdQm-k1QcA40,13282
|
|
1203
1203
|
cirq/work/zeros_sampler.py,sha256=x1C7cup66a43n-3tm8QjhiqJa07qcJW10FxNp9jJ59Q,2356
|
|
1204
1204
|
cirq/work/zeros_sampler_test.py,sha256=JIkpBBFPJe5Ba4142vzogyWyboG1Q1ZAm0UVGgOoZn8,3279
|
|
1205
|
-
cirq_core-1.5.0.
|
|
1206
|
-
cirq_core-1.5.0.
|
|
1207
|
-
cirq_core-1.5.0.
|
|
1208
|
-
cirq_core-1.5.0.
|
|
1209
|
-
cirq_core-1.5.0.
|
|
1205
|
+
cirq_core-1.5.0.dev20250225182416.dist-info/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1206
|
+
cirq_core-1.5.0.dev20250225182416.dist-info/METADATA,sha256=o7KBCW7Otfb9ef9ecesce0htEYPB5oc25d8-1r_oyfI,4817
|
|
1207
|
+
cirq_core-1.5.0.dev20250225182416.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
1208
|
+
cirq_core-1.5.0.dev20250225182416.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1209
|
+
cirq_core-1.5.0.dev20250225182416.dist-info/RECORD,,
|
{cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/LICENSE
RENAMED
|
File without changes
|
{cirq_core-1.5.0.dev20250225034703.dist-info → cirq_core-1.5.0.dev20250225182416.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|