cirq-core 1.7.0.dev20250825174419__py3-none-any.whl → 1.7.0.dev20251203004401__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.
- cirq/__init__.py +1 -0
- cirq/_compat.py +3 -2
- cirq/_compat_test.py +16 -15
- cirq/_doc.py +4 -3
- cirq/_import.py +2 -1
- cirq/_version.py +1 -1
- cirq/_version_test.py +1 -1
- cirq/circuits/_bucket_priority_queue.py +2 -1
- cirq/circuits/circuit.py +19 -17
- cirq/circuits/circuit_operation.py +2 -1
- cirq/circuits/circuit_operation_test.py +19 -0
- cirq/circuits/circuit_test.py +31 -12
- cirq/circuits/frozen_circuit.py +3 -2
- cirq/circuits/moment.py +3 -15
- cirq/circuits/optimization_pass.py +2 -1
- cirq/circuits/qasm_output.py +39 -10
- cirq/circuits/qasm_output_test.py +51 -2
- cirq/circuits/text_diagram_drawer.py +2 -1
- cirq/contrib/acquaintance/bipartite.py +2 -1
- cirq/contrib/acquaintance/devices.py +1 -1
- cirq/contrib/acquaintance/executor.py +4 -5
- cirq/contrib/acquaintance/executor_test.py +2 -1
- cirq/contrib/acquaintance/gates.py +2 -1
- cirq/contrib/acquaintance/gates_test.py +1 -1
- cirq/contrib/acquaintance/inspection_utils.py +2 -1
- cirq/contrib/acquaintance/mutation_utils.py +2 -1
- cirq/contrib/acquaintance/optimizers.py +2 -1
- cirq/contrib/acquaintance/permutation.py +2 -1
- cirq/contrib/acquaintance/permutation_test.py +1 -1
- cirq/contrib/acquaintance/shift.py +2 -1
- cirq/contrib/acquaintance/shift_swap_network.py +2 -1
- cirq/contrib/acquaintance/strategies/complete.py +3 -2
- cirq/contrib/acquaintance/strategies/cubic.py +2 -1
- cirq/contrib/acquaintance/strategies/quartic_paired.py +2 -1
- cirq/contrib/acquaintance/strategies/quartic_paired_test.py +1 -1
- cirq/contrib/acquaintance/testing.py +2 -1
- cirq/contrib/acquaintance/topological_sort.py +2 -1
- cirq/contrib/bayesian_network/bayesian_network_gate.py +3 -2
- cirq/contrib/circuitdag/circuit_dag.py +4 -2
- cirq/contrib/custom_simulators/custom_state_simulator.py +2 -1
- cirq/contrib/custom_simulators/custom_state_simulator_test.py +1 -1
- cirq/contrib/graph_device/graph_device.py +2 -1
- cirq/contrib/graph_device/graph_device_test.py +2 -1
- cirq/contrib/graph_device/hypergraph.py +2 -1
- cirq/contrib/graph_device/uniform_graph_device.py +2 -1
- cirq/contrib/json.py +14 -2
- cirq/contrib/json_test_data/BayesianNetworkGate.json +10 -0
- cirq/contrib/json_test_data/BayesianNetworkGate.repr +3 -0
- cirq/contrib/json_test_data/QuantumVolumeResult.json +169 -0
- cirq/contrib/json_test_data/QuantumVolumeResult.repr +22 -0
- cirq/contrib/json_test_data/SwapPermutationGate.json +3 -0
- cirq/contrib/json_test_data/SwapPermutationGate.repr +1 -0
- cirq/contrib/json_test_data/spec.py +0 -2
- cirq/contrib/noise_models/noise_models.py +2 -1
- cirq/contrib/paulistring/clifford_optimize.py +20 -2
- cirq/contrib/paulistring/optimize.py +1 -1
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py +146 -35
- cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py +81 -178
- cirq/contrib/paulistring/recombine.py +5 -2
- cirq/contrib/paulistring/separate.py +1 -1
- cirq/contrib/qasm_import/_lexer.py +6 -1
- cirq/contrib/qasm_import/_lexer_test.py +1 -1
- cirq/contrib/qasm_import/_parser.py +24 -8
- cirq/contrib/qasm_import/_parser_test.py +44 -6
- cirq/contrib/qcircuit/qcircuit_pdf_test.py +6 -9
- cirq/contrib/quantikz/__init__.py +21 -0
- cirq/contrib/quantikz/circuit_to_latex_quantikz.py +680 -0
- cirq/contrib/quantikz/circuit_to_latex_quantikz_test.py +253 -0
- cirq/contrib/quantikz/circuit_to_latex_render.py +424 -0
- cirq/contrib/quantikz/circuit_to_latex_render_test.py +44 -0
- cirq/contrib/quantum_volume/quantum_volume.py +2 -1
- cirq/contrib/quimb/density_matrix.py +1 -1
- cirq/contrib/quimb/grid_circuits.py +2 -1
- cirq/contrib/quimb/grid_circuits_test.py +1 -1
- cirq/contrib/quimb/mps_simulator.py +4 -3
- cirq/contrib/quimb/state_vector.py +2 -1
- cirq/contrib/quirk/export_to_quirk.py +2 -1
- cirq/contrib/quirk/linearize_circuit.py +1 -1
- cirq/contrib/quirk/quirk_gate.py +2 -1
- cirq/contrib/routing/device.py +1 -1
- cirq/contrib/routing/greedy.py +2 -1
- cirq/contrib/routing/initialization.py +2 -1
- cirq/contrib/routing/router.py +2 -1
- cirq/contrib/routing/swap_network.py +2 -1
- cirq/contrib/routing/utils.py +2 -1
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py +7 -5
- cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py +6 -6
- cirq/devices/device.py +2 -1
- cirq/devices/grid_device_metadata.py +2 -1
- cirq/devices/grid_qubit.py +7 -6
- cirq/devices/insertion_noise_model.py +2 -1
- cirq/devices/line_qubit.py +2 -1
- cirq/devices/named_topologies.py +2 -1
- cirq/devices/noise_model.py +2 -1
- cirq/devices/noise_model_test.py +1 -1
- cirq/devices/noise_properties.py +2 -1
- cirq/devices/superconducting_qubits_noise_properties_test.py +2 -1
- cirq/devices/thermal_noise_model.py +2 -1
- cirq/experiments/__init__.py +2 -0
- cirq/experiments/benchmarking/parallel_xeb.py +2 -1
- cirq/experiments/benchmarking/parallel_xeb_test.py +1 -1
- cirq/experiments/fidelity_estimation.py +2 -1
- cirq/experiments/fidelity_estimation_test.py +1 -1
- cirq/experiments/ghz_2d.py +150 -0
- cirq/experiments/ghz_2d_test.py +155 -0
- cirq/experiments/n_qubit_tomography.py +2 -1
- cirq/experiments/n_qubit_tomography_test.py +1 -1
- cirq/experiments/purity_estimation.py +1 -1
- cirq/experiments/qubit_characterizations.py +33 -4
- cirq/experiments/qubit_characterizations_test.py +16 -0
- cirq/experiments/random_quantum_circuit_generation.py +2 -1
- cirq/experiments/random_quantum_circuit_generation_test.py +2 -1
- cirq/experiments/readout_confusion_matrix.py +2 -1
- cirq/experiments/readout_confusion_matrix_test.py +1 -1
- cirq/experiments/single_qubit_readout_calibration.py +2 -1
- cirq/experiments/single_qubit_readout_calibration_test.py +1 -1
- cirq/experiments/t1_decay_experiment.py +2 -1
- cirq/experiments/two_qubit_xeb.py +2 -1
- cirq/experiments/two_qubit_xeb_test.py +1 -1
- cirq/experiments/xeb_fitting.py +2 -1
- cirq/experiments/xeb_fitting_test.py +1 -1
- cirq/experiments/xeb_sampling.py +5 -3
- cirq/experiments/xeb_sampling_test.py +1 -1
- cirq/experiments/xeb_simulation.py +2 -1
- cirq/experiments/xeb_simulation_test.py +2 -1
- cirq/experiments/z_phase_calibration.py +2 -1
- cirq/experiments/z_phase_calibration_test.py +18 -3
- cirq/interop/quirk/cells/__init__.py +1 -2
- cirq/interop/quirk/cells/all_cells.py +2 -1
- cirq/interop/quirk/cells/arithmetic_cells.py +2 -1
- cirq/interop/quirk/cells/cell.py +2 -1
- cirq/interop/quirk/cells/composite_cell.py +2 -1
- cirq/interop/quirk/cells/composite_cell_test.py +1 -1
- cirq/interop/quirk/cells/control_cells.py +2 -1
- cirq/interop/quirk/cells/frequency_space_cells.py +1 -1
- cirq/interop/quirk/cells/ignored_cells.py +1 -1
- cirq/interop/quirk/cells/input_cells.py +2 -1
- cirq/interop/quirk/cells/input_rotation_cells.py +2 -1
- cirq/interop/quirk/cells/measurement_cells.py +2 -1
- cirq/interop/quirk/cells/parse.py +2 -11
- cirq/interop/quirk/cells/qubit_permutation_cells.py +2 -1
- cirq/interop/quirk/cells/scalar_cells.py +2 -1
- cirq/interop/quirk/cells/single_qubit_rotation_cells.py +2 -1
- cirq/interop/quirk/cells/swap_cell.py +2 -1
- cirq/interop/quirk/cells/unsupported_cells.py +1 -1
- cirq/interop/quirk/url_to_circuit.py +2 -1
- cirq/json_resolver_cache.py +0 -2
- cirq/linalg/decompositions.py +6 -2
- cirq/linalg/decompositions_test.py +1 -0
- cirq/linalg/diagonalize.py +1 -1
- cirq/linalg/predicates.py +2 -1
- cirq/linalg/tolerance.py +2 -1
- cirq/linalg/transformations.py +3 -2
- cirq/ops/arithmetic_operation.py +4 -3
- cirq/ops/arithmetic_operation_test.py +1 -1
- cirq/ops/boolean_hamiltonian.py +4 -3
- cirq/ops/classically_controlled_operation.py +11 -11
- cirq/ops/classically_controlled_operation_test.py +26 -2
- cirq/ops/clifford_gate.py +3 -2
- cirq/ops/clifford_gate_test.py +1 -2
- cirq/ops/common_channels.py +2 -1
- cirq/ops/common_gates.py +3 -2
- cirq/ops/control_values.py +2 -1
- cirq/ops/controlled_gate.py +3 -2
- cirq/ops/controlled_gate_test.py +2 -1
- cirq/ops/controlled_operation.py +3 -2
- cirq/ops/controlled_operation_test.py +2 -1
- cirq/ops/dense_pauli_string.py +44 -81
- cirq/ops/dense_pauli_string_test.py +21 -0
- cirq/ops/diagonal_gate.py +3 -2
- cirq/ops/eigen_gate.py +9 -7
- cirq/ops/fourier_transform.py +3 -2
- cirq/ops/fourier_transform_test.py +2 -4
- cirq/ops/fsim_gate.py +3 -2
- cirq/ops/gate_operation.py +23 -12
- cirq/ops/gateset.py +22 -2
- cirq/ops/global_phase_op.py +3 -2
- cirq/ops/greedy_qubit_manager.py +2 -1
- cirq/ops/identity.py +2 -1
- cirq/ops/kraus_channel.py +2 -1
- cirq/ops/linear_combinations.py +12 -17
- cirq/ops/linear_combinations_test.py +23 -1
- cirq/ops/matrix_gates.py +2 -1
- cirq/ops/measure_util.py +8 -6
- cirq/ops/measurement_gate.py +2 -1
- cirq/ops/mixed_unitary_channel.py +2 -1
- cirq/ops/named_qubit.py +2 -2
- cirq/ops/op_tree.py +2 -1
- cirq/ops/parallel_gate.py +3 -2
- cirq/ops/parity_gates.py +2 -1
- cirq/ops/parity_gates_test.py +35 -0
- cirq/ops/pauli_interaction_gate.py +2 -1
- cirq/ops/pauli_measurement_gate.py +2 -1
- cirq/ops/pauli_string.py +37 -57
- cirq/ops/pauli_string_phasor.py +6 -5
- cirq/ops/pauli_string_raw_types.py +2 -1
- cirq/ops/pauli_string_test.py +49 -6
- cirq/ops/pauli_sum_exponential.py +2 -1
- cirq/ops/permutation_gate.py +2 -1
- cirq/ops/phased_iswap_gate.py +3 -2
- cirq/ops/phased_x_gate.py +5 -4
- cirq/ops/phased_x_z_gate.py +12 -5
- cirq/ops/projector.py +2 -1
- cirq/ops/qubit_manager.py +2 -1
- cirq/ops/qubit_order.py +2 -1
- cirq/ops/qubit_order_or_list.py +1 -1
- cirq/ops/random_gate_channel.py +3 -2
- cirq/ops/raw_types.py +33 -16
- cirq/ops/raw_types_test.py +4 -3
- cirq/ops/state_preparation_channel.py +2 -1
- cirq/ops/three_qubit_gates.py +3 -2
- cirq/ops/two_qubit_diagonal_gate.py +3 -2
- cirq/ops/uniform_superposition_gate.py +2 -1
- cirq/ops/wait_gate.py +10 -4
- cirq/protocols/act_on_protocol.py +2 -1
- cirq/protocols/act_on_protocol_test.py +2 -1
- cirq/protocols/apply_channel_protocol.py +2 -1
- cirq/protocols/apply_mixture_protocol.py +2 -1
- cirq/protocols/apply_mixture_protocol_test.py +2 -1
- cirq/protocols/apply_unitary_protocol.py +2 -1
- cirq/protocols/apply_unitary_protocol_test.py +2 -0
- cirq/protocols/approximate_equality_protocol.py +2 -1
- cirq/protocols/circuit_diagram_info_protocol.py +2 -1
- cirq/protocols/control_key_protocol.py +7 -0
- cirq/protocols/decompose_protocol.py +2 -12
- cirq/protocols/has_stabilizer_effect_protocol.py +1 -1
- cirq/protocols/has_stabilizer_effect_protocol_test.py +11 -9
- cirq/protocols/has_unitary_protocol_test.py +3 -3
- cirq/protocols/hash_from_pickle_test.py +2 -2
- cirq/protocols/inverse_protocol.py +2 -1
- cirq/protocols/json_serialization.py +5 -4
- cirq/protocols/json_serialization_test.py +31 -31
- cirq/protocols/kraus_protocol.py +4 -3
- cirq/protocols/kraus_protocol_test.py +7 -7
- cirq/protocols/measurement_key_protocol.py +32 -8
- cirq/protocols/mixture_protocol.py +3 -2
- cirq/protocols/mixture_protocol_test.py +7 -7
- cirq/protocols/mul_protocol_test.py +4 -4
- cirq/protocols/phase_protocol.py +13 -4
- cirq/protocols/pow_protocol.py +2 -1
- cirq/protocols/pow_protocol_test.py +5 -5
- cirq/protocols/qasm.py +2 -1
- cirq/protocols/qid_shape_protocol.py +2 -1
- cirq/protocols/resolve_parameters.py +17 -15
- cirq/protocols/trace_distance_bound.py +2 -1
- cirq/protocols/unitary_protocol.py +21 -21
- cirq/protocols/unitary_protocol_test.py +31 -19
- cirq/qis/channels.py +1 -1
- cirq/qis/channels_test.py +1 -1
- cirq/qis/clifford_tableau.py +16 -15
- cirq/qis/clifford_tableau_test.py +17 -17
- cirq/qis/entropy.py +3 -3
- cirq/qis/entropy_test.py +1 -1
- cirq/qis/quantum_state_representation.py +2 -1
- cirq/qis/states.py +7 -2
- cirq/qis/states_test.py +54 -54
- cirq/sim/classical_simulator.py +25 -14
- cirq/sim/classical_simulator_test.py +85 -30
- cirq/sim/clifford/clifford_simulator.py +7 -6
- cirq/sim/clifford/clifford_simulator_test.py +51 -50
- cirq/sim/clifford/clifford_tableau_simulation_state.py +2 -1
- cirq/sim/clifford/stabilizer_ch_form_simulation_state.py +2 -1
- cirq/sim/clifford/stabilizer_sampler.py +1 -1
- cirq/sim/clifford/stabilizer_simulation_state.py +2 -1
- cirq/sim/clifford/stabilizer_state_ch_form.py +16 -15
- cirq/sim/clifford/stabilizer_state_ch_form_test.py +0 -1
- cirq/sim/density_matrix_simulation_state.py +7 -6
- cirq/sim/density_matrix_simulator.py +3 -2
- cirq/sim/density_matrix_simulator_test.py +94 -84
- cirq/sim/density_matrix_utils.py +2 -1
- cirq/sim/density_matrix_utils_test.py +1 -1
- cirq/sim/mux.py +35 -8
- cirq/sim/mux_test.py +39 -26
- cirq/sim/simulation_product_state.py +2 -1
- cirq/sim/simulation_product_state_test.py +8 -7
- cirq/sim/simulation_state.py +6 -5
- cirq/sim/simulation_state_base.py +3 -2
- cirq/sim/simulation_state_test.py +7 -6
- cirq/sim/simulation_utils.py +2 -1
- cirq/sim/simulator.py +4 -3
- cirq/sim/simulator_base.py +2 -1
- cirq/sim/simulator_base_test.py +51 -36
- cirq/sim/simulator_test.py +41 -36
- cirq/sim/sparse_simulator.py +3 -2
- cirq/sim/sparse_simulator_test.py +92 -82
- cirq/sim/state_vector.py +5 -6
- cirq/sim/state_vector_simulation_state.py +10 -9
- cirq/sim/state_vector_simulator.py +2 -1
- cirq/sim/state_vector_simulator_test.py +9 -9
- cirq/sim/state_vector_test.py +40 -39
- cirq/study/__init__.py +1 -0
- cirq/study/flatten_expressions.py +2 -1
- cirq/study/resolver.py +31 -18
- cirq/study/resolver_test.py +1 -1
- cirq/study/result.py +2 -1
- cirq/study/result_test.py +20 -20
- cirq/study/sweepable.py +2 -1
- cirq/study/sweepable_test.py +20 -20
- cirq/study/sweeps.py +26 -1
- cirq/study/sweeps_test.py +67 -43
- cirq/testing/_compat_test_data/__init__.py +3 -3
- cirq/testing/circuit_compare.py +2 -1
- cirq/testing/circuit_compare_test.py +16 -14
- cirq/testing/consistent_act_on_test.py +1 -1
- cirq/testing/consistent_channels.py +2 -2
- cirq/testing/consistent_controlled_gate_op.py +2 -2
- cirq/testing/consistent_controlled_gate_op_test.py +2 -1
- cirq/testing/consistent_decomposition.py +4 -2
- cirq/testing/consistent_phase_by.py +1 -1
- cirq/testing/consistent_protocols.py +2 -1
- cirq/testing/consistent_protocols_test.py +3 -3
- cirq/testing/consistent_qasm.py +4 -3
- cirq/testing/consistent_qasm_test.py +3 -3
- cirq/testing/consistent_resolve_parameters.py +1 -1
- cirq/testing/consistent_unitary.py +1 -1
- cirq/testing/consistent_unitary_test.py +1 -1
- cirq/testing/deprecation.py +1 -1
- cirq/testing/devices.py +3 -2
- cirq/testing/equals_tester.py +4 -3
- cirq/testing/equivalent_basis_map.py +4 -2
- cirq/testing/json.py +3 -2
- cirq/testing/lin_alg_utils.py +1 -1
- cirq/testing/logs.py +1 -1
- cirq/testing/op_tree.py +1 -1
- cirq/testing/order_tester.py +2 -2
- cirq/testing/pytest_utils.py +2 -1
- cirq/testing/random_circuit.py +2 -1
- cirq/testing/random_circuit_test.py +2 -1
- cirq/testing/repr_pretty_tester.py +3 -3
- cirq/transformers/__init__.py +1 -0
- cirq/transformers/_connected_component.py +231 -0
- cirq/transformers/_connected_component_test.py +200 -0
- cirq/transformers/align_test.py +13 -13
- cirq/transformers/analytical_decompositions/clifford_decomposition.py +8 -7
- cirq/transformers/analytical_decompositions/clifford_decomposition_test.py +5 -5
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py +11 -10
- cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py +6 -6
- cirq/transformers/analytical_decompositions/cphase_to_fsim.py +3 -2
- cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py +11 -10
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py +8 -7
- cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py +17 -20
- cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py +33 -27
- cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py +1 -1
- cirq/transformers/analytical_decompositions/three_qubit_decomposition.py +1 -1
- cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py +12 -11
- cirq/transformers/analytical_decompositions/two_qubit_to_cz.py +5 -2
- cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py +3 -3
- cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py +2 -1
- cirq/transformers/analytical_decompositions/two_qubit_to_ms.py +2 -1
- cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py +2 -2
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py +2 -1
- cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py +32 -30
- cirq/transformers/drop_negligible_operations_test.py +7 -7
- cirq/transformers/dynamical_decoupling.py +185 -112
- cirq/transformers/dynamical_decoupling_test.py +195 -201
- cirq/transformers/eject_phased_paulis.py +2 -1
- cirq/transformers/eject_phased_paulis_test.py +3 -2
- cirq/transformers/eject_z.py +5 -3
- cirq/transformers/eject_z_test.py +23 -25
- cirq/transformers/expand_composite.py +3 -2
- cirq/transformers/expand_composite_test.py +14 -14
- cirq/transformers/gauge_compiling/__init__.py +13 -0
- cirq/transformers/gauge_compiling/gauge_compiling.py +3 -2
- cirq/transformers/gauge_compiling/gauge_compiling_test.py +14 -12
- cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py +3 -3
- cirq/transformers/gauge_compiling/idle_moments_gauge.py +225 -0
- cirq/transformers/gauge_compiling/idle_moments_gauge_test.py +193 -0
- cirq/transformers/gauge_compiling/multi_moment_cphase_gauge.py +242 -0
- cirq/transformers/gauge_compiling/multi_moment_cphase_gauge_test.py +243 -0
- cirq/transformers/gauge_compiling/multi_moment_gauge_compiling.py +151 -0
- cirq/transformers/gauge_compiling/sqrt_cz_gauge.py +2 -1
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py +1 -1
- cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py +6 -6
- cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py +3 -2
- cirq/transformers/measurement_transformers.py +2 -1
- cirq/transformers/measurement_transformers_test.py +45 -39
- cirq/transformers/merge_k_qubit_gates.py +2 -1
- cirq/transformers/merge_k_qubit_gates_test.py +1 -1
- cirq/transformers/merge_single_qubit_gates.py +9 -5
- cirq/transformers/merge_single_qubit_gates_test.py +22 -22
- cirq/transformers/noise_adding_test.py +2 -2
- cirq/transformers/optimize_for_target_gateset.py +2 -1
- cirq/transformers/optimize_for_target_gateset_test.py +11 -9
- cirq/transformers/qubit_management_transformers_test.py +6 -2
- cirq/transformers/routing/mapping_manager.py +2 -1
- cirq/transformers/routing/route_circuit_cqc.py +2 -1
- cirq/transformers/stratify.py +2 -1
- cirq/transformers/symbolize.py +2 -1
- cirq/transformers/tag_transformers.py +2 -1
- cirq/transformers/target_gatesets/compilation_target_gateset.py +2 -1
- cirq/transformers/target_gatesets/cz_gateset.py +2 -1
- cirq/transformers/target_gatesets/cz_gateset_test.py +1 -1
- cirq/transformers/target_gatesets/sqrt_iswap_gateset.py +2 -1
- cirq/transformers/transformer_api.py +2 -1
- cirq/transformers/transformer_primitives.py +271 -145
- cirq/transformers/transformer_primitives_test.py +185 -1
- cirq/value/abc_alt.py +2 -1
- cirq/value/classical_data.py +2 -1
- cirq/value/condition.py +2 -1
- cirq/value/digits.py +9 -2
- cirq/value/duration.py +6 -5
- cirq/value/linear_dict.py +4 -9
- cirq/value/measurement_key.py +2 -1
- cirq/value/periodic_value.py +3 -2
- cirq/value/product_state.py +2 -1
- cirq/value/value_equality_attr.py +2 -1
- cirq/vis/density_matrix.py +1 -1
- cirq/vis/heatmap.py +2 -1
- cirq/vis/histogram.py +2 -1
- cirq/vis/state_histogram.py +2 -1
- cirq/work/collector.py +2 -1
- cirq/work/observable_grouping.py +2 -1
- cirq/work/observable_measurement.py +2 -1
- cirq/work/observable_measurement_data.py +2 -1
- cirq/work/observable_measurement_test.py +1 -1
- cirq/work/observable_readout_calibration.py +2 -1
- cirq/work/observable_readout_calibration_test.py +1 -1
- cirq/work/observable_settings.py +2 -1
- cirq/work/sampler.py +2 -1
- cirq/work/sampler_test.py +1 -1
- {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/METADATA +5 -6
- {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/RECORD +425 -406
- cirq/contrib/json_test.py +0 -33
- {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/WHEEL +0 -0
- {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/licenses/LICENSE +0 -0
- {cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/top_level.txt +0 -0
{cirq_core-1.7.0.dev20250825174419.dist-info → cirq_core-1.7.0.dev20251203004401.dist-info}/RECORD
RENAMED
|
@@ -1,89 +1,90 @@
|
|
|
1
|
-
cirq/__init__.py,sha256=
|
|
2
|
-
cirq/_compat.py,sha256=
|
|
3
|
-
cirq/_compat_test.py,sha256=
|
|
4
|
-
cirq/_doc.py,sha256=
|
|
5
|
-
cirq/_import.py,sha256=
|
|
1
|
+
cirq/__init__.py,sha256=1K7Bye9VQqTSOmPsAja6RkvTTOO0GHsiHs2ovWFoWDs,28365
|
|
2
|
+
cirq/_compat.py,sha256=nALb-aGhCTrrpcNJOAEt8FL4NZ345sB5reRGBa87H-A,29510
|
|
3
|
+
cirq/_compat_test.py,sha256=iowY-I0JDi6ghaJ5Mll3YKCGb1y3QvA91QW4pt5kRdM,33983
|
|
4
|
+
cirq/_doc.py,sha256=28ZskY9ZtZ_4GS1oXPUgklKnJqmAE-rkUfzcsJ0--nA,2941
|
|
5
|
+
cirq/_import.py,sha256=AermWa_ylM_4HpA1nJZIU5hWMtRx3a84RBS6ZZYtwg0,8456
|
|
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=bywb7qL588MApH9N8U_yd_OM0Xpdf5PH61Nlhfxhsyg,1206
|
|
8
|
+
cirq/_version_test.py,sha256=91ydPUuuFH5Sz3-Jya0wbVeFWmQhR5_3eMnJwkZhHp8,155
|
|
9
9
|
cirq/conftest.py,sha256=wSDKNdIQRDfLnXvOCWD3erheOw8JHRhdfQ53EyTUIXg,1239
|
|
10
|
-
cirq/json_resolver_cache.py,sha256=
|
|
10
|
+
cirq/json_resolver_cache.py,sha256=GLI5E_ym3_1qZjOWdOS7-x0Z6W4y3zU6wNor-kW_1VQ,13649
|
|
11
11
|
cirq/py.typed,sha256=VFSlmh_lNwnaXzwY-ZuW-C2Ws5PkuDoVgBdNCs0jXJE,63
|
|
12
12
|
cirq/circuits/__init__.py,sha256=HKunqRpZoDmjy1IiK9Cn84MTGT84_PMeQ5VDCPafcWk,1335
|
|
13
13
|
cirq/circuits/_block_diagram_drawer.py,sha256=OpIupxl6plGVaLkU13RqYGELAlHAIy56tV6qjg51Yws,9489
|
|
14
14
|
cirq/circuits/_block_diagram_drawer_test.py,sha256=3i05N0xIYOyrmAKKxSTIQYrLhVTwU8OEunecX5SSIRU,11475
|
|
15
15
|
cirq/circuits/_box_drawing_character_data.py,sha256=hExbMJHm9LGORhlhNiUvPiHquv4pJqIgJqJCivW4dbM,12109
|
|
16
16
|
cirq/circuits/_box_drawing_character_data_test.py,sha256=GyiNQDtiu_drzEe_y8DOXCFRYDKr2k8KetXN5RVDp18,1668
|
|
17
|
-
cirq/circuits/_bucket_priority_queue.py,sha256=
|
|
17
|
+
cirq/circuits/_bucket_priority_queue.py,sha256=5xQTiYd0bhJOr6_e_SZPlJlnUyeSb7G9C28CJCY4SIk,6776
|
|
18
18
|
cirq/circuits/_bucket_priority_queue_test.py,sha256=MOby-UKYZQMe2n4KhqkfDCPrz-T_3eBbWDEa0_nadJQ,5627
|
|
19
|
-
cirq/circuits/circuit.py,sha256=
|
|
20
|
-
cirq/circuits/circuit_operation.py,sha256=
|
|
21
|
-
cirq/circuits/circuit_operation_test.py,sha256=
|
|
22
|
-
cirq/circuits/circuit_test.py,sha256=
|
|
23
|
-
cirq/circuits/frozen_circuit.py,sha256=
|
|
19
|
+
cirq/circuits/circuit.py,sha256=gNDkhVcngLl6nn0ycQo019anbuJquRmppENEs96tEhw,123231
|
|
20
|
+
cirq/circuits/circuit_operation.py,sha256=uQTumySxcgyzQCZtG-M88PRR7USekj-aG1Dvzw76Z8o,36365
|
|
21
|
+
cirq/circuits/circuit_operation_test.py,sha256=9AR_11BiZN4lEoBXgN2Ukkx7Eqfz04tcCAxDDrclAQk,51358
|
|
22
|
+
cirq/circuits/circuit_test.py,sha256=KdeasorYf3sSk8d1m28FMEn8KDnIA0hsMAvru76I3kc,167214
|
|
23
|
+
cirq/circuits/frozen_circuit.py,sha256=il5GhsaEPkx8pJR61jnCf5kQRHjQTp9MQqS3HSJ9Em4,7914
|
|
24
24
|
cirq/circuits/frozen_circuit_test.py,sha256=1Uk3g9St_nJFmu3IJ5hAcXWJjLfWFUXTCKQU1b0JJrE,5321
|
|
25
25
|
cirq/circuits/insert_strategy.py,sha256=3995vK4U6O9RV4BXMoFl9Tf3ekxIiqxv71IuX80JtYo,3237
|
|
26
26
|
cirq/circuits/insert_strategy_test.py,sha256=pBFgsylgRG1CS1h4JyzZQFP-xvh6fSbgpiZgxXfbpr4,1237
|
|
27
|
-
cirq/circuits/moment.py,sha256=
|
|
27
|
+
cirq/circuits/moment.py,sha256=A1IemNE8YHKUFjg2tVVxrRnDuHxP394mVvJm9-QSHKs,28296
|
|
28
28
|
cirq/circuits/moment_test.py,sha256=wTfFl3yret5d5NTsUW1hAoATEZ0iZJ0tFiXHBKgkMUs,34255
|
|
29
|
-
cirq/circuits/optimization_pass.py,sha256=
|
|
29
|
+
cirq/circuits/optimization_pass.py,sha256=uhLTcet3jfVRo_GhiKfYHrO6JQzJx3q6dDcBZSonhf0,6508
|
|
30
30
|
cirq/circuits/optimization_pass_test.py,sha256=FvCCOZrqVQLYrf_BUAZ6M-sm6dMv00_xsvpN25Op1BA,5914
|
|
31
|
-
cirq/circuits/qasm_output.py,sha256=
|
|
32
|
-
cirq/circuits/qasm_output_test.py,sha256=
|
|
33
|
-
cirq/circuits/text_diagram_drawer.py,sha256=
|
|
31
|
+
cirq/circuits/qasm_output.py,sha256=ZCr9ibMqSpR-1ebRgl7rEwrs2gRp4rCt7bGS59Ociyo,14322
|
|
32
|
+
cirq/circuits/qasm_output_test.py,sha256=s5Y8x_z4IOAZ8FlpjWtEarPAydYiv0OqVFl1AV0XmMI,16402
|
|
33
|
+
cirq/circuits/text_diagram_drawer.py,sha256=zaJY3nA5WgfldVcUp3ka4OyWnmhqMBoyvnp1JhQ1DMk,16512
|
|
34
34
|
cirq/circuits/text_diagram_drawer_test.py,sha256=YBe8zT7BDENoR-gA3l77mtRj6vxY3kVVZ4FqBO_WwsY,11031
|
|
35
35
|
cirq/contrib/__init__.py,sha256=DSA8bHVvPSivnEtLS2WmAa89pzGxK8u2MyMHwpJ3HSM,1121
|
|
36
|
-
cirq/contrib/json.py,sha256=
|
|
37
|
-
cirq/contrib/json_test.py,sha256=9wJb-N1Sv_Epz548el6g6iZYB5VgPk2eOBHYur0V0ho,1178
|
|
36
|
+
cirq/contrib/json.py,sha256=2KQtIgFWbt8L9atmiGYLeF1LnnT3dSmbUx2VjiCPq74,1803
|
|
38
37
|
cirq/contrib/acquaintance/__init__.py,sha256=hIRO807ywD3L5xwIPROAOq5FFnel9uXcQCw1uYBlNhg,3215
|
|
39
|
-
cirq/contrib/acquaintance/bipartite.py,sha256=
|
|
38
|
+
cirq/contrib/acquaintance/bipartite.py,sha256=f_u6TZinohHCAek6kqLcd_RhBUuyURYUqR2JHHOLXnM,6521
|
|
40
39
|
cirq/contrib/acquaintance/bipartite_test.py,sha256=6MFUyDjhX6uoqVOmb7uMf7HFC-AY6-Oi3TXQcH416LE,16240
|
|
41
|
-
cirq/contrib/acquaintance/devices.py,sha256=
|
|
40
|
+
cirq/contrib/acquaintance/devices.py,sha256=5X5nRe6f7aSWxB9jZyWykSoW2BDO4u6t10-1vjH6su8,3049
|
|
42
41
|
cirq/contrib/acquaintance/devices_test.py,sha256=X2qBUFZ5V1yv6nTnlZ-ncVNspd_nlGBqXmVpw1yw4NY,1285
|
|
43
|
-
cirq/contrib/acquaintance/executor.py,sha256=
|
|
44
|
-
cirq/contrib/acquaintance/executor_test.py,sha256=
|
|
45
|
-
cirq/contrib/acquaintance/gates.py,sha256=
|
|
46
|
-
cirq/contrib/acquaintance/gates_test.py,sha256=
|
|
47
|
-
cirq/contrib/acquaintance/inspection_utils.py,sha256=
|
|
42
|
+
cirq/contrib/acquaintance/executor.py,sha256=Zv_l-Aputg72-VJ04KYAu7mMYsBlrRoo_bu6Rywkdlc,8609
|
|
43
|
+
cirq/contrib/acquaintance/executor_test.py,sha256=610u5jSluJPaJsYXAXYJDC7uFpJzBEYoAd1ubfeI6Sw,8144
|
|
44
|
+
cirq/contrib/acquaintance/gates.py,sha256=4xsFlHV9yBMsRA2dFfsCR-7plIVE40oVQ8WgnaocCto,13527
|
|
45
|
+
cirq/contrib/acquaintance/gates_test.py,sha256=_GXpYKRWILs6NOKCuf9NKnnkF5-K_vEPfAe297W8BEA,15198
|
|
46
|
+
cirq/contrib/acquaintance/inspection_utils.py,sha256=iLzoisg_ZU4yTCPCKz0qCW8fgwxVc08QktWV-d5Ro4E,2748
|
|
48
47
|
cirq/contrib/acquaintance/inspection_utils_test.py,sha256=e2mLz0Wc-6dGTdBcfiW94fYIxW0pg-W1ePalO6bCR7M,1478
|
|
49
|
-
cirq/contrib/acquaintance/mutation_utils.py,sha256=
|
|
48
|
+
cirq/contrib/acquaintance/mutation_utils.py,sha256=cYGeKIrnCcfKiqlmrtEqhWnSAhTtRUDFCU_G7AfdBsQ,4743
|
|
50
49
|
cirq/contrib/acquaintance/mutation_utils_test.py,sha256=_wDNSWIUAkgFa8T6xlcxP0bItLpEiSGd37mdDgEobq0,7900
|
|
51
|
-
cirq/contrib/acquaintance/optimizers.py,sha256=
|
|
50
|
+
cirq/contrib/acquaintance/optimizers.py,sha256=qqY-r5zWyoK-oeC3DHQ5Z8c8mBC_4Pufx1TJDYPk7EU,2126
|
|
52
51
|
cirq/contrib/acquaintance/optimizers_test.py,sha256=SGNvMoW73sdqVJr08NvXJeQvd0zg2y1rOB6iUEeHDsA,2500
|
|
53
|
-
cirq/contrib/acquaintance/permutation.py,sha256=
|
|
54
|
-
cirq/contrib/acquaintance/permutation_test.py,sha256=
|
|
55
|
-
cirq/contrib/acquaintance/shift.py,sha256=
|
|
56
|
-
cirq/contrib/acquaintance/shift_swap_network.py,sha256=
|
|
52
|
+
cirq/contrib/acquaintance/permutation.py,sha256=b4NwAxv6FPgQR2zgm0qKnUSLvryUben5owOGyOlzGXw,11760
|
|
53
|
+
cirq/contrib/acquaintance/permutation_test.py,sha256=Zv0oYoI_ElzeXvQh0jREs76KY3b_97zsh38PEDtkAj8,11922
|
|
54
|
+
cirq/contrib/acquaintance/shift.py,sha256=NCtvtmh-OOTA6Ul5BKUt2zRHRMFVx1plrFrJDMMHlDE,3098
|
|
55
|
+
cirq/contrib/acquaintance/shift_swap_network.py,sha256=MmAJNZekDo_PkLCf35ivLvmHGWAHQJjkWdOdTMXVv2o,5312
|
|
57
56
|
cirq/contrib/acquaintance/shift_swap_network_test.py,sha256=AIG4kihV_HE04tL065GL9a2NpJChaV6F0rTCqF6q_mg,11722
|
|
58
57
|
cirq/contrib/acquaintance/shift_test.py,sha256=srf0_Sa-k6xIzwY9lCCwGn7ev2fFnJ4la1OHy9XmgX0,4639
|
|
59
|
-
cirq/contrib/acquaintance/testing.py,sha256=
|
|
60
|
-
cirq/contrib/acquaintance/topological_sort.py,sha256=
|
|
58
|
+
cirq/contrib/acquaintance/testing.py,sha256=XBaa1hX9GBPBIUi8k_DfR-XXZrGxDZqb2Zlvn0Y4dQc,1645
|
|
59
|
+
cirq/contrib/acquaintance/topological_sort.py,sha256=Gp5cVQkdvwvKYNQuiwJn-1Xkkz2ZeSTWeNDI_MJYQMY,3007
|
|
61
60
|
cirq/contrib/acquaintance/topological_sort_test.py,sha256=qYVwguw93ouBO13P95wFb7Igdc8WOdTiK5dNH_asZ0A,1716
|
|
62
61
|
cirq/contrib/acquaintance/strategies/__init__.py,sha256=yz8Lx08TstxjUhphVf8vjFSEaqrkNs99RIrOhHZrPlU,1022
|
|
63
|
-
cirq/contrib/acquaintance/strategies/complete.py,sha256=
|
|
64
|
-
cirq/contrib/acquaintance/strategies/cubic.py,sha256=
|
|
62
|
+
cirq/contrib/acquaintance/strategies/complete.py,sha256=Ifak8XBR8vhxQACuRKssMcVa9Ua5YfjC1WUHWyIE2cw,2219
|
|
63
|
+
cirq/contrib/acquaintance/strategies/cubic.py,sha256=5fcr5fspUs8YgZEixFU_UOjUFB57Zs2JNjhhbNym7xc,3200
|
|
65
64
|
cirq/contrib/acquaintance/strategies/cubic_test.py,sha256=ew1VlBa-FuhWQnMt1sqngM-fyfJhNLNKs4ZvYHc0ofs,1599
|
|
66
|
-
cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=
|
|
67
|
-
cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=
|
|
65
|
+
cirq/contrib/acquaintance/strategies/quartic_paired.py,sha256=7RJovxp2V-Qc6RjcxlcXwXiucVSrI7ZWFTyGawIf_o0,2597
|
|
66
|
+
cirq/contrib/acquaintance/strategies/quartic_paired_test.py,sha256=nxygcy98bZjKcmCT2jUoSaKtysjcMM3jQNQGcFIPZJ4,2301
|
|
68
67
|
cirq/contrib/bayesian_network/__init__.py,sha256=gR0nRY83RmjX_W16Q2lMpXYOm6wD0Fw8kbRpfOVUZ9I,701
|
|
69
|
-
cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=
|
|
68
|
+
cirq/contrib/bayesian_network/bayesian_network_gate.py,sha256=4y4StSeIeHZ0qeYpPzeepTr18BgY8prESM7bl52xv-E,9167
|
|
70
69
|
cirq/contrib/bayesian_network/bayesian_network_gate_test.py,sha256=L5SXu7ygwtRB6umpDmRzYMo6tm17KcWdO3vynAqGmvA,6005
|
|
71
70
|
cirq/contrib/circuitdag/__init__.py,sha256=0FBbgVjA_nbQQH_B1RkRVotqtWLTcqsh7IPxKnvPPvs,745
|
|
72
|
-
cirq/contrib/circuitdag/circuit_dag.py,sha256=
|
|
71
|
+
cirq/contrib/circuitdag/circuit_dag.py,sha256=Bo3AkNTnzofs7kQaEIcrQYel7ZQK5c3oyFEygrjPsgE,6951
|
|
73
72
|
cirq/contrib/circuitdag/circuit_dag_test.py,sha256=r6L21qD8tzLCgfKhnXK0QuNQ_v6aii5W0wyujoYcnAg,8378
|
|
74
73
|
cirq/contrib/custom_simulators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=
|
|
76
|
-
cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=
|
|
74
|
+
cirq/contrib/custom_simulators/custom_state_simulator.py,sha256=eyr2BN7wxN6_GVd49Xfe1uOrb0254cLWCxxYDkFVcz4,3237
|
|
75
|
+
cirq/contrib/custom_simulators/custom_state_simulator_test.py,sha256=Ws7QgRMeXVvg_WrLFBt7GkMXqNVOFXa5X49w5QbEI-w,8027
|
|
77
76
|
cirq/contrib/graph_device/__init__.py,sha256=Q7tjzfme7cMypjdg8lPKxNrVHIv2e7WFabBwxj4VsCU,1343
|
|
78
|
-
cirq/contrib/graph_device/graph_device.py,sha256=
|
|
79
|
-
cirq/contrib/graph_device/graph_device_test.py,sha256=
|
|
80
|
-
cirq/contrib/graph_device/hypergraph.py,sha256=
|
|
77
|
+
cirq/contrib/graph_device/graph_device.py,sha256=0dnLTd9p1dGM42mLP1pQ_8jq2sy5tcGkbtK6CnsIHqQ,8115
|
|
78
|
+
cirq/contrib/graph_device/graph_device_test.py,sha256=NyvJUHr5LEP7cJyLKPJ9WkAaIqXKY7V8V_6mTaPdQ4o,7558
|
|
79
|
+
cirq/contrib/graph_device/hypergraph.py,sha256=bXoqoPBi7w4vqQs9M1Ich7XHSLstDX6p3yZRqy3zrQk,4735
|
|
81
80
|
cirq/contrib/graph_device/hypergraph_test.py,sha256=eiF2BcNVaWvMe1X3YtiR8uy-k70J9GEbUXLTIrrx8g4,3965
|
|
82
|
-
cirq/contrib/graph_device/uniform_graph_device.py,sha256=
|
|
81
|
+
cirq/contrib/graph_device/uniform_graph_device.py,sha256=v51HuLyeX-Vv0CAbj0-mhcj9DpRW9BKRsllEsJO2UbU,2399
|
|
83
82
|
cirq/contrib/graph_device/uniform_graph_device_test.py,sha256=M7cxp4UEbhTf-kdVUc2EpRJPRQyjo82K_UJBbSSEvT0,1871
|
|
84
83
|
cirq/contrib/hacks/__init__.py,sha256=C1uZ1J79EG0dmPxj29mnjdfx6aRU6moz6QAD9PFGUYM,584
|
|
85
84
|
cirq/contrib/hacks/disable_validation.py,sha256=cOqo4QUtbDu1PAOUCQRjT8EKE_AImbQr2rwGi0AOO0k,1530
|
|
86
85
|
cirq/contrib/hacks/disable_validation_test.py,sha256=sz319WQwkSvkAUr913lhlrh1NM7-ozMffb3MxCjbwgY,1755
|
|
86
|
+
cirq/contrib/json_test_data/BayesianNetworkGate.json,sha256=C3-xVe9kuVkN8znCy_26JTozgUHyo6wwf8QmkmAqgw0,153
|
|
87
|
+
cirq/contrib/json_test_data/BayesianNetworkGate.repr,sha256=RKk-Fne5EYuz_Hx8jk59Ozeci08MRLfJ4ddSS5PrCAM,140
|
|
87
88
|
cirq/contrib/json_test_data/DampedReadoutNoiseModel.json,sha256=2prOerpHJRPJf_o-sFcYBr0Ffm4J4xCYdJFd6FLS4Hs,196
|
|
88
89
|
cirq/contrib/json_test_data/DampedReadoutNoiseModel.repr,sha256=63Nt1ibLxTkSNVSOrnKcRqc_RTLLg-d9O5Dw_ltc4ME,153
|
|
89
90
|
cirq/contrib/json_test_data/DepolarizingNoiseModel.json,sha256=mBwPxHDjLGwUAg6uB1_pNv04xA7blkRkXcUPL07f7wQ,195
|
|
@@ -92,35 +93,39 @@ cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.json,sha256=
|
|
|
92
93
|
cirq/contrib/json_test_data/DepolarizingWithDampedReadoutNoiseModel.repr,sha256=d0ih7jIhch2MgkjexP2ICsA1P1Yat9G0R_nH5v50AtM,81
|
|
93
94
|
cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.json,sha256=5B1rE7lFsyxl-HaV57zd3I2IvcFhtZhGYrxixo_JqsU,99
|
|
94
95
|
cirq/contrib/json_test_data/DepolarizingWithReadoutNoiseModel.repr,sha256=HsgqVOnJ9rnm87M_wB8IlB9fs6juCa1wEkUI2wJWE0w,70
|
|
96
|
+
cirq/contrib/json_test_data/QuantumVolumeResult.json,sha256=r-mENrUqNYOTTBUJTJu65DfqDmVyCpIytS97hdhBjIM,3854
|
|
97
|
+
cirq/contrib/json_test_data/QuantumVolumeResult.repr,sha256=vElBmATmfUkUfS9ZX6Hht5alCvUe9ZBl5-w6fM8GAK8,633
|
|
95
98
|
cirq/contrib/json_test_data/ReadoutNoiseModel.json,sha256=4rozZLPSIS_pLHJYP_lQI-RmCD9FSVylpsVk72tdpjc,189
|
|
96
99
|
cirq/contrib/json_test_data/ReadoutNoiseModel.repr,sha256=2D9n9x2HpMimEUPqcnGdsmah2b7KvhAGzbrEkxC2jHg,142
|
|
100
|
+
cirq/contrib/json_test_data/SwapPermutationGate.json,sha256=ab-2LqpGJdfbLdtI9RJ35S424QE3Qtor-ye7Hy2z4jg,40
|
|
101
|
+
cirq/contrib/json_test_data/SwapPermutationGate.repr,sha256=G358z9U6S_dP3Q85NmKmhv5CpohUgGg5P7crhH1QDvs,66
|
|
97
102
|
cirq/contrib/json_test_data/__init__.py,sha256=y4pe0VWiQAa4PmWikB3XKFVgiuJWspUzW9ugDUYq8C8,723
|
|
98
|
-
cirq/contrib/json_test_data/spec.py,sha256=
|
|
103
|
+
cirq/contrib/json_test_data/spec.py,sha256=IHgeFIsmK7t_PGvAA6WVU8IziLosT0KJTJaMG3gc1H0,1010
|
|
99
104
|
cirq/contrib/noise_models/__init__.py,sha256=O3wvaQ6kyNZzwsCnMMZvr2EyS76LpO9xnVZ69a2obv0,957
|
|
100
|
-
cirq/contrib/noise_models/noise_models.py,sha256=
|
|
105
|
+
cirq/contrib/noise_models/noise_models.py,sha256=WayGgVD9rzeuO9x8doTFFE6I8yiWKu01jTr1YY8EJJs,11431
|
|
101
106
|
cirq/contrib/noise_models/noise_models_test.py,sha256=htDTYcWeMtgtLIo_4DaTIidoHCxPMVIAKtS80R4OmDs,11472
|
|
102
107
|
cirq/contrib/paulistring/__init__.py,sha256=1k2_MYLTMPn8AFoJvSgpN-F-6xgmDjKXRhb-FdDsFoQ,1761
|
|
103
|
-
cirq/contrib/paulistring/clifford_optimize.py,sha256=
|
|
108
|
+
cirq/contrib/paulistring/clifford_optimize.py,sha256=UDJ9aIJ-iFBFM5MV8n6ec7wsGluC6diC4UFXYSfep1g,8675
|
|
104
109
|
cirq/contrib/paulistring/clifford_optimize_test.py,sha256=8FFLg9gb1HmHHMdXPa-vCr1zyxvgdlciRH8qyfTWQRw,3964
|
|
105
110
|
cirq/contrib/paulistring/clifford_target_gateset.py,sha256=5QP4A1gC1rsTbWXB0L00ZuSGy2VZvYer63UyydCj1W0,6311
|
|
106
111
|
cirq/contrib/paulistring/clifford_target_gateset_test.py,sha256=LUkfj_cahaclu2iByO3YsX-db-DLEWrAxZfxeKuJPdI,8792
|
|
107
|
-
cirq/contrib/paulistring/optimize.py,sha256=
|
|
112
|
+
cirq/contrib/paulistring/optimize.py,sha256=YPCMAy2vPkRg3DLLrmP7nSDoPdvgvPUni7SmAeUBWOI,2752
|
|
108
113
|
cirq/contrib/paulistring/optimize_test.py,sha256=FsmwyYFIGyyiO115oYgmCfaSV3De55Azd0_rzsi_xnU,3618
|
|
109
114
|
cirq/contrib/paulistring/pauli_string_dag.py,sha256=28bUVNsIS9WYKdyYCNIVrkRwqQOKlkpmCacWow6N6D0,1142
|
|
110
115
|
cirq/contrib/paulistring/pauli_string_dag_test.py,sha256=nH_1h5LQobV9rb5gitLmrvpIwWwrcRmNdUGDAhFMZtI,1168
|
|
111
|
-
cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=
|
|
112
|
-
cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=
|
|
116
|
+
cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation.py,sha256=Di8ZX8ANGz7qRX7zOmVWMyl6vzJGM3Ux0KFtoZwJXfs,26139
|
|
117
|
+
cirq/contrib/paulistring/pauli_string_measurement_with_readout_mitigation_test.py,sha256=2mwqVVz3sjPYuZe3EuAlDB691JGOKglYZQxGx6AHyRo,32603
|
|
113
118
|
cirq/contrib/paulistring/pauli_string_optimize.py,sha256=ejHf7Bo0iUvnNBeZ5IN0bT0SIXF79DSGr1NxoAyVfiQ,2960
|
|
114
119
|
cirq/contrib/paulistring/pauli_string_optimize_test.py,sha256=_14FS9TAvzRsmnTZxJUsMXPNcenv5mb0eD2gGTxvohE,2955
|
|
115
|
-
cirq/contrib/paulistring/recombine.py,sha256=
|
|
120
|
+
cirq/contrib/paulistring/recombine.py,sha256=7lyBRNMdzqalM3MMxo5mbEt8w70RfGjm3J2n_c2kDKU,4434
|
|
116
121
|
cirq/contrib/paulistring/recombine_test.py,sha256=ydCc2JxmmjZ8TR-Ojyy5lIRed_P-n6UKWIRZ6HIlzVc,1959
|
|
117
|
-
cirq/contrib/paulistring/separate.py,sha256=
|
|
122
|
+
cirq/contrib/paulistring/separate.py,sha256=2BLkKwPtouB0NIQNomJFMtR161wHW9QXnkff_nfe9Xc,3964
|
|
118
123
|
cirq/contrib/paulistring/separate_test.py,sha256=mp_ixjxS9-YypnJkgApFzSV0QGJt0SDG23S34Ni57QY,1311
|
|
119
124
|
cirq/contrib/qasm_import/__init__.py,sha256=RKX0vGDC2Pe5rH5rM4ClXdvtrAU16ePFImQpiJtJVNo,744
|
|
120
|
-
cirq/contrib/qasm_import/_lexer.py,sha256=
|
|
121
|
-
cirq/contrib/qasm_import/_lexer_test.py,sha256=
|
|
122
|
-
cirq/contrib/qasm_import/_parser.py,sha256=
|
|
123
|
-
cirq/contrib/qasm_import/_parser_test.py,sha256=
|
|
125
|
+
cirq/contrib/qasm_import/_lexer.py,sha256=dG91z4Nsl3uXKjwXoYNnLEQhHovz7QNu49jBXJBt7Rk,3009
|
|
126
|
+
cirq/contrib/qasm_import/_lexer_test.py,sha256=yaWshvgmwXNHPM6Gy01IPdv_baksSN5FGk1J6fhloRU,7341
|
|
127
|
+
cirq/contrib/qasm_import/_parser.py,sha256=D5akaJkqmaAsOcDHR2F8ZbsR_Kz2oVNvUju1YynCF_k,44051
|
|
128
|
+
cirq/contrib/qasm_import/_parser_test.py,sha256=dTJABmMASYOmu0HpRcxXSisit8-1J7u0xwVeTfKrtdc,68718
|
|
124
129
|
cirq/contrib/qasm_import/exception.py,sha256=DdqXaHmZU1TaxaHqXW23yp9bqXxdxqkq4tErGd9VHj8,731
|
|
125
130
|
cirq/contrib/qasm_import/qasm.py,sha256=k_uX-ITaxHRcrP87kuUNgudloG_ns0HURJLoyq4scqU,989
|
|
126
131
|
cirq/contrib/qasm_import/qasm_test.py,sha256=mwgl7dIOt50hvxTVTiy1HpVxAjyBSb59R3_Hi-5LUIU,1906
|
|
@@ -129,325 +134,332 @@ cirq/contrib/qcircuit/qcircuit_diagram.py,sha256=pwaqM9CERfePRxH6Xx3PtMLVIcN1Z37
|
|
|
129
134
|
cirq/contrib/qcircuit/qcircuit_diagram_info.py,sha256=PLJcrv8u3MoLQOC7XzUa6jb54lI8pCFn0zsO2BbnVr0,4563
|
|
130
135
|
cirq/contrib/qcircuit/qcircuit_diagram_info_test.py,sha256=DodZREuwlQhGSskI-Tuw603UuZvQPQckKdpU47oLRrk,2480
|
|
131
136
|
cirq/contrib/qcircuit/qcircuit_pdf.py,sha256=S9p6p9EPYariRJwy4XsRFqWvlrRofL9TZLdHZHNi2dM,2493
|
|
132
|
-
cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=
|
|
137
|
+
cirq/contrib/qcircuit/qcircuit_pdf_test.py,sha256=fd36Z2g0e9YmW0KWUi5TDxfG-mwXJyJtWffbMgeBR9M,1085
|
|
133
138
|
cirq/contrib/qcircuit/qcircuit_test.py,sha256=Nivln1ECv4_AIUH8-2kfQH7d2E7332uvFOXXSU-AfYo,6153
|
|
139
|
+
cirq/contrib/quantikz/__init__.py,sha256=cAKrNLJmGTHkv9TFJjxKs1WopJ634J6m-d701J8CaTM,910
|
|
140
|
+
cirq/contrib/quantikz/circuit_to_latex_quantikz.py,sha256=jAkrvW11K_Q3sq_eyij23WNoZ-NzIrjoYMGRc6U1MXs,30044
|
|
141
|
+
cirq/contrib/quantikz/circuit_to_latex_quantikz_test.py,sha256=EFJql3H_xrBHLrG9_W0sGgPySKRQxkskYUFYN9Pkshc,9519
|
|
142
|
+
cirq/contrib/quantikz/circuit_to_latex_render.py,sha256=kVMf2U_qPyDYIbUjDeZw6MfmBFoOz9FmN1wfPOy3KQg,20721
|
|
143
|
+
cirq/contrib/quantikz/circuit_to_latex_render_test.py,sha256=NhRA8ODivH6cXk8-99eO-EbvMb79VMWMUyN2wF37rcg,1507
|
|
134
144
|
cirq/contrib/quantum_volume/__init__.py,sha256=RF_nbmm9s9A8sLhsnb7aZnuuoeHnsvlRNuoK8nBBW2w,1038
|
|
135
|
-
cirq/contrib/quantum_volume/quantum_volume.py,sha256=
|
|
145
|
+
cirq/contrib/quantum_volume/quantum_volume.py,sha256=mCb4SRr_Y7sKjzDnr5Ss_yK7SOQT2S1mn_-5xtdjIys,19484
|
|
136
146
|
cirq/contrib/quantum_volume/quantum_volume_test.py,sha256=CZ_CyJMhLHlaIiG8doLC5eZX2o9agKqruMnQGM_CXCM,12610
|
|
137
147
|
cirq/contrib/quimb/__init__.py,sha256=G6tzsTqQeYUg14urOBKE_dOe59cxsBWgvR5b_ngvKkE,943
|
|
138
|
-
cirq/contrib/quimb/density_matrix.py,sha256=
|
|
148
|
+
cirq/contrib/quimb/density_matrix.py,sha256=WHDiEMAIcFgfAyc0oujN1gGmAbtLPWaYNvCFRAuj-3o,8619
|
|
139
149
|
cirq/contrib/quimb/density_matrix_test.py,sha256=WBQY9vdQAuPFUYBTTJRUmP-161e7FasfTBvdq1oggyw,3092
|
|
140
|
-
cirq/contrib/quimb/grid_circuits.py,sha256
|
|
141
|
-
cirq/contrib/quimb/grid_circuits_test.py,sha256=
|
|
142
|
-
cirq/contrib/quimb/mps_simulator.py,sha256=
|
|
150
|
+
cirq/contrib/quimb/grid_circuits.py,sha256=-lK0CZrB8MXE5qbw7ODn7vfP49mM8u3CcEowkPop7a8,4736
|
|
151
|
+
cirq/contrib/quimb/grid_circuits_test.py,sha256=Svjy9X0amucT6KSuWc4LSwmZvkW1uxjfcl1ajZZss4g,3407
|
|
152
|
+
cirq/contrib/quimb/mps_simulator.py,sha256=_6PX0YuLqMlSrO0k2FPgC-gTwuaqyzRSjsCPmL4XWqk,24730
|
|
143
153
|
cirq/contrib/quimb/mps_simulator_test.py,sha256=MF9hye-gG1epkJRvtiGsHJChLerOV5MHhqDWADASAWI,17485
|
|
144
|
-
cirq/contrib/quimb/state_vector.py,sha256=
|
|
154
|
+
cirq/contrib/quimb/state_vector.py,sha256=r3VJyYrTyatCaWH5-GSIRMgu9AToOsUVba7FXlM8Byk,6720
|
|
145
155
|
cirq/contrib/quimb/state_vector_test.py,sha256=vPTNvd4nOhS3fCOzTDYxRxlLcl1ua2jO_uN7u0kw55s,5975
|
|
146
156
|
cirq/contrib/quirk/__init__.py,sha256=0c14toTDI-aopiJjaGre6HGnXA6Vq7zs8Hun9whUEhA,728
|
|
147
|
-
cirq/contrib/quirk/export_to_quirk.py,sha256=
|
|
157
|
+
cirq/contrib/quirk/export_to_quirk.py,sha256=u9DltZz-mRKLMxE0c5E-ej0nNA7__mDDoVztPlI1NuA,3887
|
|
148
158
|
cirq/contrib/quirk/export_to_quirk_test.py,sha256=v0MJdEsU_aT-NRzBoOsgC_CCHuqq2DKjZYK5O27kPlI,12193
|
|
149
|
-
cirq/contrib/quirk/linearize_circuit.py,sha256=
|
|
150
|
-
cirq/contrib/quirk/quirk_gate.py,sha256
|
|
159
|
+
cirq/contrib/quirk/linearize_circuit.py,sha256=sszZerLz7aoYbmRbBnI5TPtib1k3LQfdU0i1tqYU-nU,1598
|
|
160
|
+
cirq/contrib/quirk/quirk_gate.py,sha256=lvmFK0cQEvrwytzaM2jN7OVN-CHtLKS9X_rT0Jwap5w,7213
|
|
151
161
|
cirq/contrib/routing/__init__.py,sha256=ktb3I20eDrRtlywE_JR9yHZ_YHDC3UQn6xB-S6GTaTs,1279
|
|
152
|
-
cirq/contrib/routing/device.py,sha256
|
|
162
|
+
cirq/contrib/routing/device.py,sha256=qdjIeWWTWUC4qGMBRCipcwhG_PAwE2AdTtJI4_I4Vbs,2933
|
|
153
163
|
cirq/contrib/routing/device_test.py,sha256=RA0bY5HgQhMUyIHP0cBi4xRDK-UUp3jW9Zzm7JxGx-o,2107
|
|
154
|
-
cirq/contrib/routing/greedy.py,sha256=
|
|
164
|
+
cirq/contrib/routing/greedy.py,sha256=0dFfmEwPz2MZ2VndObIJnA0F2_SY4dnOOqaInPXGqo4,13868
|
|
155
165
|
cirq/contrib/routing/greedy_test.py,sha256=MwYKSuSOc4Ao4FnvoRZYMkcGrhWmotXdCoJJvnd-TvI,2447
|
|
156
|
-
cirq/contrib/routing/initialization.py,sha256=
|
|
166
|
+
cirq/contrib/routing/initialization.py,sha256=ruNY4GxIGfHHJaeqdjG6TTi_2bFhyCxVl6S6K_7qq_o,3754
|
|
157
167
|
cirq/contrib/routing/initialization_test.py,sha256=uKp999BFZnjJsduZxL9kA7nvDdJAjPfsBJ2lH3ipuq8,2561
|
|
158
|
-
cirq/contrib/routing/router.py,sha256=
|
|
168
|
+
cirq/contrib/routing/router.py,sha256=020vUkhrIRyCePQlMHB8k33GceQkC1sO3f6b-hU3YF4,2618
|
|
159
169
|
cirq/contrib/routing/router_test.py,sha256=v0P3Q3Lfl1vcp8xJ7qPpc6oSA1VUUgHZlNDcL4X3cUc,6410
|
|
160
|
-
cirq/contrib/routing/swap_network.py,sha256=
|
|
170
|
+
cirq/contrib/routing/swap_network.py,sha256=yuo02rLaPjDopeyMgzKxXVJNmkk6inTLZArzltehqXI,2406
|
|
161
171
|
cirq/contrib/routing/swap_network_test.py,sha256=dQw1LgVCU4bcjEaYBwRNMM2i4TfxkWpd-ansQJg5Lw4,5141
|
|
162
|
-
cirq/contrib/routing/utils.py,sha256=
|
|
172
|
+
cirq/contrib/routing/utils.py,sha256=RemXK8sMCBK_SEHZHl1vhYKPJ7pkD1W2GPciy5_7rtE,3807
|
|
163
173
|
cirq/contrib/routing/utils_test.py,sha256=0TuaQdLTui_fFPRXGJfRBj5k5ysCyIQwW7OMfeABmR0,2107
|
|
164
174
|
cirq/contrib/shuffle_circuits/__init__.py,sha256=yKqR59wvZYmIrolsEEqoO9Dhgd5hALMkAoR9AtjnbUY,1030
|
|
165
|
-
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=
|
|
166
|
-
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=
|
|
175
|
+
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking.py,sha256=saGp-HqqKejCH3cyg5d6b4qnzzKbdR_No0NpCzeAy_g,22781
|
|
176
|
+
cirq/contrib/shuffle_circuits/shuffle_circuits_with_readout_benchmarking_test.py,sha256=kvHwWALPwz5LlnHW1DIQPe2SY2geRhG4a2Vih4wA2Sg,23933
|
|
167
177
|
cirq/contrib/svg/__init__.py,sha256=m7d-CNT2j74uNQdmM2xJ1a7HG6v0FZMt8eAwW4rPJpI,148
|
|
168
178
|
cirq/contrib/svg/svg.py,sha256=WxwlIcCv5SofhiZ16Bej6qHkdZgU4lT1Gw5GMZnFAkE,9398
|
|
169
179
|
cirq/contrib/svg/svg_test.py,sha256=YYgUxcthavh4cTbTcb3NIabJVCi0u2AOeyF7rJWicQ4,2507
|
|
170
180
|
cirq/devices/__init__.py,sha256=ZhUNJv7L1V9n3yQCDFJ_CkQNjgT-rJ8MZTfafHqCvhY,2577
|
|
171
|
-
cirq/devices/device.py,sha256=
|
|
181
|
+
cirq/devices/device.py,sha256=Q8qa6hgbKz0Yj67BmtXwY_mgTRdMmadu84uy6puR4dY,5410
|
|
172
182
|
cirq/devices/device_test.py,sha256=Zh7_hHiG0OENZmGhH8hj9OdotbiJfP-4hCD5tpfF5UA,1194
|
|
173
|
-
cirq/devices/grid_device_metadata.py,sha256=
|
|
183
|
+
cirq/devices/grid_device_metadata.py,sha256=frGq3dHn1w4cQJRC5Ds6XmAwZZnE8QMheXwU_pxkV5Q,8629
|
|
174
184
|
cirq/devices/grid_device_metadata_test.py,sha256=jNTQGFUrl-xCtuP6s04_FWtP1S87ot9TwYbXq-K950g,8799
|
|
175
|
-
cirq/devices/grid_qubit.py,sha256=
|
|
185
|
+
cirq/devices/grid_qubit.py,sha256=tGFy6s31YrydwzRw_wSEKUYcBuCBHyrxd9tSGICZV7w,19153
|
|
176
186
|
cirq/devices/grid_qubit_test.py,sha256=DtLAKSTRvTQ7XXujxDzhQIWgNbmFxdx-5A2tvDxUsaY,15642
|
|
177
|
-
cirq/devices/insertion_noise_model.py,sha256=
|
|
187
|
+
cirq/devices/insertion_noise_model.py,sha256=jXGIOhFHivZiJZapAOkm1-rVSRRiZWATLMurkNrI_IA,3636
|
|
178
188
|
cirq/devices/insertion_noise_model_test.py,sha256=MjJoouDxVobkqKEvlLSy82E5749LXHzaaTbCzZuFxe0,4068
|
|
179
|
-
cirq/devices/line_qubit.py,sha256=
|
|
189
|
+
cirq/devices/line_qubit.py,sha256=Ff7VixrTSvC9eT3r1cdT_zXkICOUnxYzhDE0F1q_RBU,11770
|
|
180
190
|
cirq/devices/line_qubit_test.py,sha256=gcOey2XO9QyBsI20wNtoFy0MYz5J-wwpC60P3018iL0,10667
|
|
181
|
-
cirq/devices/named_topologies.py,sha256=
|
|
191
|
+
cirq/devices/named_topologies.py,sha256=rTspojP5o84nzBOi0RXVdBaIs0dB9haGnQDB3RN9muY,15844
|
|
182
192
|
cirq/devices/named_topologies_test.py,sha256=cZlodti18nnvWyKTVMnQUIC4wlrdlKL93ptgnfgzyVw,4911
|
|
183
|
-
cirq/devices/noise_model.py,sha256=
|
|
184
|
-
cirq/devices/noise_model_test.py,sha256=
|
|
185
|
-
cirq/devices/noise_properties.py,sha256=
|
|
193
|
+
cirq/devices/noise_model.py,sha256=611p4KDsh2XERc5dc8box8weZqrhBQ3kp95nMU49pQQ,11282
|
|
194
|
+
cirq/devices/noise_model_test.py,sha256=1lfeYHK1ikPM4WgtoXmixZVdVEKrXV8Nw1QkLOHIpVE,9421
|
|
195
|
+
cirq/devices/noise_properties.py,sha256=mlx7xiI6hGmviYA-1aCKlbsJwVjDxx4DC3FK-XB7khg,5348
|
|
186
196
|
cirq/devices/noise_properties_test.py,sha256=h8y7SgiA_VuoPvlnv0WseMUouHUlbhKiWQoh_yzqJqE,3443
|
|
187
197
|
cirq/devices/noise_utils.py,sha256=Gr51L8Zj1hQ7XCAPreqJdlIHNVpZswXzbUaQZmPcQ-o,7163
|
|
188
198
|
cirq/devices/noise_utils_test.py,sha256=kYLGs40QOih7Ai7KHIs5dF_z1_suT0kzlma5-kJ1qLE,2145
|
|
189
199
|
cirq/devices/superconducting_qubits_noise_properties.py,sha256=pQYEs6KupGW1lOQ5Tt8CEI0vdJ3sh94uTrVZHXosRmk,8142
|
|
190
|
-
cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=
|
|
191
|
-
cirq/devices/thermal_noise_model.py,sha256=
|
|
200
|
+
cirq/devices/superconducting_qubits_noise_properties_test.py,sha256=NdVfRiVOaV5_totKWxu_89UW0xYpdzgQLg-4GUWAZrQ,12562
|
|
201
|
+
cirq/devices/thermal_noise_model.py,sha256=ZHOVYlq-l19ccIwT65hv5FAM6Ye1F32XxvBXkJ-mq2g,14453
|
|
192
202
|
cirq/devices/thermal_noise_model_test.py,sha256=2IKRk30OXQ6wVuOGM28dYdXOaP578nTGexyyzY6M0vg,13857
|
|
193
203
|
cirq/devices/unconstrained_device.py,sha256=gC3NB4P8UUsVyz3o7CcVV_L6xIeY-ewgaUoXy3UCfDE,1536
|
|
194
204
|
cirq/devices/unconstrained_device_test.py,sha256=R3JSwkjSIMYd9jtNGsYmEAw4yzESPhh88MZfd86Cekg,1107
|
|
195
|
-
cirq/experiments/__init__.py,sha256=
|
|
196
|
-
cirq/experiments/fidelity_estimation.py,sha256=
|
|
197
|
-
cirq/experiments/fidelity_estimation_test.py,sha256=
|
|
198
|
-
cirq/experiments/
|
|
199
|
-
cirq/experiments/
|
|
200
|
-
cirq/experiments/
|
|
205
|
+
cirq/experiments/__init__.py,sha256=3CalDY_vDOBjwi0ZLpE0Lkl1cZizPOaWTINlSEaqNVE,3865
|
|
206
|
+
cirq/experiments/fidelity_estimation.py,sha256=EVsj4EU6dsmzl3GFZAImFTknk8r7NcYg47osg5YB0fY,9389
|
|
207
|
+
cirq/experiments/fidelity_estimation_test.py,sha256=UuNCnubeAYkKtrh3PzpXKeTm_Is1gbMWtiAJCzVurkQ,5016
|
|
208
|
+
cirq/experiments/ghz_2d.py,sha256=wF1TXHu7P2tUhLZGpKUfZoqIEjSxwDFJ5u5fUkS87ec,5390
|
|
209
|
+
cirq/experiments/ghz_2d_test.py,sha256=o0kSr5GiF3dojViaW3_vr6fAtqj6KBAOUopifElPsrg,5439
|
|
210
|
+
cirq/experiments/n_qubit_tomography.py,sha256=cOepDBle3SOlMIsfIHl0sDk8x-xhEZcy-muKpRqpHWA,8463
|
|
211
|
+
cirq/experiments/n_qubit_tomography_test.py,sha256=Hxt7GVxYhHfuyju6y_4ffIm24HPhF6thF_zJwc1nV6o,4448
|
|
212
|
+
cirq/experiments/purity_estimation.py,sha256=bDEUZ9Dq4__wIemvRBA-3MZ5G05IRGIAXhk2V4yD2QU,2525
|
|
201
213
|
cirq/experiments/purity_estimation_test.py,sha256=ZDU6k-pja5W5kQ-5cy4id1IWUQ86WMiQYNOiXyAI0YU,967
|
|
202
|
-
cirq/experiments/qubit_characterizations.py,sha256=
|
|
203
|
-
cirq/experiments/qubit_characterizations_test.py,sha256=
|
|
204
|
-
cirq/experiments/random_quantum_circuit_generation.py,sha256=
|
|
205
|
-
cirq/experiments/random_quantum_circuit_generation_test.py,sha256=
|
|
206
|
-
cirq/experiments/readout_confusion_matrix.py,sha256=
|
|
207
|
-
cirq/experiments/readout_confusion_matrix_test.py,sha256=
|
|
208
|
-
cirq/experiments/single_qubit_readout_calibration.py,sha256=
|
|
209
|
-
cirq/experiments/single_qubit_readout_calibration_test.py,sha256=
|
|
210
|
-
cirq/experiments/t1_decay_experiment.py,sha256=
|
|
214
|
+
cirq/experiments/qubit_characterizations.py,sha256=N7I5nITdrBJXgNYC6H9pGCMmPLTr4Hm5jp2kqbd2WnE,42017
|
|
215
|
+
cirq/experiments/qubit_characterizations_test.py,sha256=z5WFvZmFtvm3j2W_aF6A-dzPKvoYcW8KdD7zccW0aKk,11775
|
|
216
|
+
cirq/experiments/random_quantum_circuit_generation.py,sha256=GkF8NQBGW3asBU6mo8dU97RLkPugLnvmV4QE8JBl8Go,28043
|
|
217
|
+
cirq/experiments/random_quantum_circuit_generation_test.py,sha256=YG_UAM6Hv4t9ga4FrK7gTN8WNcaaSOpzFvoWOmFZH0Y,16764
|
|
218
|
+
cirq/experiments/readout_confusion_matrix.py,sha256=awzeKHlLwRVieSiAZ-ne9GQ_TBMWVX9F_J8roq8r41g,20691
|
|
219
|
+
cirq/experiments/readout_confusion_matrix_test.py,sha256=vwlthL-rYGG5g_EJzJqHSK5017RCXJIci8nZWzZLoo0,10894
|
|
220
|
+
cirq/experiments/single_qubit_readout_calibration.py,sha256=EG-D9ZFLlsjN8dkgBewOzEMBRYX_z5i51Vw80TTR8Sc,15270
|
|
221
|
+
cirq/experiments/single_qubit_readout_calibration_test.py,sha256=w6MoGe7EloefunwOg9EMenunpsD9-LB03-gbR1nbYQQ,7882
|
|
222
|
+
cirq/experiments/t1_decay_experiment.py,sha256=CBMSLlHJwaKuRdt9wyDW3RtjanJyQL4aps4QC6IXheE,7126
|
|
211
223
|
cirq/experiments/t1_decay_experiment_test.py,sha256=vjm-zV0a2yrFrFhzq03GOMBy5U_XnvX1Ga3NN4FiT3k,9262
|
|
212
224
|
cirq/experiments/t2_decay_experiment.py,sha256=emyOtoJa8Z7nbnTJbxTrqfWdWceMCoKWA4aBGnUHLBg,19096
|
|
213
225
|
cirq/experiments/t2_decay_experiment_test.py,sha256=_h_cDm9RHlsOm-R9g5LITm_ogQ9l_MAf6vZv6rQw95A,15170
|
|
214
|
-
cirq/experiments/two_qubit_xeb.py,sha256=
|
|
215
|
-
cirq/experiments/two_qubit_xeb_test.py,sha256
|
|
216
|
-
cirq/experiments/xeb_fitting.py,sha256=
|
|
217
|
-
cirq/experiments/xeb_fitting_test.py,sha256=
|
|
218
|
-
cirq/experiments/xeb_sampling.py,sha256=
|
|
219
|
-
cirq/experiments/xeb_sampling_test.py,sha256=
|
|
220
|
-
cirq/experiments/xeb_simulation.py,sha256=
|
|
221
|
-
cirq/experiments/xeb_simulation_test.py,sha256=
|
|
222
|
-
cirq/experiments/z_phase_calibration.py,sha256=
|
|
223
|
-
cirq/experiments/z_phase_calibration_test.py,sha256=
|
|
226
|
+
cirq/experiments/two_qubit_xeb.py,sha256=4u3aahqZmo54DA17HDA5-NhzsVf50zeEwHSYm4_zVkg,22830
|
|
227
|
+
cirq/experiments/two_qubit_xeb_test.py,sha256=-zRvjypzWWtAvwrAzpYERy2YQxcuY7NTPDCS1DjjjY8,10796
|
|
228
|
+
cirq/experiments/xeb_fitting.py,sha256=8DydgGL5UmjD1kn8RcEyraZVC-g-r--hDlPJwI4pnXI,30426
|
|
229
|
+
cirq/experiments/xeb_fitting_test.py,sha256=UpdEm-INmY7IKVRktOlMOhV6i5cakUIJuJyCXBdbWYM,15757
|
|
230
|
+
cirq/experiments/xeb_sampling.py,sha256=luHjZvP4OrNRczluY_xgx8LHQpUztSbXyYIwpEM29j0,15014
|
|
231
|
+
cirq/experiments/xeb_sampling_test.py,sha256=9ALkHPftyK3TzHdY9ANwmT1S9j2f9CiQaHD_htYyNrI,6870
|
|
232
|
+
cirq/experiments/xeb_simulation.py,sha256=QXuTGQVvhHTUtkWfqqzSga6hVATURAdeyNfQDyzSgdY,5116
|
|
233
|
+
cirq/experiments/xeb_simulation_test.py,sha256=U-S76aoKPK8hfmGhpWEfH7CVLuacEqLUmEZCStxXrxQ,5652
|
|
234
|
+
cirq/experiments/z_phase_calibration.py,sha256=lXXjPCGkBrTwy81UsFMI8FzJAQyWOjyn0RI-FALwW0Q,15045
|
|
235
|
+
cirq/experiments/z_phase_calibration_test.py,sha256=WvUG6dOrffoUji7wQuzaDYhyLq9Tl0XjgL8v6IEjDt8,9594
|
|
224
236
|
cirq/experiments/benchmarking/__init__.py,sha256=oAom0qrtLKb8NqUcBJWiKd6chwFE2j6jVLI8_iNivzA,723
|
|
225
|
-
cirq/experiments/benchmarking/parallel_xeb.py,sha256=
|
|
226
|
-
cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=
|
|
237
|
+
cirq/experiments/benchmarking/parallel_xeb.py,sha256=y4iCvVQXWFlJ3wRxH58NHRnjxLd2ikUVOlUxTjQa62o,26144
|
|
238
|
+
cirq/experiments/benchmarking/parallel_xeb_test.py,sha256=Vz8pVmXTmGlcFHDauuhai0lTNUrgwZlzT202zdpDE8o,16361
|
|
227
239
|
cirq/interop/__init__.py,sha256=Xt1xU9UegP_jBNa9xaeOFSgtC0lYb_HNHq4hQQ0J20k,784
|
|
228
240
|
cirq/interop/quirk/__init__.py,sha256=W11jqaExSgvoUkjM_d0Kik4R8bqETF9Ezo27CDEB3iw,1237
|
|
229
|
-
cirq/interop/quirk/url_to_circuit.py,sha256=
|
|
241
|
+
cirq/interop/quirk/url_to_circuit.py,sha256=kO3TLoaGCWnGdn7aeCsnxEmI_T4eZ-tUd8UM723qKKQ,14116
|
|
230
242
|
cirq/interop/quirk/url_to_circuit_test.py,sha256=0soI7pem2vbZ0orCQLtXV1YXtYfSjIOw3XflGppOKlU,26421
|
|
231
|
-
cirq/interop/quirk/cells/__init__.py,sha256=
|
|
232
|
-
cirq/interop/quirk/cells/all_cells.py,sha256=
|
|
233
|
-
cirq/interop/quirk/cells/arithmetic_cells.py,sha256=
|
|
243
|
+
cirq/interop/quirk/cells/__init__.py,sha256=W2cC8R_AUY5oV2cljmtzkGj-NnYUYI6IMn9HSnKLBuY,1487
|
|
244
|
+
cirq/interop/quirk/cells/all_cells.py,sha256=YwaVLsm2kssym9G58apVmm6cDTga_lUrxu8-dBl-Zqo,2660
|
|
245
|
+
cirq/interop/quirk/cells/arithmetic_cells.py,sha256=w5ILW4kdKu_5OQMWwo7MgNPBfP1eAXUWeBWjjzx57SA,13062
|
|
234
246
|
cirq/interop/quirk/cells/arithmetic_cells_test.py,sha256=TLxCM30LcCew6e5sa97epr-tkwBIqK_y_tIduYYt-mA,14774
|
|
235
|
-
cirq/interop/quirk/cells/cell.py,sha256=
|
|
247
|
+
cirq/interop/quirk/cells/cell.py,sha256=iNXkFxELF81NKVai5tCvSDWmvIO0qzdBbGjRNhjlhS0,8392
|
|
236
248
|
cirq/interop/quirk/cells/cell_test.py,sha256=fI6B5kdKwcCX-yo9YVWomvTOSlqqwR91KkL0HmINM9s,2364
|
|
237
|
-
cirq/interop/quirk/cells/composite_cell.py,sha256=
|
|
238
|
-
cirq/interop/quirk/cells/composite_cell_test.py,sha256=
|
|
239
|
-
cirq/interop/quirk/cells/control_cells.py,sha256=
|
|
249
|
+
cirq/interop/quirk/cells/composite_cell.py,sha256=TwG7863kPpPzrNd8ToRTH_dj881CynHIAn868NoR61Y,5267
|
|
250
|
+
cirq/interop/quirk/cells/composite_cell_test.py,sha256=gwreMPPh6y5vbcHSSS_F4Z94FLvqIY5z7pDWnHpU7dc,5413
|
|
251
|
+
cirq/interop/quirk/cells/control_cells.py,sha256=vsX23WOA64Za-jVaLtcUtKjGZPgEodfgtlQHrn4uQIw,5572
|
|
240
252
|
cirq/interop/quirk/cells/control_cells_test.py,sha256=87ZsBjuJIYqx6RJPf8tu9hKPju7WJM6QxENHlYFQ_Ek,4749
|
|
241
|
-
cirq/interop/quirk/cells/frequency_space_cells.py,sha256=
|
|
253
|
+
cirq/interop/quirk/cells/frequency_space_cells.py,sha256=1c4ElrJlA7LvPrI374VcEfvrJXvUFH2s-jI07dnXyTc,1928
|
|
242
254
|
cirq/interop/quirk/cells/frequency_space_cells_test.py,sha256=BgXK4Dvt-WvvenmNL0wta410qZSthBxoPodkcyKn07s,1856
|
|
243
|
-
cirq/interop/quirk/cells/ignored_cells.py,sha256=
|
|
255
|
+
cirq/interop/quirk/cells/ignored_cells.py,sha256=8VytbTR__1JNWArXLSlZhZ0DBlDEyFc9QD3Ul7eNxzU,1424
|
|
244
256
|
cirq/interop/quirk/cells/ignored_cells_test.py,sha256=lbhDHO5YKQ7N2-s7sVww289BLE9aFCHY5QTLV121TXs,963
|
|
245
|
-
cirq/interop/quirk/cells/input_cells.py,sha256=
|
|
257
|
+
cirq/interop/quirk/cells/input_cells.py,sha256=Kqxv5WTlUNmdAoPCiEhAz6eIZFOscqa67UEwM7D8tw8,3014
|
|
246
258
|
cirq/interop/quirk/cells/input_cells_test.py,sha256=Wcx7BvhZk0pgR_61VElw0y-0MhvJ2tQYHki0rvKyBhA,3576
|
|
247
|
-
cirq/interop/quirk/cells/input_rotation_cells.py,sha256=
|
|
259
|
+
cirq/interop/quirk/cells/input_rotation_cells.py,sha256=A81rvDYo85uH6Tyb41t5FEpoe5mk2eW2tOr7PUfn1EA,7417
|
|
248
260
|
cirq/interop/quirk/cells/input_rotation_cells_test.py,sha256=uYIkzwQioX9GxrKrEGgMAVn_OFnmqcT4nWPoK3NGLOQ,6410
|
|
249
|
-
cirq/interop/quirk/cells/measurement_cells.py,sha256=
|
|
261
|
+
cirq/interop/quirk/cells/measurement_cells.py,sha256=upX3vwgGmQg3H6hO2N7yrCat4ISkdcMwKXpSidTqH_c,1553
|
|
250
262
|
cirq/interop/quirk/cells/measurement_cells_test.py,sha256=DFc5Do4ePN5dGSzmbkXCpAwJ8UTth031uhq9QqpIEKw,1618
|
|
251
|
-
cirq/interop/quirk/cells/parse.py,sha256=
|
|
263
|
+
cirq/interop/quirk/cells/parse.py,sha256=sT0kAI-oaN5ecG2dX9VH_imhFOOwdwrNsmlSxWTVepE,11846
|
|
252
264
|
cirq/interop/quirk/cells/parse_test.py,sha256=w3Vp13EBAcMvpCgWK9fzYwfBpVF4ax6JAqASLmFrYWg,7625
|
|
253
|
-
cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=
|
|
265
|
+
cirq/interop/quirk/cells/qubit_permutation_cells.py,sha256=a1_m62UdWrlc2w5ff9F6GOISzcwoksSxO0lsN2PHd20,3444
|
|
254
266
|
cirq/interop/quirk/cells/qubit_permutation_cells_test.py,sha256=HEg156HfRnTSciiYEr_H3oIBtvF0GNafKwb2Gy53k5U,4552
|
|
255
|
-
cirq/interop/quirk/cells/scalar_cells.py,sha256=
|
|
267
|
+
cirq/interop/quirk/cells/scalar_cells.py,sha256=gU7isbkwNeid8wsSRElliRX354j0-vbjNLE_EMPNhUg,1308
|
|
256
268
|
cirq/interop/quirk/cells/scalar_cells_test.py,sha256=FcH5qjfluiLfEgIxvQzU5y8bQMVKyc3f2cMeLF1yApA,1411
|
|
257
|
-
cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=
|
|
269
|
+
cirq/interop/quirk/cells/single_qubit_rotation_cells.py,sha256=Olw6Ajj0B9aIS52DwdlmCLVgcvt1MapZOoRnNo6y4Ww,4521
|
|
258
270
|
cirq/interop/quirk/cells/single_qubit_rotation_cells_test.py,sha256=lBsdOHF2fAZT8KoKlqaNczXN7om15v9nUIE6oG01wIU,5097
|
|
259
|
-
cirq/interop/quirk/cells/swap_cell.py,sha256=
|
|
271
|
+
cirq/interop/quirk/cells/swap_cell.py,sha256=1lENhkQuwIZECSQ8d7A0Nhah6EM0myFEihkqx01ObaQ,2471
|
|
260
272
|
cirq/interop/quirk/cells/swap_cell_test.py,sha256=Qo8zFLruemnQbxEt0DtJO8QwKJ688zQvEZh648WVkQw,2389
|
|
261
273
|
cirq/interop/quirk/cells/testing.py,sha256=crjATbwkd9FekUIhbFRZa3mbGpg9EM0iIINyGiNz-ag,3304
|
|
262
274
|
cirq/interop/quirk/cells/testing_test.py,sha256=Yenp4NRp9Dpem8bx4ZfW3NSDvpKL58blHaWPCW9mJhU,4013
|
|
263
|
-
cirq/interop/quirk/cells/unsupported_cells.py,sha256=
|
|
275
|
+
cirq/interop/quirk/cells/unsupported_cells.py,sha256=Y1FYjq463XFlvkbdTmfdIuRBk29tloXqvCRtWJ8FRuY,2887
|
|
264
276
|
cirq/interop/quirk/cells/unsupported_cells_test.py,sha256=yBLlmdv9X8f_-okKqcLo7gfJESZovO8RI-_jRoIC0M8,2230
|
|
265
277
|
cirq/ion/__init__.py,sha256=F6tf4JZOGpDdxX0FxT42qgq8rF96ZTFHMJ0OV09Yj1c,787
|
|
266
278
|
cirq/linalg/__init__.py,sha256=k3hZ6NMJN9b9ExgzkoHG4W2SFVEpYf8ZCSmIkOtRBOU,4029
|
|
267
279
|
cirq/linalg/combinators.py,sha256=7V9oNSojc466NvOXyt4FMu50yDQ77iM5N4oZ37fV9tc,5347
|
|
268
280
|
cirq/linalg/combinators_test.py,sha256=GohGZwFF87XW37sZtldaG5TlDp5-DA0Nc7k2gTZIlNo,4922
|
|
269
|
-
cirq/linalg/decompositions.py,sha256=
|
|
270
|
-
cirq/linalg/decompositions_test.py,sha256=
|
|
271
|
-
cirq/linalg/diagonalize.py,sha256=
|
|
281
|
+
cirq/linalg/decompositions.py,sha256=Qrzr_435vJj0v8alGMhnxW6xu4Wc4OT1qvxWo9rnx_M,38648
|
|
282
|
+
cirq/linalg/decompositions_test.py,sha256=d7P2JKrdVkI1W5GHpveS3p7fioJFW9C8C6G-EKWCGow,25929
|
|
283
|
+
cirq/linalg/diagonalize.py,sha256=_yS0-26PZ-OaLAjr7H_Rw6qcm2rDShxuzTxWgb7P2t8,10083
|
|
272
284
|
cirq/linalg/diagonalize_test.py,sha256=4gpQ2MmjK9C8khX1LTR1hfXAdP7Hl8e5jf1UszbXTFs,9177
|
|
273
285
|
cirq/linalg/operator_spaces.py,sha256=jUU-OYL8Lnn58kbhLskDyhkBeXZXPXVmR-hcIkq60JQ,4132
|
|
274
286
|
cirq/linalg/operator_spaces_test.py,sha256=9puH8uqMhWVF4QvJImX0WvcxsxBMvvroUZUSNNvaTDQ,10729
|
|
275
|
-
cirq/linalg/predicates.py,sha256=
|
|
287
|
+
cirq/linalg/predicates.py,sha256=mgGPRQKpnOX7j2ro2C2QYpIG2XSC-VmP5bmu-IAh4KI,12199
|
|
276
288
|
cirq/linalg/predicates_test.py,sha256=D_0TSF787MluJBJ_WctBPz8SsGBJesYgndCUISniw3Q,21911
|
|
277
|
-
cirq/linalg/tolerance.py,sha256=
|
|
289
|
+
cirq/linalg/tolerance.py,sha256=3f7kX7a38EGOkSrkV213JWFgY4LGxpT-G6WNhv55b8w,1920
|
|
278
290
|
cirq/linalg/tolerance_test.py,sha256=uAqJk--Rhxr9XXLh3dAvK_BDcbJUccEAFIFdLHiMEHU,2423
|
|
279
|
-
cirq/linalg/transformations.py,sha256=
|
|
291
|
+
cirq/linalg/transformations.py,sha256=e7xGyEJydNruRhU18zSMivIFe8Yg3vSCrMCBrRGRBv4,32622
|
|
280
292
|
cirq/linalg/transformations_test.py,sha256=2HdnYDzNDq7djdPByQmRphKkpy6k3rK9nC8uZfDlSZs,26462
|
|
281
293
|
cirq/neutral_atoms/__init__.py,sha256=VoQBkmZ5m4TPxjxShRixjqJbnc-IAnAWkGOPu8MBS5o,813
|
|
282
294
|
cirq/neutral_atoms/convert_to_neutral_atom_gates.py,sha256=2sIJd5CzWjehMi_rfFW8QXSnafwdWqzrnrzKbWlkXf0,1156
|
|
283
295
|
cirq/neutral_atoms/convert_to_neutral_atom_gates_test.py,sha256=fhCJubuFa81aRwd__sgBLc7D2z5VnwfzH-0lZvEv6jo,1905
|
|
284
296
|
cirq/neutral_atoms/neutral_atom_devices.py,sha256=9GP2IsrivvAoqnoEe-jkZ4Ef7v-zylwAr7jlAFkdEIo,1409
|
|
285
297
|
cirq/ops/__init__.py,sha256=HNtQJBFeiJJ-MbbNqe3f6KfcmZ_4YP5oTcCcZnGkYbY,8318
|
|
286
|
-
cirq/ops/arithmetic_operation.py,sha256=
|
|
287
|
-
cirq/ops/arithmetic_operation_test.py,sha256=
|
|
288
|
-
cirq/ops/boolean_hamiltonian.py,sha256=
|
|
298
|
+
cirq/ops/arithmetic_operation.py,sha256=HcuqyVlxL-8KgnNfh5HkuY8xZdq31UqN20J_lDXOxig,10057
|
|
299
|
+
cirq/ops/arithmetic_operation_test.py,sha256=EfERI5jktfiQaQay5LrBV1VaLFn3dVhvOSweD50Uds0,4947
|
|
300
|
+
cirq/ops/boolean_hamiltonian.py,sha256=BtTD1IjotXhrSCsxdHCJjeS_K4z6Jc7grg6BrjuA08w,14935
|
|
289
301
|
cirq/ops/boolean_hamiltonian_test.py,sha256=_4mFFrbO9C21oZYutr_pl01_bqDDxvgY_h4DWKGkse0,8630
|
|
290
|
-
cirq/ops/classically_controlled_operation.py,sha256=
|
|
291
|
-
cirq/ops/classically_controlled_operation_test.py,sha256
|
|
292
|
-
cirq/ops/clifford_gate.py,sha256=
|
|
293
|
-
cirq/ops/clifford_gate_test.py,sha256=
|
|
294
|
-
cirq/ops/common_channels.py,sha256=
|
|
302
|
+
cirq/ops/classically_controlled_operation.py,sha256=E_yDiUhZ0OxDbzzDFaxfuBjcVRE6dPMJXGspioH6-VU,10330
|
|
303
|
+
cirq/ops/classically_controlled_operation_test.py,sha256=-LDfOotkjxdXJXACVoteWkgmyaTuCcmV4Vy3DHZaWvY,50861
|
|
304
|
+
cirq/ops/clifford_gate.py,sha256=bnjnib8kW2e80kYG5CVjUd0ptzDY8PgwPJxdXtC2pbs,40112
|
|
305
|
+
cirq/ops/clifford_gate_test.py,sha256=F8HhlwfT-wVAMPxi9AUpyCMa8AJN3d3Mic8OF9Xvl6U,41231
|
|
306
|
+
cirq/ops/common_channels.py,sha256=ErqjeisCcVCdWNSzGXFpf7tZME7eQCMlCFsNVFPfe3s,37049
|
|
295
307
|
cirq/ops/common_channels_test.py,sha256=dPveO6j3qxmdRXaQhEIvj5vKRE0v3pQ9ICmjnSSbP0Q,30761
|
|
296
308
|
cirq/ops/common_gate_families.py,sha256=trK4ZXCKqYahZkyuwaAn-TcjUu7gmI9n9geO8PYiRGE,8606
|
|
297
309
|
cirq/ops/common_gate_families_test.py,sha256=SfIKolQhVIof0uOHljY1QKT9Tu_4WzUsoeCNR2jIOPg,5441
|
|
298
|
-
cirq/ops/common_gates.py,sha256=
|
|
310
|
+
cirq/ops/common_gates.py,sha256=pq-6pAquGvElu4m1Jol6odY9jRflTELFqe3MOOeqJus,58270
|
|
299
311
|
cirq/ops/common_gates_test.py,sha256=IcUWxDTTTbis0efXz2Kn0zAdclp9R31fZAfCx3E-BOo,49758
|
|
300
|
-
cirq/ops/control_values.py,sha256=
|
|
312
|
+
cirq/ops/control_values.py,sha256=sxcuaVNdOhWiqFEcrAQwp6yeUduKl8ANkof52Ta1FUs,13373
|
|
301
313
|
cirq/ops/control_values_test.py,sha256=Wyn0nwtcpnJvcPVRHmFGb3PtYxvsbpluA5UbPrG7tIo,13067
|
|
302
|
-
cirq/ops/controlled_gate.py,sha256=
|
|
303
|
-
cirq/ops/controlled_gate_test.py,sha256=
|
|
304
|
-
cirq/ops/controlled_operation.py,sha256=
|
|
305
|
-
cirq/ops/controlled_operation_test.py,sha256=
|
|
306
|
-
cirq/ops/dense_pauli_string.py,sha256=
|
|
307
|
-
cirq/ops/dense_pauli_string_test.py,sha256=
|
|
308
|
-
cirq/ops/diagonal_gate.py,sha256=
|
|
314
|
+
cirq/ops/controlled_gate.py,sha256=Zl4FlnpaAkEBs4UHWGuFAWW7k9ehT_EtOpFEmDihWQg,13573
|
|
315
|
+
cirq/ops/controlled_gate_test.py,sha256=Hsg4O1biIxcwqQq67Y8FRZGiKbwPzCfdk_dzE8sQE3c,29335
|
|
316
|
+
cirq/ops/controlled_operation.py,sha256=PXw1dO6Ba8GqzQEAltTBk2apdleN9FTNmY0uZKTn6l8,13572
|
|
317
|
+
cirq/ops/controlled_operation_test.py,sha256=k3kgb_40LK6CXK-lk8vGJADMSV2TM0Rt3OND4-258Cw,16726
|
|
318
|
+
cirq/ops/dense_pauli_string.py,sha256=LHbkf9lQ56XustomYpVtt3iw7jE0A1NC1dBM175Ta7c,23331
|
|
319
|
+
cirq/ops/dense_pauli_string_test.py,sha256=t4kl_8QdXnAbM3Bs-RpO-_fjtGZ1LSRl1UbXWJMX8Kc,23159
|
|
320
|
+
cirq/ops/diagonal_gate.py,sha256=6kOStIN6Su29Wt9nwfK5OJdDLhhnX5tePQvpUGJJrBk,8920
|
|
309
321
|
cirq/ops/diagonal_gate_test.py,sha256=JRQWrL4cEYzVjwal-EewyIPgThUwLdrE6f9i7ifd6Rk,6319
|
|
310
|
-
cirq/ops/eigen_gate.py,sha256=
|
|
322
|
+
cirq/ops/eigen_gate.py,sha256=9XLNezWfVBfJXv3v2TBXvD4kzUhBKHNUAh4etzL126o,17949
|
|
311
323
|
cirq/ops/eigen_gate_test.py,sha256=k48rIbYKUErElQBfiV8cNGcKRnO6_vSJtghDxm-rflA,16772
|
|
312
|
-
cirq/ops/fourier_transform.py,sha256=
|
|
313
|
-
cirq/ops/fourier_transform_test.py,sha256=
|
|
314
|
-
cirq/ops/fsim_gate.py,sha256=
|
|
324
|
+
cirq/ops/fourier_transform.py,sha256=rLhkuYup3ZRtUXgmMm_olG1Hd66FU3mzeZiREzhGbGQ,7466
|
|
325
|
+
cirq/ops/fourier_transform_test.py,sha256=fum4Kyxqb8AcAsELZsZcmkzbyzB7zf3cH1b32R5LFQ4,6331
|
|
326
|
+
cirq/ops/fsim_gate.py,sha256=V2dHKbbqmx5ZRuSwXbd3TIcJEUUe2iZK55cjam0XOD4,20048
|
|
315
327
|
cirq/ops/fsim_gate_test.py,sha256=QgckC2fij30grZJoO6HnQHdGkKcwtiegedEBRid3wF0,25858
|
|
316
328
|
cirq/ops/gate_features.py,sha256=OfjsIGftnGpNUDAYwSP4obG0FsMrHYfp49ZOjbvbmNE,1085
|
|
317
329
|
cirq/ops/gate_features_test.py,sha256=JYPunTBr48CQoIOB1wk2QEdPwtnmE-FxUoF6a4ZeRB8,2407
|
|
318
|
-
cirq/ops/gate_operation.py,sha256=
|
|
330
|
+
cirq/ops/gate_operation.py,sha256=V7GdzQ8OI9BTeAKE-ulL7Ccs0pMJkF3sHNxY_pZNNek,13819
|
|
319
331
|
cirq/ops/gate_operation_test.py,sha256=4QwWxCjGXNM__6QGw1kYSbBMh_4783jBZVBJD1ERGPk,18020
|
|
320
|
-
cirq/ops/gateset.py,sha256=
|
|
332
|
+
cirq/ops/gateset.py,sha256=AWoF5DGJ1pX1TyIYDvyvBurQUhr_cmnWxJeoTIn8TFU,22708
|
|
321
333
|
cirq/ops/gateset_test.py,sha256=oeJ0zLgknWxgW39_bc_8Ii_5_g5VNxiJWicZkkS-TaE,17651
|
|
322
|
-
cirq/ops/global_phase_op.py,sha256=
|
|
334
|
+
cirq/ops/global_phase_op.py,sha256=wcF1ERC_aRP9Z0PetRHyebeoZzAlDuC0U9ZDsm_mxI0,5722
|
|
323
335
|
cirq/ops/global_phase_op_test.py,sha256=9BBnPZLLmBzHsMoRPMFTAShx87TJnhTLvvgLpHJF4wc,10721
|
|
324
|
-
cirq/ops/greedy_qubit_manager.py,sha256=
|
|
336
|
+
cirq/ops/greedy_qubit_manager.py,sha256=X_l5e22GyLWmi1acwrUTIW6ujGxRWP1UQE5rNHwbJWY,4077
|
|
325
337
|
cirq/ops/greedy_qubit_manager_test.py,sha256=5vSKWsO0q8LwaKJSnOqr0bVQooKt0cwcO7zmPArHRRs,3464
|
|
326
|
-
cirq/ops/identity.py,sha256=
|
|
338
|
+
cirq/ops/identity.py,sha256=K6JOCrp5UmbM8BarzM8L0XFtzCQN9xn_GYNqCOfx5zE,5889
|
|
327
339
|
cirq/ops/identity_test.py,sha256=doObedJYSIb2v_ZnsL1iBsaRnX8jn5ZriqV8eoOvBzw,8161
|
|
328
|
-
cirq/ops/kraus_channel.py,sha256=
|
|
340
|
+
cirq/ops/kraus_channel.py,sha256=nCeLBeHKQzlg7qoDA86ooQyEeXVJK1b8P606XDGhjeg,5099
|
|
329
341
|
cirq/ops/kraus_channel_test.py,sha256=FhgCyCKa4bIgGc4yAQbqDKB80910TEVVWRknyyGbILg,4955
|
|
330
|
-
cirq/ops/linear_combinations.py,sha256=
|
|
331
|
-
cirq/ops/linear_combinations_test.py,sha256=
|
|
332
|
-
cirq/ops/matrix_gates.py,sha256=
|
|
342
|
+
cirq/ops/linear_combinations.py,sha256=XFmhYtuUSInOmn-zwp0Rro71RaYcyz0ZUqr27-cmpdY,39617
|
|
343
|
+
cirq/ops/linear_combinations_test.py,sha256=4X7gJKFdJfqI9iisc3jZqnLIhRgMWgaqgDpkCkl3nt4,68965
|
|
344
|
+
cirq/ops/matrix_gates.py,sha256=2QkYVGsyaYgqHJWN0duR0z6Du893O47_wZKO-mP53FI,10265
|
|
333
345
|
cirq/ops/matrix_gates_test.py,sha256=GEb2QTC2cNTQGVNXCXHL5PstrQLVpFEfQ3eGMZHe8z8,15006
|
|
334
|
-
cirq/ops/measure_util.py,sha256=
|
|
346
|
+
cirq/ops/measure_util.py,sha256=NQFYt5Xv8_iyCLSuI1XPH-_6Fc1jaxU_fKINoR9ddR0,7525
|
|
335
347
|
cirq/ops/measure_util_test.py,sha256=xsjcz70eXiDfGN_tFz4mNcF18dXgdV6z3vyOVnsF2BE,5570
|
|
336
|
-
cirq/ops/measurement_gate.py,sha256=
|
|
348
|
+
cirq/ops/measurement_gate.py,sha256=LxCBATYL25biasL-WcH8Mi8s8k1_LbWfYKE1pJ4bV3w,11901
|
|
337
349
|
cirq/ops/measurement_gate_test.py,sha256=IF8ceuD2Sb4kFlp9x9evwl8F7j4BkCvZXSgKCP4Ac1g,18573
|
|
338
|
-
cirq/ops/mixed_unitary_channel.py,sha256=
|
|
350
|
+
cirq/ops/mixed_unitary_channel.py,sha256=u8_TEkQmywWQsXUIKoWiMAHpu6fz3bnPyi0-63MtbGc,5273
|
|
339
351
|
cirq/ops/mixed_unitary_channel_test.py,sha256=QXnkw6-kP9HowdoV5aUtnEBAGG0bjqgzxKYe0dbV5XY,5277
|
|
340
|
-
cirq/ops/named_qubit.py,sha256=
|
|
352
|
+
cirq/ops/named_qubit.py,sha256=WCSRXbffhGSyX-W78p_OPcz5--1PIMptfnyY5cg3rCI,9993
|
|
341
353
|
cirq/ops/named_qubit_test.py,sha256=bS3sjjVo0Lm7cjoxBGkSsx5FGkUgSM1QxwBjVOHATis,5343
|
|
342
|
-
cirq/ops/op_tree.py,sha256=
|
|
354
|
+
cirq/ops/op_tree.py,sha256=FPzAmfgEnUCXNal62tfasWNTOaJCK1QUNLbrf1C0foI,5304
|
|
343
355
|
cirq/ops/op_tree_test.py,sha256=npk2P6asFc3Z-K_xQ0l9JNam4uBwWMZTGT8rDO5xUmQ,6104
|
|
344
|
-
cirq/ops/parallel_gate.py,sha256=
|
|
356
|
+
cirq/ops/parallel_gate.py,sha256=EKT4WiHD0nNfln4b14NyolU3T3pwGbUB3OvMV6gZtxs,6268
|
|
345
357
|
cirq/ops/parallel_gate_test.py,sha256=ruFdVnB8PS9LOPQLPZACdf0nh3l-sApQe9bk10EDBJI,6463
|
|
346
|
-
cirq/ops/parity_gates.py,sha256=
|
|
347
|
-
cirq/ops/parity_gates_test.py,sha256
|
|
358
|
+
cirq/ops/parity_gates.py,sha256=C7J62rZNL8Lq_bVhq8Me_T1Z9Q8QQny8K7itEmQrI_M,14287
|
|
359
|
+
cirq/ops/parity_gates_test.py,sha256=z2i3qXtc1LBBFyYuoNFGONAXyFre9W7VzqYcqN0imTc,12509
|
|
348
360
|
cirq/ops/pauli_gates.py,sha256=hXChuK9F56DEft2KHcMhjf6cPyEHHB5BKy10Dsk0FNM,6776
|
|
349
361
|
cirq/ops/pauli_gates_test.py,sha256=YYzQBojxoZTM6WH7pD3PNwmQrIO6U7FTG6AaZ-6z-To,8334
|
|
350
|
-
cirq/ops/pauli_interaction_gate.py,sha256=
|
|
362
|
+
cirq/ops/pauli_interaction_gate.py,sha256=5i7GL82GrXEIWRWmy2ydrmej3yk9PslYxZ6boFv5B4c,5566
|
|
351
363
|
cirq/ops/pauli_interaction_gate_test.py,sha256=9IGQjf4cRNe1EAsxVJjTMysoO2TxUhDlp-6lXJuAYD8,4643
|
|
352
|
-
cirq/ops/pauli_measurement_gate.py,sha256=
|
|
364
|
+
cirq/ops/pauli_measurement_gate.py,sha256=v7fTZk2JvYfCh9uNl0X7VjvH9XqqgseShp39ojdzOzs,7140
|
|
353
365
|
cirq/ops/pauli_measurement_gate_test.py,sha256=IDnbQgyaj-nbYw_sslPBccl8aRGTlMrADc_EEiAvluk,6929
|
|
354
|
-
cirq/ops/pauli_string.py,sha256=
|
|
355
|
-
cirq/ops/pauli_string_phasor.py,sha256=
|
|
366
|
+
cirq/ops/pauli_string.py,sha256=lF5599GN-DLMSePQcPkYUuiboAehr2c20bpMUvdwsb4,63331
|
|
367
|
+
cirq/ops/pauli_string_phasor.py,sha256=AVy1uJYwtxN4uHUFaQp81plTKyWE8VeArewcC9emAGc,18226
|
|
356
368
|
cirq/ops/pauli_string_phasor_test.py,sha256=ZIoraHH3kOFjtEfThXDS-sxUvSU8MYZ2avtdiPcyN6w,28309
|
|
357
|
-
cirq/ops/pauli_string_raw_types.py,sha256=
|
|
369
|
+
cirq/ops/pauli_string_raw_types.py,sha256=jwr1pr7AVTgqqalnOqZS-4T-RjovGPCEtBjw_h25_6Y,2253
|
|
358
370
|
cirq/ops/pauli_string_raw_types_test.py,sha256=ZcOZ31KSVIc7ReZoO8WZEX8MOyPOhUWaYLppvGTE4-8,2761
|
|
359
|
-
cirq/ops/pauli_string_test.py,sha256=
|
|
360
|
-
cirq/ops/pauli_sum_exponential.py,sha256=
|
|
371
|
+
cirq/ops/pauli_string_test.py,sha256=hUy57-vnOd9d_-Q4Wr3nHvcdnzs5n2IdscIbs6glk8E,79644
|
|
372
|
+
cirq/ops/pauli_sum_exponential.py,sha256=GlgGxLbpJAyl3FVPIwu-2xxE3TBZTuni38SEv5M92TY,4888
|
|
361
373
|
cirq/ops/pauli_sum_exponential_test.py,sha256=u9fVBUMuiIb6xOPC2GRTR3zFUeO6N3vanejUk5_u9_8,5485
|
|
362
|
-
cirq/ops/permutation_gate.py,sha256=
|
|
374
|
+
cirq/ops/permutation_gate.py,sha256=dEDRNApwYDqs_i4qWTeMNilQh-Hslm6ONAZHTwlqtgM,4245
|
|
363
375
|
cirq/ops/permutation_gate_test.py,sha256=HgXqFoDbhl0EcFbpr0Lj7dA0UxleQ_m_JZ96HfdCZyc,3381
|
|
364
|
-
cirq/ops/phased_iswap_gate.py,sha256=
|
|
376
|
+
cirq/ops/phased_iswap_gate.py,sha256=fgjXE-CKrzQfMwf8zyhxWfiihBMumvz1wfO5JkWXJh0,8950
|
|
365
377
|
cirq/ops/phased_iswap_gate_test.py,sha256=hRcyf2QHCExKO-XmZ9_2TV8DePBESEgM-CEB5bn-ZfY,7516
|
|
366
|
-
cirq/ops/phased_x_gate.py,sha256=
|
|
378
|
+
cirq/ops/phased_x_gate.py,sha256=H55pmJVxclrK-UIDlY8VwFRu_JdYEtYKxJqVSm0e7nQ,9336
|
|
367
379
|
cirq/ops/phased_x_gate_test.py,sha256=lQ6UV9X52joByV_SLzNceO785uVY5wSqlba8tMpzHSA,10976
|
|
368
|
-
cirq/ops/phased_x_z_gate.py,sha256=
|
|
380
|
+
cirq/ops/phased_x_z_gate.py,sha256=HHxZ07Rc-JukQfqk6nua7k06nSCDtEguxBl35zpbCZA,11872
|
|
369
381
|
cirq/ops/phased_x_z_gate_test.py,sha256=ZmV0NdJJMzile88bRHYGYPXxOP785fW_Tn4tCxbphPY,10876
|
|
370
|
-
cirq/ops/projector.py,sha256=
|
|
382
|
+
cirq/ops/projector.py,sha256=0WJ8nDggtHExBM9LjYrOA8LuydG1gFKQMuwhIko5F4E,5672
|
|
371
383
|
cirq/ops/projector_test.py,sha256=vphfIBPkrEPXj4I6B_IPM84wOW-DsETSR9ua4lDioF4,9232
|
|
372
384
|
cirq/ops/qid_util.py,sha256=pyU_me-SkhkGG4wMyPReuArUd9_3anrbCQK8PpzwCOY,2077
|
|
373
385
|
cirq/ops/qid_util_test.py,sha256=5jy-dxgm_ae9YAPVs7af_Afr2pYNb9R8ON43Zb0Ku20,1097
|
|
374
|
-
cirq/ops/qubit_manager.py,sha256=
|
|
386
|
+
cirq/ops/qubit_manager.py,sha256=cTM1aH22X6H_HSv3HnGnDg2PQ08rgtf0tmsENW-ESEI,3576
|
|
375
387
|
cirq/ops/qubit_manager_test.py,sha256=yCzPLh-HhS1z0FzA2ukxZqkK0iP3pf0zMXObtnOMI6w,3440
|
|
376
|
-
cirq/ops/qubit_order.py,sha256=
|
|
377
|
-
cirq/ops/qubit_order_or_list.py,sha256=
|
|
388
|
+
cirq/ops/qubit_order.py,sha256=sMb9tTrgyJQ0BcLNrLWrT8T_Ie8uOmvLpcA04h0C72o,5524
|
|
389
|
+
cirq/ops/qubit_order_or_list.py,sha256=JnIK35vc9eFqZCSpsN5KCChhi-J-GX6XCamkQZqVIew,1197
|
|
378
390
|
cirq/ops/qubit_order_test.py,sha256=8uOW9oLLQcjbYvd2DdXZLCbRS2sJuH6b8Bal3SgPo5M,4372
|
|
379
|
-
cirq/ops/random_gate_channel.py,sha256=
|
|
391
|
+
cirq/ops/random_gate_channel.py,sha256=pSrin4_1QnJENgbJj7nCVnhiCAPFvFXiaw6tLEOeE7U,5126
|
|
380
392
|
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=
|
|
383
|
-
cirq/ops/state_preparation_channel.py,sha256=
|
|
393
|
+
cirq/ops/raw_types.py,sha256=YbFHnzuIHqiZihNjWUEsKBmfl46rLP4iejlepcriwfY,44278
|
|
394
|
+
cirq/ops/raw_types_test.py,sha256=QOeuiQ7BTM-zh9KFC048kGcpMTqM48VE-C1gAN1nUUs,35411
|
|
395
|
+
cirq/ops/state_preparation_channel.py,sha256=7x7Q-4Cgc4lZfj5vewHDvu9vGNvsJAHQcThnvzRIs1k,4808
|
|
384
396
|
cirq/ops/state_preparation_channel_test.py,sha256=xFi6nOFPoQatxvnorCXujmhMvtf65lmyFfxbGlTKo4c,6039
|
|
385
397
|
cirq/ops/swap_gates.py,sha256=mEDVB4pdBsbenaOahrNtAcE2B1ZPW-4vGq079rECxf4,11743
|
|
386
398
|
cirq/ops/swap_gates_test.py,sha256=8Yee6RgkQahsnB92ZD-rTb9dNqMLXdBKlgWC8qWd2uo,7624
|
|
387
399
|
cirq/ops/tags.py,sha256=nBKqDnPHunxABIOqSAHsVb2hByRAJSfGCJjTC6-AbTY,2307
|
|
388
400
|
cirq/ops/tags_test.py,sha256=EUCAjFYsQ98r6eo8XUNJoQCKMRCc4KvcqXUZAzfPqiE,1210
|
|
389
|
-
cirq/ops/three_qubit_gates.py,sha256=
|
|
401
|
+
cirq/ops/three_qubit_gates.py,sha256=AdFynO2g3dFIOtOvP8K_3FgrmTlN7vUm9BkOT4w6LnQ,27948
|
|
390
402
|
cirq/ops/three_qubit_gates_test.py,sha256=r9bO7noLCUIGhSprE-KUTlnrf16IEoAhy93Obi6oL18,11951
|
|
391
|
-
cirq/ops/two_qubit_diagonal_gate.py,sha256=
|
|
403
|
+
cirq/ops/two_qubit_diagonal_gate.py,sha256=wDkRTY_jGpSYJ6Nebq0dA3rACthfPXVyamN51AOtCG4,5388
|
|
392
404
|
cirq/ops/two_qubit_diagonal_gate_test.py,sha256=pv24VMf2yQ-2gaHg_EUwWx5tAFvXo47_sKzdbdCPhRY,4100
|
|
393
|
-
cirq/ops/uniform_superposition_gate.py,sha256=
|
|
405
|
+
cirq/ops/uniform_superposition_gate.py,sha256=1KPi0nh1cqJrRMdPj42l92bSOiCZUhucgRfM1oldXLY,4778
|
|
394
406
|
cirq/ops/uniform_superposition_gate_test.py,sha256=Sd0Ty3-Tidsa0ANjn4oSNdNSfkLP6V1LauURBEmyR84,3612
|
|
395
|
-
cirq/ops/wait_gate.py,sha256=
|
|
407
|
+
cirq/ops/wait_gate.py,sha256=aPvswcFOdLhsHnTYwbabkHWK_qf74_QwQH-dV7zjGmg,5721
|
|
396
408
|
cirq/ops/wait_gate_test.py,sha256=BkRLYMTETWoTYh8LA1S9Yvh8u7wX4-YNVhXhiCOQIAo,3628
|
|
397
409
|
cirq/protocols/__init__.py,sha256=SZCBRpL2YbYWMVcvJVR6FGkBv9aGv01oY2skSBvtNcg,6015
|
|
398
|
-
cirq/protocols/act_on_protocol.py,sha256=
|
|
399
|
-
cirq/protocols/act_on_protocol_test.py,sha256=
|
|
400
|
-
cirq/protocols/apply_channel_protocol.py,sha256=
|
|
410
|
+
cirq/protocols/act_on_protocol.py,sha256=e1bxW5drGyZgTg9tE6AGg2QJSHEeCY174_liTTJhFmw,6885
|
|
411
|
+
cirq/protocols/act_on_protocol_test.py,sha256=YoGby7RO115lA6nH3EPXZEQ0I4hutMcN2inl4XqxBWY,3298
|
|
412
|
+
cirq/protocols/apply_channel_protocol.py,sha256=xSoSnnh1aLWI8rSNbW3FJtzs-VniOWsswK6Nypd7CcY,15613
|
|
401
413
|
cirq/protocols/apply_channel_protocol_test.py,sha256=XtvZzmG9x-cdeLeCm7ojHsSbMkQZJEjyFB3EFiPbA10,10896
|
|
402
|
-
cirq/protocols/apply_mixture_protocol.py,sha256=
|
|
403
|
-
cirq/protocols/apply_mixture_protocol_test.py,sha256=
|
|
404
|
-
cirq/protocols/apply_unitary_protocol.py,sha256=
|
|
405
|
-
cirq/protocols/apply_unitary_protocol_test.py,sha256=
|
|
406
|
-
cirq/protocols/approximate_equality_protocol.py,sha256=
|
|
414
|
+
cirq/protocols/apply_mixture_protocol.py,sha256=DFvEfMeJEGr4XP7MBNovHI7hXuXKQBcEKBAO0xQQCXU,15319
|
|
415
|
+
cirq/protocols/apply_mixture_protocol_test.py,sha256=VGuTnSxVMRSSE7-ZCbr7gD8q-bt_sbeFW8SVYlpW8VA,11449
|
|
416
|
+
cirq/protocols/apply_unitary_protocol.py,sha256=0PT0WHQbIu12oWz_wTWX_VqhfRmZ35gaGn0lZ3F6FDY,29897
|
|
417
|
+
cirq/protocols/apply_unitary_protocol_test.py,sha256=s5Ap5iiYJvB9wJlAZ_FbmurlGfCNWIS-LGYZffr8tyE,26767
|
|
418
|
+
cirq/protocols/approximate_equality_protocol.py,sha256=qn-4wZxNd_e-9j8iv_2vlHlVnZ7Nj6ewUn0zqofoZi0,6291
|
|
407
419
|
cirq/protocols/approximate_equality_protocol_test.py,sha256=APzdSFqSTTBsjEtfSRR44H2CllYL1_OsPUH1NTzR08c,9495
|
|
408
|
-
cirq/protocols/circuit_diagram_info_protocol.py,sha256=
|
|
420
|
+
cirq/protocols/circuit_diagram_info_protocol.py,sha256=wCtKKOaw0Lmsca84wAzTtqYIwrXzMN_u7WX7Ycu_GVo,17206
|
|
409
421
|
cirq/protocols/circuit_diagram_info_protocol_test.py,sha256=r-kNamR6QPdu-Q9to2DKLrDP9J8rWOA7IxfMVvcO0qE,12074
|
|
410
422
|
cirq/protocols/commutes_protocol.py,sha256=DPwB_xKiqj3MW8uxEksjWDd6c163zgNMNMDjE2N9Xbw,7368
|
|
411
423
|
cirq/protocols/commutes_protocol_test.py,sha256=INP3i39_3Xqh8oDTDNdY546fqD3eqnVzW_TO0zUVCeg,5911
|
|
412
|
-
cirq/protocols/control_key_protocol.py,sha256=
|
|
424
|
+
cirq/protocols/control_key_protocol.py,sha256=a_yEw9vk7nlfJ-lADHIJPf0RhuxfM7KYcRvuG-prtXg,2934
|
|
413
425
|
cirq/protocols/control_key_protocol_test.py,sha256=fNDDkf4mQpA_tKuhX1e2BJN72v9HdGftgd79sOqREJE,1014
|
|
414
|
-
cirq/protocols/decompose_protocol.py,sha256=
|
|
426
|
+
cirq/protocols/decompose_protocol.py,sha256=HLf37Wj4PGMo4KNKjBy9LL7nWVX01asiZaI__aTHYWI,18923
|
|
415
427
|
cirq/protocols/decompose_protocol_test.py,sha256=JJexKMKYdSW1K1S4wkTyR1Wy80Ku_jHslSJx3gJ5REs,18130
|
|
416
428
|
cirq/protocols/equal_up_to_global_phase_protocol.py,sha256=rIk5aRxjtmi75c1lfXutycULZYHNR2zfKmmZ67L0kZU,4077
|
|
417
429
|
cirq/protocols/equal_up_to_global_phase_protocol_test.py,sha256=EDfWnCuYAVfcvBXHYoZ0lDukNEGG2c53vzP7s8jHLKA,6050
|
|
418
|
-
cirq/protocols/has_stabilizer_effect_protocol.py,sha256=
|
|
419
|
-
cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=
|
|
430
|
+
cirq/protocols/has_stabilizer_effect_protocol.py,sha256=Jap6z5ocbXLRH_9eEKw6O3nerzkGG_BB0aea1A4QZUA,4307
|
|
431
|
+
cirq/protocols/has_stabilizer_effect_protocol_test.py,sha256=nXmWpMvOtmbeetjSwbWzdJoghDxuDzLyV6awhtRUc5Y,4087
|
|
420
432
|
cirq/protocols/has_unitary_protocol.py,sha256=pO23u1faWqz1s-cvE1rySczN6tdriM7dvBOAh7A0pzs,5439
|
|
421
|
-
cirq/protocols/has_unitary_protocol_test.py,sha256=
|
|
422
|
-
cirq/protocols/hash_from_pickle_test.py,sha256=
|
|
423
|
-
cirq/protocols/inverse_protocol.py,sha256=
|
|
433
|
+
cirq/protocols/has_unitary_protocol_test.py,sha256=CJDVVW3eFwcTa9wWl6GavBD2Z62YEmQjMWKDTdV8skg,5994
|
|
434
|
+
cirq/protocols/hash_from_pickle_test.py,sha256=9ngrFdPe65jESRvrEiFuxmB56ypllofcU6tuCMs80B0,4108
|
|
435
|
+
cirq/protocols/inverse_protocol.py,sha256=msnGXeK4ZJ7ejM3_9mE4gw_L95aSQnrkc4Stt2QWV64,3992
|
|
424
436
|
cirq/protocols/inverse_protocol_test.py,sha256=5RoZfSRzBvpGpLdg1XKYdB6qy-GkDvZsATUvxdFrLJ0,2067
|
|
425
|
-
cirq/protocols/json_serialization.py,sha256=
|
|
426
|
-
cirq/protocols/json_serialization_test.py,sha256=
|
|
427
|
-
cirq/protocols/kraus_protocol.py,sha256=
|
|
428
|
-
cirq/protocols/kraus_protocol_test.py,sha256=
|
|
429
|
-
cirq/protocols/measurement_key_protocol.py,sha256=
|
|
437
|
+
cirq/protocols/json_serialization.py,sha256=jCyahEQe5qgHO87nzxtKp5rHm0zMagWGX1nPyf0x8nM,24577
|
|
438
|
+
cirq/protocols/json_serialization_test.py,sha256=TewzqlI48icH_8DK-DoYtrMlyH0Mznjzi_vIxQjwKbk,28090
|
|
439
|
+
cirq/protocols/kraus_protocol.py,sha256=ZNbdN3HUlysVvmXbOBlR38lKSLtxfi2mh-Xtj_VZYio,11404
|
|
440
|
+
cirq/protocols/kraus_protocol_test.py,sha256=2L06H6CRIZlS_8X7lAv2-OIfBQVfeRhdYrS0J0Xdh2A,8279
|
|
441
|
+
cirq/protocols/measurement_key_protocol.py,sha256=poFjzUhK0DZ0dwOGt3SQGH_KMhUKrlPguA5H3AnMyBw,13750
|
|
430
442
|
cirq/protocols/measurement_key_protocol_test.py,sha256=PqSU9uB4t2yvPz9hZBLby2mZnZo-DOLlx3HIicyPeLo,8768
|
|
431
|
-
cirq/protocols/mixture_protocol.py,sha256
|
|
432
|
-
cirq/protocols/mixture_protocol_test.py,sha256=
|
|
443
|
+
cirq/protocols/mixture_protocol.py,sha256=w0c9mchy4WHhQS6gt4E1sfG3LkulDgXnR_lam_sKIUw,6434
|
|
444
|
+
cirq/protocols/mixture_protocol_test.py,sha256=8hSIlvlQJ-HxHrlgX8ZCykZsP5wcWZhXJUF5JfiXIRM,3932
|
|
433
445
|
cirq/protocols/mul_protocol.py,sha256=Jv7Qq5SejO0F6kpnFcTBML3rjZd-LTmrUJJ_D7PRpR4,2749
|
|
434
|
-
cirq/protocols/mul_protocol_test.py,sha256=
|
|
446
|
+
cirq/protocols/mul_protocol_test.py,sha256=d8aG5PnGkmNEan23KcL6Y1KHYmgS8Plyi7g65gqa3gU,2240
|
|
435
447
|
cirq/protocols/pauli_expansion_protocol.py,sha256=a-oovf62dKIbMGx4SdzNiQfjBpZkmvvwzqRLPnfQqoQ,3738
|
|
436
448
|
cirq/protocols/pauli_expansion_protocol_test.py,sha256=TATNum73ccpG_SbK6FWxcD7rj5kw92mKpzzK1oNZkk8,2769
|
|
437
|
-
cirq/protocols/phase_protocol.py,sha256=
|
|
449
|
+
cirq/protocols/phase_protocol.py,sha256=FNjEBmBZyAGpjA_WesqFg_PBN7-qL-QIP0PAUbXa2ns,3812
|
|
438
450
|
cirq/protocols/phase_protocol_test.py,sha256=brLHtnnAhB28ErwgdkVDZlXTFsF5M7vSyNz-lxe8D0Y,1983
|
|
439
|
-
cirq/protocols/pow_protocol.py,sha256=
|
|
440
|
-
cirq/protocols/pow_protocol_test.py,sha256=
|
|
441
|
-
cirq/protocols/qasm.py,sha256=
|
|
451
|
+
cirq/protocols/pow_protocol.py,sha256=wxYpedx4xE9MMS9ybEBBT3tLHalfsjpqdeHnocgVics,3178
|
|
452
|
+
cirq/protocols/pow_protocol_test.py,sha256=MJHL_chaWEWS_CK9Bc-BVQMOblwKVbzcvjw1EkNQSUQ,1748
|
|
453
|
+
cirq/protocols/qasm.py,sha256=cB7ECmC46Ux6zW0I4IePZX_oEUIuc3BSvfh-6B-v-D4,7213
|
|
442
454
|
cirq/protocols/qasm_test.py,sha256=HirWOanvVpqd9aT9s8etKBvfjbEKfpnro8Vyrq7WELc,2277
|
|
443
|
-
cirq/protocols/qid_shape_protocol.py,sha256=
|
|
455
|
+
cirq/protocols/qid_shape_protocol.py,sha256=CDahjKZHUY4bUHAm9JfX8_K0nsByaOzql96Cms8WPy0,7679
|
|
444
456
|
cirq/protocols/qid_shape_protocol_test.py,sha256=qCocF8pVb6U27lnHJiRkRRDQSgA59KvwXr6RxGEixXI,2347
|
|
445
|
-
cirq/protocols/resolve_parameters.py,sha256=
|
|
457
|
+
cirq/protocols/resolve_parameters.py,sha256=Lw1Kf3QOMjiRYCO1vr5Fd0UxY8TPQ-5es3asogTxOqQ,7448
|
|
446
458
|
cirq/protocols/resolve_parameters_test.py,sha256=2R2T2p4NkbD4IV2_4i8WkvSHu3OqjXo-Bf856Rwb-3w,4933
|
|
447
|
-
cirq/protocols/trace_distance_bound.py,sha256=
|
|
459
|
+
cirq/protocols/trace_distance_bound.py,sha256=hh8okHf7bo4kXSXK92km159MrK9GVV9ib3meGhQZpys,4177
|
|
448
460
|
cirq/protocols/trace_distance_bound_test.py,sha256=0bI9uYttJj5eayM05kShPh9qkxeKG1egcZ9fXJPZWNU,1980
|
|
449
|
-
cirq/protocols/unitary_protocol.py,sha256=
|
|
450
|
-
cirq/protocols/unitary_protocol_test.py,sha256=
|
|
461
|
+
cirq/protocols/unitary_protocol.py,sha256=3eP2U74vap3-Ha1xXr-FpkWIi6kHFWKroFe7f83puTk,8287
|
|
462
|
+
cirq/protocols/unitary_protocol_test.py,sha256=C7gauI6a5mcyjCc_qfRYt6eDtigt46kSdo8hpj2WEV8,10838
|
|
451
463
|
cirq/protocols/json_test_data/AmplitudeDampingChannel.json,sha256=x3szAuG8j_1uAK5ghFapaB410g0twQ83aQNsvItXVdo,60
|
|
452
464
|
cirq/protocols/json_test_data/AmplitudeDampingChannel.repr,sha256=n_tJNGHkWlxYunXGMFtFO6-RuIv0y8Ki0YqE8w3hOl0,30
|
|
453
465
|
cirq/protocols/json_test_data/AnyIntegerPowerGateFamily.json,sha256=Qf8FTwvPV7en7WcPbhP1kvjLUUPYgbICoPFqT6w86hw,68
|
|
@@ -918,126 +930,126 @@ cirq/protocols/json_test_data/sympy.Xor.repr,sha256=JJQpRqs9zS_NGgbgvK6a_smY_xPW
|
|
|
918
930
|
cirq/protocols/json_test_data/sympy.pi.json,sha256=9LMRtr_ef-On0sxRe0vbUeXZt8cdDvvPvmmwXZ5iwnw,40
|
|
919
931
|
cirq/protocols/json_test_data/sympy.pi.repr,sha256=ZQS0my0esr3dWTZ3mWlqgR63uorPCpuSkOgnvu_x_c4,12
|
|
920
932
|
cirq/qis/__init__.py,sha256=7yOctnS4jY-rTfV9fKMbddVh1m8GjZDf3_hx4A7ZOcM,2892
|
|
921
|
-
cirq/qis/channels.py,sha256=
|
|
922
|
-
cirq/qis/channels_test.py,sha256=
|
|
923
|
-
cirq/qis/clifford_tableau.py,sha256=
|
|
924
|
-
cirq/qis/clifford_tableau_test.py,sha256=
|
|
925
|
-
cirq/qis/entropy.py,sha256=
|
|
926
|
-
cirq/qis/entropy_test.py,sha256=
|
|
933
|
+
cirq/qis/channels.py,sha256=7djUp0vVoodXZ-VkmkZMYsAkO9TZnfLWETw-iRGPxF0,12841
|
|
934
|
+
cirq/qis/channels_test.py,sha256=BeYJJUnCFE4nhkNgBH4OxXlZJt_clLQZTqA4t6EJezI,14267
|
|
935
|
+
cirq/qis/clifford_tableau.py,sha256=HeKSzsAchulgDyowuJ8GgHen2yJmycc4jrpA6_8teM0,26347
|
|
936
|
+
cirq/qis/clifford_tableau_test.py,sha256=f9vpGZPLmcF6Sv-8oPV2mM2OFlh6hOYCArki8Px1rLM,18539
|
|
937
|
+
cirq/qis/entropy.py,sha256=M8nZXjAk-eazZtUs2aU5vukBTbY5D7-crZbocrqJ1rQ,4247
|
|
938
|
+
cirq/qis/entropy_test.py,sha256=aBZyHxLM_Z5mWvRFWUGlIqlry8yJD9bfGyxNKybhziI,1725
|
|
927
939
|
cirq/qis/measures.py,sha256=R54UapXz5itCrEAMy1cfwxVWu8_YmumsTtvHRZBAQ3M,12245
|
|
928
940
|
cirq/qis/measures_test.py,sha256=NPaKbc0R-brPD66XxaWQq74S-ZIHKXxGeLNik2yZIog,10424
|
|
929
941
|
cirq/qis/noise_utils.py,sha256=wbmihs9IfspoOcDms8oBwwbpljfZRsFjnC78I9_fd6s,3716
|
|
930
942
|
cirq/qis/noise_utils_test.py,sha256=bvMKEO5I3mOwUq2QxPZK-1Qrd9wU9pU1sJew-x-FnuU,3483
|
|
931
|
-
cirq/qis/quantum_state_representation.py,sha256=
|
|
932
|
-
cirq/qis/states.py,sha256=
|
|
933
|
-
cirq/qis/states_test.py,sha256=
|
|
943
|
+
cirq/qis/quantum_state_representation.py,sha256=RnRIPb33gquc_Kobj3mlf2JlBqKRZlF_pmnnKTOQ6V8,3230
|
|
944
|
+
cirq/qis/states.py,sha256=GsBwED4ZpgcjfAis9Akth8kmDulqJz8Eq4ENV2cxRkc,41982
|
|
945
|
+
cirq/qis/states_test.py,sha256=bBjiKiTEB-J0Z1OJGElBXOaYrU4cFTn41-mLSK-E35M,32321
|
|
934
946
|
cirq/sim/__init__.py,sha256=J209uAbjmgzER-48Q-FkRUWQ1FlG6-1c7GK11owZIW4,3452
|
|
935
|
-
cirq/sim/classical_simulator.py,sha256=
|
|
936
|
-
cirq/sim/classical_simulator_test.py,sha256=
|
|
937
|
-
cirq/sim/density_matrix_simulation_state.py,sha256=
|
|
947
|
+
cirq/sim/classical_simulator.py,sha256=yW0LXu-zzwp_WuWVbdUiJieLqjpDyR6CYbZWtTJsW40,9820
|
|
948
|
+
cirq/sim/classical_simulator_test.py,sha256=USnEOt7CjxGCK0OK_2BGyWJaTvcJemKiqg2LYW2o0s0,14907
|
|
949
|
+
cirq/sim/density_matrix_simulation_state.py,sha256=VWjWtwLJ7SNSaWySIhAXA3qXYLz2CN9ONI8lPRAbkyI,14070
|
|
938
950
|
cirq/sim/density_matrix_simulation_state_test.py,sha256=bjiDTclg9g83dLfmuYpZxMy1o_JlucRbbKXw8wgG20I,4469
|
|
939
|
-
cirq/sim/density_matrix_simulator.py,sha256=
|
|
940
|
-
cirq/sim/density_matrix_simulator_test.py,sha256=
|
|
941
|
-
cirq/sim/density_matrix_utils.py,sha256=
|
|
942
|
-
cirq/sim/density_matrix_utils_test.py,sha256=
|
|
943
|
-
cirq/sim/mux.py,sha256=
|
|
944
|
-
cirq/sim/mux_test.py,sha256=
|
|
945
|
-
cirq/sim/simulation_product_state.py,sha256=
|
|
946
|
-
cirq/sim/simulation_product_state_test.py,sha256=
|
|
947
|
-
cirq/sim/simulation_state.py,sha256=
|
|
948
|
-
cirq/sim/simulation_state_base.py,sha256=
|
|
949
|
-
cirq/sim/simulation_state_test.py,sha256=
|
|
950
|
-
cirq/sim/simulation_utils.py,sha256=
|
|
951
|
+
cirq/sim/density_matrix_simulator.py,sha256=l8lsbrO_VL4STH6xARLrSlKhi0cMY_9RnTyaNgX8Nd4,17531
|
|
952
|
+
cirq/sim/density_matrix_simulator_test.py,sha256=SbLGFqg9d2RPdDygfJ83soBc_yZCnZyT2vmpEnuGiag,62050
|
|
953
|
+
cirq/sim/density_matrix_utils.py,sha256=3XS5iOQMZTDW7SO2yope4hx1n7Jd6F90HaPSN8_lYGI,10300
|
|
954
|
+
cirq/sim/density_matrix_utils_test.py,sha256=xwe-kRZdv7CDD3boU5H8gFaHUAOjK3lGi4gjxZWhY7Q,14563
|
|
955
|
+
cirq/sim/mux.py,sha256=ZoNLYZfm1ozhkM-UVV9MuyBq8ET8thmtlpxOXjrdQTI,13821
|
|
956
|
+
cirq/sim/mux_test.py,sha256=3cFV5vBcy2fOnuTSqZRLmpKhOl-_eEKCD7LQlGtbEjw,14333
|
|
957
|
+
cirq/sim/simulation_product_state.py,sha256=L9ohV3MrHbigXVsSZmBhapP-2ZvCf2fqS_n9E-DPYuc,7041
|
|
958
|
+
cirq/sim/simulation_product_state_test.py,sha256=KZtdDvcmNLbs0_i1Cgx6QuyVgHLvccelcv9CzIPimyE,9192
|
|
959
|
+
cirq/sim/simulation_state.py,sha256=WyPCe35E60Q02LJ6c2kuhTpolLATnrs_wgSCaAaHXz4,12581
|
|
960
|
+
cirq/sim/simulation_state_base.py,sha256=7W9R5n0isQscmhGZZRKhyUuBNiKfvG4FyFcikwjKNp0,4075
|
|
961
|
+
cirq/sim/simulation_state_test.py,sha256=HhPqrhgqmX6i7h0Dn3nZrTqY1XMEbjcAhVTkrJ9xj5g,7695
|
|
962
|
+
cirq/sim/simulation_utils.py,sha256=LGXpNxJJv8dKN1eHpNcEgZ4169sWJM0jFS_8T4Fuxd0,2703
|
|
951
963
|
cirq/sim/simulation_utils_test.py,sha256=T3fGLpB3OAQtWBA6zuPQH1UlKLqpGR_5DAkxiUyKjGA,1380
|
|
952
|
-
cirq/sim/simulator.py,sha256=
|
|
953
|
-
cirq/sim/simulator_base.py,sha256=
|
|
954
|
-
cirq/sim/simulator_base_test.py,sha256=
|
|
955
|
-
cirq/sim/simulator_test.py,sha256=
|
|
956
|
-
cirq/sim/sparse_simulator.py,sha256=
|
|
957
|
-
cirq/sim/sparse_simulator_test.py,sha256=
|
|
958
|
-
cirq/sim/state_vector.py,sha256=
|
|
959
|
-
cirq/sim/state_vector_simulation_state.py,sha256=
|
|
964
|
+
cirq/sim/simulator.py,sha256=ALZnw9YzZ_dPlJ1pp1oxSKMBXEc4puS_QWr5DAkGUJQ,41831
|
|
965
|
+
cirq/sim/simulator_base.py,sha256=gf0xYCBl7lvqmV4F8pzcQlWD6elToaVkF1CnaA-34TQ,18209
|
|
966
|
+
cirq/sim/simulator_base_test.py,sha256=P1zROHOQbsA47XPDJptfREF9KXyEsGthH3cBkMiarkM,16298
|
|
967
|
+
cirq/sim/simulator_test.py,sha256=v-wGBECx-fe_P5LDrEYh9blgHGLUBLeDLui5T2dR4aA,19360
|
|
968
|
+
cirq/sim/sparse_simulator.py,sha256=OMs4UDg405T1_hIIezgqXIEw_FRDZIU9sPr0q4C8qbo,12963
|
|
969
|
+
cirq/sim/sparse_simulator_test.py,sha256=ZZ9dRplyB0NY2o9GDq1CknMvbDt6MUjjOHI_V55iL_g,54534
|
|
970
|
+
cirq/sim/state_vector.py,sha256=juNLCu2Yhc29xhHuWhhSH8M1BThDQ1Iz8g16lOTC6xk,13360
|
|
971
|
+
cirq/sim/state_vector_simulation_state.py,sha256=hQa6-dkEaJGX9OsYtJooEmmKHtL_trz8ujnPRbUfWNk,17643
|
|
960
972
|
cirq/sim/state_vector_simulation_state_test.py,sha256=eStINvpYZRajxJO85E-2ifQzSopQABYDG4SlSSvP4-I,9987
|
|
961
|
-
cirq/sim/state_vector_simulator.py,sha256=
|
|
962
|
-
cirq/sim/state_vector_simulator_test.py,sha256=
|
|
963
|
-
cirq/sim/state_vector_test.py,sha256=
|
|
973
|
+
cirq/sim/state_vector_simulator.py,sha256=bOfqIAD4ye3Ikub4vQFY91cUnlf-LH1PKiwgOuKICiw,8233
|
|
974
|
+
cirq/sim/state_vector_simulator_test.py,sha256=DU0_pTgDubV-paZZXgRrYnHia9f0cd9aes3xelZiTXE,7972
|
|
975
|
+
cirq/sim/state_vector_test.py,sha256=dqyQdGRLnaR8eWA8U0rFrGQCpDh8sMqTD4aw5ZrVAc4,17017
|
|
964
976
|
cirq/sim/clifford/__init__.py,sha256=NhHor0z4Zs4FiV3uF2br-z_oNF42Bx_u-voSYq37I68,908
|
|
965
|
-
cirq/sim/clifford/clifford_simulator.py,sha256=
|
|
966
|
-
cirq/sim/clifford/clifford_simulator_test.py,sha256=
|
|
967
|
-
cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=
|
|
977
|
+
cirq/sim/clifford/clifford_simulator.py,sha256=W67lSClYyKtz7k-jTeYoz3TyqJ83_8lIbSZNlE83txs,9924
|
|
978
|
+
cirq/sim/clifford/clifford_simulator_test.py,sha256=l5U1wTDq4NyzoO8efRJ-67dyiJg2hn8fWwMhqYrgfIQ,21771
|
|
979
|
+
cirq/sim/clifford/clifford_tableau_simulation_state.py,sha256=CbV6bB5BX4xpuGGHHh-lWu12KXvSpK1JRJ7YTsbRFXU,2200
|
|
968
980
|
cirq/sim/clifford/clifford_tableau_simulation_state_test.py,sha256=-sOy9m-OpLUJf-d-460DQRW0nC3XeMsSV1g-CM3LpDA,3218
|
|
969
|
-
cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=
|
|
981
|
+
cirq/sim/clifford/stabilizer_ch_form_simulation_state.py,sha256=inE5ePM-O6pGCnDFRbrxQ-B1KAixcSbuf6bGzypUpZc,3057
|
|
970
982
|
cirq/sim/clifford/stabilizer_ch_form_simulation_state_test.py,sha256=KNWsT5MbwULzARrtLtAYzJpwv09Ld8uy0cu1DU4pMx0,3958
|
|
971
|
-
cirq/sim/clifford/stabilizer_sampler.py,sha256=
|
|
983
|
+
cirq/sim/clifford/stabilizer_sampler.py,sha256=hLD8tnPLFmjSmUMdpQYxxnssCAG-SSTJWEbApF60bwE,2563
|
|
972
984
|
cirq/sim/clifford/stabilizer_sampler_test.py,sha256=kR-_IYcpAmO3ay-cVpfBXSN-G8JUssYdR8QGNcykBX4,1390
|
|
973
|
-
cirq/sim/clifford/stabilizer_simulation_state.py,sha256=
|
|
985
|
+
cirq/sim/clifford/stabilizer_simulation_state.py,sha256=10XdROSu46EHia8iFze323fhXd7SLZ0oMfBx_XEgTVY,6731
|
|
974
986
|
cirq/sim/clifford/stabilizer_simulation_state_test.py,sha256=I9pMnSWTInRW2BVj8n-qUQ9qxyocHj0Z5zNhqRKfqWI,4385
|
|
975
|
-
cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=
|
|
976
|
-
cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=
|
|
977
|
-
cirq/study/__init__.py,sha256=
|
|
978
|
-
cirq/study/flatten_expressions.py,sha256=
|
|
987
|
+
cirq/sim/clifford/stabilizer_state_ch_form.py,sha256=gklORzX82m_ZfS0NUJnNoHvqny-xUPR3SdiUYZ6MZk0,14140
|
|
988
|
+
cirq/sim/clifford/stabilizer_state_ch_form_test.py,sha256=54rsMKAjaMTDKEKozJfKgKZgIgNNmhc7nM2NA_Mmb5E,3181
|
|
989
|
+
cirq/study/__init__.py,sha256=DOSO7zCALprkHGIA2Y_Ys36EDxsfyTQUjXOS326vRTk,1697
|
|
990
|
+
cirq/study/flatten_expressions.py,sha256=a7fataE8pcPHv_FzwMhvZrjCoJYy8EFZJpip2E3M46s,15555
|
|
979
991
|
cirq/study/flatten_expressions_test.py,sha256=ONYcsFoL7Re7IsySwXgnnIlrWCuUu1ds2f90-2uNj1c,6202
|
|
980
|
-
cirq/study/resolver.py,sha256=
|
|
981
|
-
cirq/study/resolver_test.py,sha256=
|
|
982
|
-
cirq/study/result.py,sha256=
|
|
983
|
-
cirq/study/result_test.py,sha256=
|
|
984
|
-
cirq/study/sweepable.py,sha256=
|
|
985
|
-
cirq/study/sweepable_test.py,sha256=
|
|
986
|
-
cirq/study/sweeps.py,sha256=
|
|
987
|
-
cirq/study/sweeps_test.py,sha256=
|
|
992
|
+
cirq/study/resolver.py,sha256=lzhQymA2CyFb67CdzHPD296XpLj1GuIIRBEoM3efTx8,12259
|
|
993
|
+
cirq/study/resolver_test.py,sha256=XmebRPBMoTwEtBYb1pd3nyuY-vRyQsMOCgkE47wmroM,10722
|
|
994
|
+
cirq/study/result.py,sha256=85ydDHGMwju-KTy1DfPANwdLR2ek4YLL8gOxOHCUmjM,19241
|
|
995
|
+
cirq/study/result_test.py,sha256=VdzUNYcyIwFmoaaj9Ahi8jzepwH3TrN4JEY-JHECgBs,15805
|
|
996
|
+
cirq/study/sweepable.py,sha256=cuOxVARB34hC2ZY1hP8qSnLg9Gq9hoJlhiJN1V6yFNI,4335
|
|
997
|
+
cirq/study/sweepable_test.py,sha256=mSbCVpYp200Xdy1c2kXQg1aFmGTrmJy36nvMJDbXRmw,5717
|
|
998
|
+
cirq/study/sweeps.py,sha256=F_0va3hRt1Z6ZpCr27DuvBolV_JWt2kVy3L2QA2G-4A,22651
|
|
999
|
+
cirq/study/sweeps_test.py,sha256=9iuTAL_C_t6-Gl4BDaAm44bwKYSUywakiAt3a9IzjNc,18400
|
|
988
1000
|
cirq/testing/__init__.py,sha256=QNkOC_QdYkiNrIxYuNjPsB_iWmTW8zUrUwOSiz_8LPg,6171
|
|
989
|
-
cirq/testing/circuit_compare.py,sha256=
|
|
990
|
-
cirq/testing/circuit_compare_test.py,sha256=
|
|
1001
|
+
cirq/testing/circuit_compare.py,sha256=w0EFbG2JXN3XFWhROI1-fFlellj_B5Y7VwXrMlhcAX0,18793
|
|
1002
|
+
cirq/testing/circuit_compare_test.py,sha256=MqsI03YdleFzh-HJHh1u9ClqkUwIV8cWkzPCbNM8WjY,19934
|
|
991
1003
|
cirq/testing/consistent_act_on.py,sha256=hE_6fRPcmlvgRf2bHkB0XS4jnh_cR2PVS-g9YyNIijo,7670
|
|
992
|
-
cirq/testing/consistent_act_on_test.py,sha256=
|
|
993
|
-
cirq/testing/consistent_channels.py,sha256=
|
|
1004
|
+
cirq/testing/consistent_act_on_test.py,sha256=JO9BonPKXBQqYTqA-NbnpcG9hgozWmqY8aVWlMxwfYo,3580
|
|
1005
|
+
cirq/testing/consistent_channels.py,sha256=_-RNKWR7GQNjp5K42g0NyM11Kp4vtqMCPCEtYJd3oAo,1789
|
|
994
1006
|
cirq/testing/consistent_channels_test.py,sha256=Ne48OobiSUliFUXAEk4V1AdeX1SwC5jpay9vsa7-fAs,3586
|
|
995
|
-
cirq/testing/consistent_controlled_gate_op.py,sha256=
|
|
996
|
-
cirq/testing/consistent_controlled_gate_op_test.py,sha256
|
|
997
|
-
cirq/testing/consistent_decomposition.py,sha256=
|
|
1007
|
+
cirq/testing/consistent_controlled_gate_op.py,sha256=MSKekjOHbKubN6Wo7JD6ahP-ZJRLtPNSyGKE_0iXbms,2682
|
|
1008
|
+
cirq/testing/consistent_controlled_gate_op_test.py,sha256=XAQV03CV6qajZef2qabB9E9RPPNNj3R5F50I9d-OL6Q,3248
|
|
1009
|
+
cirq/testing/consistent_decomposition.py,sha256=56HMW5RnOJBH5uAI9dhx3og51DCyG9WgWz6i6yykCfI,3687
|
|
998
1010
|
cirq/testing/consistent_decomposition_test.py,sha256=IGQXnkHdR_CAVnpQ4sOP97FP1H6XaR5KMqynwbCxkmw,3871
|
|
999
1011
|
cirq/testing/consistent_pauli_expansion.py,sha256=jM6TnZGaVz9qtULcYoqfR9giFmweegjHaOu68k7zp_A,1616
|
|
1000
1012
|
cirq/testing/consistent_pauli_expansion_test.py,sha256=jSzDbCJMcZqJyaG3Q19W2344zPJCXpMSRUgserRGDGI,2466
|
|
1001
|
-
cirq/testing/consistent_phase_by.py,sha256=
|
|
1013
|
+
cirq/testing/consistent_phase_by.py,sha256=rIYf0ISZreoZ2NFyqjnVIwhaMBi2cUgwPBCmmGQvMSo,2129
|
|
1002
1014
|
cirq/testing/consistent_phase_by_test.py,sha256=0i5kKUXtYdlUOkwDEtiQlh1VBDhZQ4fwx9a-ul3P9TU,3316
|
|
1003
|
-
cirq/testing/consistent_protocols.py,sha256=
|
|
1004
|
-
cirq/testing/consistent_protocols_test.py,sha256=
|
|
1005
|
-
cirq/testing/consistent_qasm.py,sha256=
|
|
1006
|
-
cirq/testing/consistent_qasm_test.py,sha256=
|
|
1007
|
-
cirq/testing/consistent_resolve_parameters.py,sha256=
|
|
1015
|
+
cirq/testing/consistent_protocols.py,sha256=uWpaWs3Bi_7kjQApEGk1PLw0aHZ1uIplfxvhfAyeZQ0,7495
|
|
1016
|
+
cirq/testing/consistent_protocols_test.py,sha256=3RBpA9LeSyg92G0fkIjKMn2g4-Rybg4ajVgbe9VPSa4,9988
|
|
1017
|
+
cirq/testing/consistent_qasm.py,sha256=5I1RhkFjMdNFbMQf8aSGeTbvAc7TRVBqRIyZKuyINwc,5098
|
|
1018
|
+
cirq/testing/consistent_qasm_test.py,sha256=EjZFgjhKemO8B-0q3Nzx2H0lvsbT5HIIPMYNGzkNLbE,2955
|
|
1019
|
+
cirq/testing/consistent_resolve_parameters.py,sha256=EZ47cIqMayuhkcoNeTW7B_XfNzVzR0TOYZZ0G8HiIiY,2018
|
|
1008
1020
|
cirq/testing/consistent_specified_has_unitary.py,sha256=gFFhitFqLnEy3rYmtZVkZ_wq5eVt7A8SUT0kbl8g6n8,1093
|
|
1009
1021
|
cirq/testing/consistent_specified_has_unitary_test.py,sha256=CSNOVzVtBXwoyUBLppleg0nRC5KhKXVDwoGVxhnirzs,2597
|
|
1010
|
-
cirq/testing/consistent_unitary.py,sha256=
|
|
1011
|
-
cirq/testing/consistent_unitary_test.py,sha256=
|
|
1012
|
-
cirq/testing/deprecation.py,sha256=
|
|
1022
|
+
cirq/testing/consistent_unitary.py,sha256=TeHSxujLzpmbT2q3N4DSrVs8DyxVdK3u8uiWO62pb5U,3292
|
|
1023
|
+
cirq/testing/consistent_unitary_test.py,sha256=IjbBP_wCMY7QBmP6mX0IieFf6Ln0wgTUNuVCWbLxdAg,3308
|
|
1024
|
+
cirq/testing/deprecation.py,sha256=TPcqQ2oZRY_hKs_b4NvP0VOmkiAatKbpl1DVKe2zIbA,2185
|
|
1013
1025
|
cirq/testing/deprecation_test.py,sha256=LC---8mwEnEu4mi_95aJmv-z5lEB1wSFVqX_KVueOT0,2219
|
|
1014
|
-
cirq/testing/devices.py,sha256=
|
|
1026
|
+
cirq/testing/devices.py,sha256=TID2L1q0rp1J7lFNXSY5cKmUt9lJwTsdIk8AH78vdBk,3300
|
|
1015
1027
|
cirq/testing/devices_test.py,sha256=MeakoMeIRgcKkTTKqp2khfCaybRaCsZuaCHhTLgNy6U,2922
|
|
1016
|
-
cirq/testing/equals_tester.py,sha256=
|
|
1028
|
+
cirq/testing/equals_tester.py,sha256=jwYLO0PcmPoHpKeTSzrQNXHc0JNOdo1Ep-CVK9mKEAo,6640
|
|
1017
1029
|
cirq/testing/equals_tester_test.py,sha256=337JBdQcxsj_-qx8rrub0vycC8knx6JpVcFvFbWt2es,10595
|
|
1018
|
-
cirq/testing/equivalent_basis_map.py,sha256=
|
|
1030
|
+
cirq/testing/equivalent_basis_map.py,sha256=xG5o-7S9e1THUQeq0xxuCF6ZXWK2FbJ89E96ZJJkMpw,2673
|
|
1019
1031
|
cirq/testing/equivalent_basis_map_test.py,sha256=Gg8CzHzkbKUAxZdLRlsP2oS-rstUXP6T0m6X_v8d1IU,1523
|
|
1020
1032
|
cirq/testing/equivalent_repr_eval.py,sha256=o7juCX8DNaVjaodkQrA8xEsFurmZ-P-trtJ3M5_lhgI,3357
|
|
1021
1033
|
cirq/testing/equivalent_repr_eval_test.py,sha256=6k2EhVYx2vxdJT2JEH0Kv390p3G0dJ0TEp1tdpFS_v4,3024
|
|
1022
1034
|
cirq/testing/gate_features.py,sha256=7hFdlkFCDDiQ6gJaEQ6ICAQgMOu-bgGvFUz-7rVCRx0,1403
|
|
1023
1035
|
cirq/testing/gate_features_test.py,sha256=4cMncHo6SvyMvSFY1m9eQOwwKMUuADlWaavgbOMC8ZM,2390
|
|
1024
|
-
cirq/testing/json.py,sha256=
|
|
1036
|
+
cirq/testing/json.py,sha256=uCLcZzoJmppmOhxiJpyDtOAaQQlQWa9jppkfgknJw-0,6718
|
|
1025
1037
|
cirq/testing/json_test.py,sha256=wKpzoEHPariqLdZaIxgb87Tx1gAIbIXoXWUyR8TykGw,1152
|
|
1026
|
-
cirq/testing/lin_alg_utils.py,sha256=
|
|
1038
|
+
cirq/testing/lin_alg_utils.py,sha256=2sQHttNkmY8hIs8uXa09JOaLGggLaYX2u3zhjFw1R2k,6323
|
|
1027
1039
|
cirq/testing/lin_alg_utils_test.py,sha256=HiCNYby5ZXVcXJLb8CNatExtuAacrphgUERsqKswF6U,4245
|
|
1028
|
-
cirq/testing/logs.py,sha256=
|
|
1040
|
+
cirq/testing/logs.py,sha256=Fjz0TO1qkEofbT2TwvXApMB-hptyZCXLEOh7TMFG0WY,4043
|
|
1029
1041
|
cirq/testing/logs_test.py,sha256=spuIb0EOJxW-UNEuBds20ouIE1ROdqL9TbyTlqn1p6o,5811
|
|
1030
1042
|
cirq/testing/no_identifier_qubit.py,sha256=jeevOm60Jm8jkdxTJaR9vFwYEBFamCQKL_F1UuQizg8,1225
|
|
1031
1043
|
cirq/testing/no_identifier_qubit_test.py,sha256=K4fCbM_o9Hw1d7KggAttWKr2T_Ty9T7JXnjaQMpfgSg,1001
|
|
1032
|
-
cirq/testing/op_tree.py,sha256=
|
|
1044
|
+
cirq/testing/op_tree.py,sha256=880yYBhWi38XltIT3mmcOz8UyBO8d843eaBdKJgUT64,998
|
|
1033
1045
|
cirq/testing/op_tree_test.py,sha256=CzE_y9B8m8nV0nb34f51-hESgZLoEXlZ3JDjPWvkMjw,1118
|
|
1034
|
-
cirq/testing/order_tester.py,sha256=
|
|
1046
|
+
cirq/testing/order_tester.py,sha256=fXm9XxGEEK9GgQ5vHv35XJmd7eoneeWpzSHyobfUbV4,6742
|
|
1035
1047
|
cirq/testing/order_tester_test.py,sha256=1KevbjlXrW1e1vrU2Lj4---jlUn9n80uHtJgRM1G_lU,5195
|
|
1036
|
-
cirq/testing/pytest_utils.py,sha256=
|
|
1048
|
+
cirq/testing/pytest_utils.py,sha256=G3C-LKpJWLtLm9q3q06Ts-vf4lYiKDQ5KCLAtq8UQFg,1983
|
|
1037
1049
|
cirq/testing/pytest_utils_test.py,sha256=NThV-uSoa9ob3YY_oUBD6j8dxlR52dOUAuiegvmaiYM,1366
|
|
1038
|
-
cirq/testing/random_circuit.py,sha256=
|
|
1039
|
-
cirq/testing/random_circuit_test.py,sha256=
|
|
1040
|
-
cirq/testing/repr_pretty_tester.py,sha256=
|
|
1050
|
+
cirq/testing/random_circuit.py,sha256=6S9-wmgoJcjiqNL1QImOZzFhGrklMQA9Zv5yRfnXtew,6161
|
|
1051
|
+
cirq/testing/random_circuit_test.py,sha256=ln7AdKNkX0MU8OKGqmK0FVaa_Jtuf3zcBmypTVSPv3k,7106
|
|
1052
|
+
cirq/testing/repr_pretty_tester.py,sha256=rlSyf2EzQVsypDCYUmUQbz57v13LXQFUnAkrLMkvwy4,2958
|
|
1041
1053
|
cirq/testing/repr_pretty_tester_test.py,sha256=mqEH4H6kL6sFd0r6M99LsMBLc6nS_m8dGFZQl1zei5w,2286
|
|
1042
1054
|
cirq/testing/routing_devices.py,sha256=7D1fxGFPdabjMH4MRix-S0nwS8fxRC-dxNT6Xb6Csq8,2565
|
|
1043
1055
|
cirq/testing/routing_devices_test.py,sha256=65cXCM86_sf5BLgswaYrrefsqyFXluibdDzD6JL6wOw,5684
|
|
@@ -1045,7 +1057,7 @@ cirq/testing/sample_circuits.py,sha256=xZuhNN_AbCBmwTyP0K1lKcu0LQR38y479nLknX25r
|
|
|
1045
1057
|
cirq/testing/sample_circuits_test.py,sha256=S8__hXfSPjL7FLx1ei6en3n9ymQbehYt7FKi3llmmM0,920
|
|
1046
1058
|
cirq/testing/sample_gates.py,sha256=N9oKdKTthk-KxToof4cH81is2uZvIwUmHTAKwFdMqoY,3317
|
|
1047
1059
|
cirq/testing/sample_gates_test.py,sha256=rMMI1o36KDyGFtLh_XiQvIzhsyePktsDw88eRauRqWc,2430
|
|
1048
|
-
cirq/testing/_compat_test_data/__init__.py,sha256=
|
|
1060
|
+
cirq/testing/_compat_test_data/__init__.py,sha256=6q3meL3mXpvI_H63TQ1RGTn8L6wb3oRpdPoHyBRo3k8,3012
|
|
1049
1061
|
cirq/testing/_compat_test_data/module_a/__init__.py,sha256=Ic68-4DyonoJbDUUXqg4Z5e1AbPjl_yIwKLp1EsrXp0,434
|
|
1050
1062
|
cirq/testing/_compat_test_data/module_a/types.py,sha256=XFNOEP88FMOOCgF6jBumwsIBwIr-6KyK7ciaVzMN7T8,83
|
|
1051
1063
|
cirq/testing/_compat_test_data/module_a/dupe/__init__.py,sha256=1h4X6AYURm5r2WFH26BltHzn0RzAv94Lf80DlKaG6xc,78
|
|
@@ -1064,178 +1076,185 @@ cirq/testing/test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
1064
1076
|
cirq/testing/test_data/test_module_missing_json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1065
1077
|
cirq/testing/test_data/test_module_missing_testspec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1066
1078
|
cirq/testing/test_data/test_module_missing_testspec/json_test_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1067
|
-
cirq/transformers/__init__.py,sha256=
|
|
1079
|
+
cirq/transformers/__init__.py,sha256=6noA2FZMgzwYorHZuyi1aMB8mQzohE2FIdNxbNxMLsM,7343
|
|
1080
|
+
cirq/transformers/_connected_component.py,sha256=4MEXxL4ZEMQ4Iq-z_SpG9VfpAgBpO3S1y95UeqB6Lfw,8099
|
|
1081
|
+
cirq/transformers/_connected_component_test.py,sha256=BNpoDshQWHw9uvHQpPkkM6yAfQe9s0DR5D25jz8kiUM,6204
|
|
1068
1082
|
cirq/transformers/align.py,sha256=95iI2sIil7V02hRPaXB-wG_eiMb5yF6ffUZU3fHmPP4,3341
|
|
1069
|
-
cirq/transformers/align_test.py,sha256=
|
|
1083
|
+
cirq/transformers/align_test.py,sha256=blaroKF825RMDCdt403u98OoGck1AXSRCyw1KuWnqB0,7791
|
|
1070
1084
|
cirq/transformers/drop_empty_moments.py,sha256=uZJG9FpUNyA1Mi0xLDuVuhj_siZhPZ1_s08Ry9xQ-1M,1535
|
|
1071
1085
|
cirq/transformers/drop_empty_moments_test.py,sha256=h6Pji0z0o9KOB7fnSHseWpIAhzvxWurF_flg9XWm_YI,1959
|
|
1072
1086
|
cirq/transformers/drop_negligible_operations.py,sha256=eP2dP_n0BYlr8aZ1wnD8YWsqCtwN0l0O6p45RbXEpfM,2097
|
|
1073
|
-
cirq/transformers/drop_negligible_operations_test.py,sha256=
|
|
1074
|
-
cirq/transformers/dynamical_decoupling.py,sha256=
|
|
1075
|
-
cirq/transformers/dynamical_decoupling_test.py,sha256=
|
|
1076
|
-
cirq/transformers/eject_phased_paulis.py,sha256=
|
|
1077
|
-
cirq/transformers/eject_phased_paulis_test.py,sha256=
|
|
1078
|
-
cirq/transformers/eject_z.py,sha256=
|
|
1079
|
-
cirq/transformers/eject_z_test.py,sha256=
|
|
1080
|
-
cirq/transformers/expand_composite.py,sha256=
|
|
1081
|
-
cirq/transformers/expand_composite_test.py,sha256=
|
|
1087
|
+
cirq/transformers/drop_negligible_operations_test.py,sha256=LrZDDITL5dskTywIahZqZBWnIXAJqNAjOgd4EYfrYTA,3908
|
|
1088
|
+
cirq/transformers/dynamical_decoupling.py,sha256=H0sOVKce3-NV-B8onp_S-mWU50EFJ9GJxJqKpQrYoCU,15113
|
|
1089
|
+
cirq/transformers/dynamical_decoupling_test.py,sha256=ChZljNEWwmQTvqaXjvSj3j8YJ1VZZnNm0OoYr-2Eqo8,43038
|
|
1090
|
+
cirq/transformers/eject_phased_paulis.py,sha256=LEpnrrUfnSJSnq4ToiOGIhtC721MRXceIWiktYeZ8Nc,14099
|
|
1091
|
+
cirq/transformers/eject_phased_paulis_test.py,sha256=f-9uuiWxHrnH4QMIr6VaWkplOD_bjT8v9UrnhQe6GcE,14279
|
|
1092
|
+
cirq/transformers/eject_z.py,sha256=GsQ4Yz1Ibs3m86ElaVE9wJt131yCrT1Kg9VZ9plxhFo,5887
|
|
1093
|
+
cirq/transformers/eject_z_test.py,sha256=jrWu_7t6PKj3v91NZys1qd0C1DF-87cCzb2Cd2hJVZQ,13314
|
|
1094
|
+
cirq/transformers/expand_composite.py,sha256=apOyL8Vw0IWQoaT5CGW_i8TKm0BH1r_P_M4BMcUjo40,2445
|
|
1095
|
+
cirq/transformers/expand_composite_test.py,sha256=YQyNJcaCDYuc7qaRzSYGfydrYd4QtX1BXGIc-rx27K8,8782
|
|
1082
1096
|
cirq/transformers/insertion_sort.py,sha256=LtuLQmoA1uWyraPqQ7_QZdkf_vAk75V5HIHvnk4GIZo,2613
|
|
1083
1097
|
cirq/transformers/insertion_sort_test.py,sha256=E4unAfvPrTE73zI7OnZ8vWq5BUXYpPYjUw2zuq1a_vw,1231
|
|
1084
|
-
cirq/transformers/measurement_transformers.py,sha256=
|
|
1085
|
-
cirq/transformers/measurement_transformers_test.py,sha256=
|
|
1086
|
-
cirq/transformers/merge_k_qubit_gates.py,sha256=
|
|
1087
|
-
cirq/transformers/merge_k_qubit_gates_test.py,sha256=
|
|
1088
|
-
cirq/transformers/merge_single_qubit_gates.py,sha256=
|
|
1089
|
-
cirq/transformers/merge_single_qubit_gates_test.py,sha256=
|
|
1098
|
+
cirq/transformers/measurement_transformers.py,sha256=Y9vfggZhrLzJMdqTKvskW8mRzSs_Aqvsuyez_bt4Afo,19523
|
|
1099
|
+
cirq/transformers/measurement_transformers_test.py,sha256=3mqrZsR7xStCEobkxvOP-J6giIyNygk3is94vbOlKfo,29405
|
|
1100
|
+
cirq/transformers/merge_k_qubit_gates.py,sha256=wdx5kJW7Y6RDTdLzN3ls1C5ciNE69WsP-ENezaVJOb4,4407
|
|
1101
|
+
cirq/transformers/merge_k_qubit_gates_test.py,sha256=hyjfM0MY8Yczs0oC886fvBi34Sk4KMkq38IAg_7EzJk,14024
|
|
1102
|
+
cirq/transformers/merge_single_qubit_gates.py,sha256=xEEaDgKTeVxEj3hD2lG9Jq4OjUacP-cj49ODm-avsXk,13825
|
|
1103
|
+
cirq/transformers/merge_single_qubit_gates_test.py,sha256=3d6RoBtoY8itlAWFi7aimlsYtMjVa68YwG57wj3VHRg,18214
|
|
1090
1104
|
cirq/transformers/noise_adding.py,sha256=UePj56mCvhg6Vp5DJfQcjjaIo_UzcrnOCg2eN6YvkQU,4468
|
|
1091
|
-
cirq/transformers/noise_adding_test.py,sha256=
|
|
1092
|
-
cirq/transformers/optimize_for_target_gateset.py,sha256=
|
|
1093
|
-
cirq/transformers/optimize_for_target_gateset_test.py,sha256=
|
|
1105
|
+
cirq/transformers/noise_adding_test.py,sha256=47fn8TSBE31J1jCSvZUMwK8gE7wnPgBzgXe19-yq8kw,2189
|
|
1106
|
+
cirq/transformers/optimize_for_target_gateset.py,sha256=pkL8zEchkfl9zS6xsK6laVm-GsDoxs-XVjyYSUbKLVc,7243
|
|
1107
|
+
cirq/transformers/optimize_for_target_gateset_test.py,sha256=oUrMaX3fyieUblN0yO8bGFuEYRI3L5mQ5kE9POEhqbk,19727
|
|
1094
1108
|
cirq/transformers/qubit_management_transformers.py,sha256=uLSwYrJ62REI8WCslClRiKQdNE7mLD48L5bhINHRY34,9431
|
|
1095
|
-
cirq/transformers/qubit_management_transformers_test.py,sha256=
|
|
1109
|
+
cirq/transformers/qubit_management_transformers_test.py,sha256=mFMKf5I9OHiYAlghWtkbWKOVfaoSrMvRkIy0ki7EqyA,14201
|
|
1096
1110
|
cirq/transformers/randomized_measurements.py,sha256=pbftgY2ctVMOoJHPBq96ruW0hkcNustLo6_d_eQvyPc,5725
|
|
1097
1111
|
cirq/transformers/randomized_measurements_test.py,sha256=ZfD8QW9Iy7NfidA1Iez9DUuT9HuzyEzFpHF1JNffE-I,2817
|
|
1098
|
-
cirq/transformers/stratify.py,sha256=
|
|
1112
|
+
cirq/transformers/stratify.py,sha256=ohaPb9RWY-7ZOHJNY21ufS9K4AD2cxoITxoVSrLvxrA,10480
|
|
1099
1113
|
cirq/transformers/stratify_test.py,sha256=X4h2KMc82N3G6d_qLIP0HTsrDWerWgEXTH_WBPN8nd0,15257
|
|
1100
|
-
cirq/transformers/symbolize.py,sha256=
|
|
1114
|
+
cirq/transformers/symbolize.py,sha256=o60IpySlJwkq71wntIT4zq1oatwvnABQtSh3si8jnZU,4019
|
|
1101
1115
|
cirq/transformers/symbolize_test.py,sha256=IF92t0r_mhC48tmCCVJqykXD6ms166n6XfbcSRTrJbY,2243
|
|
1102
1116
|
cirq/transformers/synchronize_terminal_measurements.py,sha256=lORajz_Qd1RC3baNdrqo5xJcqEWgwPHUfY0VaHk6lxI,3825
|
|
1103
1117
|
cirq/transformers/synchronize_terminal_measurements_test.py,sha256=sOmAYP3jXSUbUSJO5KKgkLPDWCWxPLUcRTSZ48HaDrA,7858
|
|
1104
|
-
cirq/transformers/tag_transformers.py,sha256=
|
|
1118
|
+
cirq/transformers/tag_transformers.py,sha256=V-ox9ot6bI6J2NAW7YVhrl4QFT2pxYAA2etam1I6O3A,3537
|
|
1105
1119
|
cirq/transformers/tag_transformers_test.py,sha256=PqIcYFgiLU7VgC1EHkFYhxNCf0D9zKDCZ_Gwtnykkt4,3439
|
|
1106
|
-
cirq/transformers/transformer_api.py,sha256=
|
|
1120
|
+
cirq/transformers/transformer_api.py,sha256=0XxIk8vg7AlCG8Oyeqpehh9-dGSG8CqxVRR1Sg_EleI,16821
|
|
1107
1121
|
cirq/transformers/transformer_api_test.py,sha256=vz_zTDPJIfjfqORGKCxeAs3U1F3X2dFNbe50o79uY-4,13273
|
|
1108
|
-
cirq/transformers/transformer_primitives.py,sha256=
|
|
1109
|
-
cirq/transformers/transformer_primitives_test.py,sha256=
|
|
1122
|
+
cirq/transformers/transformer_primitives.py,sha256=AE9ZdwwPIAiwV7P64-o4otvCNov7KQ2pSQqSte86lUo,40859
|
|
1123
|
+
cirq/transformers/transformer_primitives_test.py,sha256=EfN8jgye-ahE5-XnKdbsC17BLbvSmEJd0hQvCm7VqmA,51654
|
|
1110
1124
|
cirq/transformers/analytical_decompositions/__init__.py,sha256=Rw7X6hPh14k-cDTcdWI7fQu8v5oU9d1vHuwulUBv-8o,3694
|
|
1111
|
-
cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=
|
|
1112
|
-
cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=
|
|
1113
|
-
cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=
|
|
1114
|
-
cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=
|
|
1115
|
-
cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=
|
|
1116
|
-
cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=
|
|
1125
|
+
cirq/transformers/analytical_decompositions/clifford_decomposition.py,sha256=sX0FBuWTptCs5HykNMJy64nuuqXmrXkPHxSFnhShH2I,6808
|
|
1126
|
+
cirq/transformers/analytical_decompositions/clifford_decomposition_test.py,sha256=DPVqB0rlDsA0BZJOin5QTkVSEfNTVNuf8seGCp49ttg,7178
|
|
1127
|
+
cirq/transformers/analytical_decompositions/controlled_gate_decomposition.py,sha256=TF5New-qCyj1WmXqeGy4afVoSp16GpaY1WvApsy_DOg,8765
|
|
1128
|
+
cirq/transformers/analytical_decompositions/controlled_gate_decomposition_test.py,sha256=fvThApgVxTerVPURzLMPDzaRGIaUYvocFUGXE5o2ls8,5134
|
|
1129
|
+
cirq/transformers/analytical_decompositions/cphase_to_fsim.py,sha256=0rjLQL5tfL-1JcU0sbYgaEUPEskvGznMpEMO7T9MIXU,9154
|
|
1130
|
+
cirq/transformers/analytical_decompositions/cphase_to_fsim_test.py,sha256=Ma9jpBJ-TBtWRiGm_XFeidi3iP6Z-5oEhSt8m-0qcuI,5701
|
|
1117
1131
|
cirq/transformers/analytical_decompositions/pauli_string_decomposition.py,sha256=7GKdVnN5jvpjABudB0zE1kUn0BPZmuvRZcM2yLMUoWs,4540
|
|
1118
1132
|
cirq/transformers/analytical_decompositions/pauli_string_decomposition_test.py,sha256=yWHkXXErOxLmnp5t65WUsY9e9iN6L950MZRw5OY3QW0,2172
|
|
1119
|
-
cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=
|
|
1120
|
-
cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=
|
|
1133
|
+
cirq/transformers/analytical_decompositions/quantum_shannon_decomposition.py,sha256=rlsU31Qg3rEUD1eJwaCE1Deb8JNYJGCWmWleCDFZTKw,15498
|
|
1134
|
+
cirq/transformers/analytical_decompositions/quantum_shannon_decomposition_test.py,sha256=Unbrv-bIFKSneH_Lr40iZvdxj8MSBeo_6aQns7KbThw,9030
|
|
1121
1135
|
cirq/transformers/analytical_decompositions/single_qubit_decompositions.py,sha256=6kaQfcXY7je42o-pVprSwgPXCDJXraDXQ9mHyR_BaBk,8428
|
|
1122
|
-
cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=
|
|
1136
|
+
cirq/transformers/analytical_decompositions/single_qubit_decompositions_test.py,sha256=n3BeROUBz7EetUnpvkrDmUcep1LJJFQBGgI3wJlOv3o,12662
|
|
1123
1137
|
cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry.py,sha256=CRZylmI8nA_aq6vXj0WmMce8PIe8OFCjq4_bqYfkenk,2464
|
|
1124
|
-
cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=
|
|
1125
|
-
cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=
|
|
1138
|
+
cirq/transformers/analytical_decompositions/single_to_two_qubit_isometry_test.py,sha256=C6kHrWxsR_u9BhIhMBJmLBSH7o4eH8Q-y5r5k5vWM6w,2562
|
|
1139
|
+
cirq/transformers/analytical_decompositions/three_qubit_decomposition.py,sha256=8K6Wm076H8M4acD5l75cf6X28k9QcByr4yqR6NpPhx4,9261
|
|
1126
1140
|
cirq/transformers/analytical_decompositions/three_qubit_decomposition_test.py,sha256=a21HU4BE82AG2UJU4hUVqymUU7Lw4CLw4-NChX4OpLI,6808
|
|
1127
1141
|
cirq/transformers/analytical_decompositions/two_qubit_state_preparation.py,sha256=2bIpZOHBHxH2mdbJfDpo6nQgpitOI0ZmoH_5l_nA1nU,6167
|
|
1128
|
-
cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=
|
|
1129
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=
|
|
1130
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=
|
|
1131
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=
|
|
1142
|
+
cirq/transformers/analytical_decompositions/two_qubit_state_preparation_test.py,sha256=ZzIekSfnTtKMuZ-2oHgKrBEhqLVZnBX3CqBjgXVwVyk,4620
|
|
1143
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_cz.py,sha256=0Fkc7MJwWbP7USja44OClhwllKTw9wkHNtlsMCMkXgM,11761
|
|
1144
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_cz_test.py,sha256=hwTUAcSEegRfe1U3P-ETDjgQvbyz2a5nGOGT7t81adE,11098
|
|
1145
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_fsim.py,sha256=LkUSvzRvrNYFJEaGZBdtwFB3UYMR2QJykEwF4Z-SjmY,9683
|
|
1132
1146
|
cirq/transformers/analytical_decompositions/two_qubit_to_fsim_test.py,sha256=bX8ap8VskN-gKxn3F4A8_vhgWO0AErOpP1QVVEtBjmY,7073
|
|
1133
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=
|
|
1134
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=
|
|
1135
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=
|
|
1136
|
-
cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=
|
|
1137
|
-
cirq/transformers/gauge_compiling/__init__.py,sha256=
|
|
1147
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_ms.py,sha256=aQnlBtuei8mvDAukt5PanLQsVOL5I1qjbp4MYkjghog,3778
|
|
1148
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_ms_test.py,sha256=z1fE3ESWLKDWh-Tj_L52gNqSXTbmKfS4fhQYwXKLGug,4220
|
|
1149
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap.py,sha256=9PJSToq3Yz6mLAXmCqFn2EsdURCNz-lGpM1E5RPT87E,25375
|
|
1150
|
+
cirq/transformers/analytical_decompositions/two_qubit_to_sqrt_iswap_test.py,sha256=WkP5lHXjio-UZpNYTm8Dp_kJbDHS5OvhjLDerGC7wZ8,21127
|
|
1151
|
+
cirq/transformers/gauge_compiling/__init__.py,sha256=AoDneer0nUDmvlK4SYaWrcSAOZyJr_EhgSe7E2WN8hg,1949
|
|
1138
1152
|
cirq/transformers/gauge_compiling/cphase_gauge.py,sha256=EoM_TKZt8mJwYFQAfv3rviitXWvGT8I5N36droPWPCE,5576
|
|
1139
1153
|
cirq/transformers/gauge_compiling/cphase_gauge_test.py,sha256=dPV2vqsyC-eUi_jmwEk6dhOKHnQLJ_A01_Emxw2j8QQ,1427
|
|
1140
1154
|
cirq/transformers/gauge_compiling/cz_gauge.py,sha256=dtcC49-qIvH_hRaQpQLBvGu-3323r4cwWpFImBnDebE,2586
|
|
1141
1155
|
cirq/transformers/gauge_compiling/cz_gauge_test.py,sha256=MQURH_tIIPxHu7CRWWEdDksHYr9GzGZH7RqnjZdc994,889
|
|
1142
|
-
cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=
|
|
1143
|
-
cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=
|
|
1144
|
-
cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=
|
|
1156
|
+
cirq/transformers/gauge_compiling/gauge_compiling.py,sha256=4OTJ-PHSkHzbT8aNKMt9lfxWchopo9m40CoE5fDBTA4,18857
|
|
1157
|
+
cirq/transformers/gauge_compiling/gauge_compiling_test.py,sha256=EAT_VSVHCTf_vZLUxMJn_OED4eIAu_1Kx5Pe1HqRYzM,5385
|
|
1158
|
+
cirq/transformers/gauge_compiling/gauge_compiling_test_utils.py,sha256=YvtupZt-KWHpIJaNyYOwHw-DJb0H1E5sguUcjjuiL9U,5084
|
|
1145
1159
|
cirq/transformers/gauge_compiling/gauge_compiling_test_utils_test.py,sha256=qPcs2BWU-1gOEz0NCLixBLO9I1PVIOLShB7wkprcQZY,1896
|
|
1160
|
+
cirq/transformers/gauge_compiling/idle_moments_gauge.py,sha256=-VK91rDVKkla1uf7T6AzA1G9Y9Kwjrklh5PrEQdAxrQ,8518
|
|
1161
|
+
cirq/transformers/gauge_compiling/idle_moments_gauge_test.py,sha256=OSb0840o0M8Qpde_Dp3-sRCGrJCO4rBgArDLnnT8D-g,6903
|
|
1146
1162
|
cirq/transformers/gauge_compiling/iswap_gauge.py,sha256=CfW3hgO6AgUB7D6tC8J2XZQw2Ge77LT44BygCzMW4Xc,3536
|
|
1147
1163
|
cirq/transformers/gauge_compiling/iswap_gauge_test.py,sha256=V6g-jyGujMKEzGtOi_OhMxX5oTznGXJi9tCNKI9Qrb8,901
|
|
1164
|
+
cirq/transformers/gauge_compiling/multi_moment_cphase_gauge.py,sha256=2KQbxm4r6eKNNRUifkoi-ODdeDICrwbbKepLX3Ht8M4,10384
|
|
1165
|
+
cirq/transformers/gauge_compiling/multi_moment_cphase_gauge_test.py,sha256=tLzTtbRF4sbupIjySBbkLPx-cVrJv-CIr9ZBjXDeiIA,11657
|
|
1166
|
+
cirq/transformers/gauge_compiling/multi_moment_gauge_compiling.py,sha256=iporhK2jhu6XtaQLPvoma0WQoFBrDc2l46BlsoU5y54,5634
|
|
1148
1167
|
cirq/transformers/gauge_compiling/spin_inversion_gauge.py,sha256=yhrF4pa1u0-iwYay47_2bZ4xfU323TOdlyazl0U9v4c,1122
|
|
1149
1168
|
cirq/transformers/gauge_compiling/spin_inversion_gauge_test.py,sha256=FJO8BoP4uA0SqSLXS6bqn3T69SwcBHCQHBwWAkI8YTk,1328
|
|
1150
|
-
cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=
|
|
1169
|
+
cirq/transformers/gauge_compiling/sqrt_cz_gauge.py,sha256=jHIvV5aKSoh36au8HGKZ3L4U71aI-fZnFXQVZqxlL4M,2584
|
|
1151
1170
|
cirq/transformers/gauge_compiling/sqrt_cz_gauge_test.py,sha256=WXZjPf3SAxZHwWbORnsNPeBu1jHeqBqRkrTPCZiNnAY,1033
|
|
1152
1171
|
cirq/transformers/gauge_compiling/sqrt_iswap_gauge.py,sha256=kOFHb5GydzeMNwSvDLFuEjc71jHC1HBWxaWinPlrArs,3163
|
|
1153
1172
|
cirq/transformers/gauge_compiling/sqrt_iswap_gauge_test.py,sha256=2KJ14je7QNISHQE8GAK0Oy0HisDFiGEYHxCGc0LhRRg,918
|
|
1154
1173
|
cirq/transformers/heuristic_decompositions/__init__.py,sha256=_LEidXfFkmJicQapJVR1etyH1fLJ3ZwtBgq2M2_ECZI,926
|
|
1155
|
-
cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=
|
|
1156
|
-
cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=
|
|
1157
|
-
cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=
|
|
1174
|
+
cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils.py,sha256=tGIJmKI3EYNsbnkFrOh-CSvWLrdu2nlYfYDNDMbSeHA,10806
|
|
1175
|
+
cirq/transformers/heuristic_decompositions/gate_tabulation_math_utils_test.py,sha256=F0aPEAQguxxArg_-gc7nRxDClFBCo1VKCUcwjE7uqvM,1627
|
|
1176
|
+
cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation.py,sha256=ufnd9EapHQ-AdV6mkz8rCuNM445Kmszjz4U57f0FmWs,20128
|
|
1158
1177
|
cirq/transformers/heuristic_decompositions/two_qubit_gate_tabulation_test.py,sha256=bvgDe-3KhwTLSokL7X93IZgneGNLrgzSgNulMhsoARs,3922
|
|
1159
1178
|
cirq/transformers/routing/__init__.py,sha256=pgovVolGz4pePMfa5siwZ7zWJcU4Jqb3NxIqpRsGSUw,1178
|
|
1160
1179
|
cirq/transformers/routing/initial_mapper.py,sha256=N3_n8zhPP0TFQkPr46j-1zZw1R9RcMCUZF0-NfZWOfo,3050
|
|
1161
1180
|
cirq/transformers/routing/initial_mapper_test.py,sha256=N3RrubB1suUbD8SuYoZtMASAQPyb5a4NJqJmhJZpV04,1344
|
|
1162
1181
|
cirq/transformers/routing/line_initial_mapper.py,sha256=Z38g6BUBMGyRRH0l9nh3m8XtcgYqxarbRGWMhAOiB8I,9431
|
|
1163
1182
|
cirq/transformers/routing/line_initial_mapper_test.py,sha256=Qu51LOZjv0KQHcwtEax-4dF78g9g1pl0COpF3xFHE6w,7568
|
|
1164
|
-
cirq/transformers/routing/mapping_manager.py,sha256=
|
|
1183
|
+
cirq/transformers/routing/mapping_manager.py,sha256=l3RsFVw-y-VFkFI_ESUL-ckh8mRlymn69Z9wS6QI1FA,8648
|
|
1165
1184
|
cirq/transformers/routing/mapping_manager_test.py,sha256=dSqouwT77Pa9cj3osKCv478pOrJzB-QP40sozNz-j3k,5957
|
|
1166
|
-
cirq/transformers/routing/route_circuit_cqc.py,sha256=
|
|
1185
|
+
cirq/transformers/routing/route_circuit_cqc.py,sha256=YS9jnOu4ss8DCSr1u74HSqBdPQkLmw8y6BBc7jnvYF4,21987
|
|
1167
1186
|
cirq/transformers/routing/route_circuit_cqc_test.py,sha256=Neg9A29Re-I4A4Tu0VNLKkl1_225M7wFHRx-TpLLzco,10140
|
|
1168
1187
|
cirq/transformers/routing/visualize_routed_circuit.py,sha256=VgHN3zQ2cfEd69i5i85Tt4_HHpdv1yRyJbQ9I67-00Y,2907
|
|
1169
1188
|
cirq/transformers/routing/visualize_routed_circuit_test.py,sha256=Cv00tV0C23M-3JxOY-hvFeLPASc6hR-XkYxxzJ3nhwQ,4193
|
|
1170
1189
|
cirq/transformers/target_gatesets/__init__.py,sha256=q7v9KTCXZ8OyWUy89xBM4hp5b-M2hbXMyS3SYFJ0wGQ,1143
|
|
1171
|
-
cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=
|
|
1190
|
+
cirq/transformers/target_gatesets/compilation_target_gateset.py,sha256=Aw3em7OgEWtMi64UqYi4NMkWjlvc61eM4IghwU5frf0,14273
|
|
1172
1191
|
cirq/transformers/target_gatesets/compilation_target_gateset_test.py,sha256=hhswvGSsR5NhRzER96VHjq-P5fuv1VIrDnjAT-c0LBE,9606
|
|
1173
|
-
cirq/transformers/target_gatesets/cz_gateset.py,sha256=
|
|
1174
|
-
cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=
|
|
1175
|
-
cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=
|
|
1192
|
+
cirq/transformers/target_gatesets/cz_gateset.py,sha256=K-1oasv_8D73a05NfuHsyyRHjhttyGOTggUm1aCCohk,5060
|
|
1193
|
+
cirq/transformers/target_gatesets/cz_gateset_test.py,sha256=xgTgcq8d0fwU8FvGf9xMlO_JbjX7BsUNyRypAfLA-Qk,11441
|
|
1194
|
+
cirq/transformers/target_gatesets/sqrt_iswap_gateset.py,sha256=LcWGXA3PX_hDvNWLigX1f7VcwKKfAq0L1XzkUZRCl88,6300
|
|
1176
1195
|
cirq/transformers/target_gatesets/sqrt_iswap_gateset_test.py,sha256=lH7xYm_qkgi_MegqvvxNMQvWnAReUskCXaKpCsIQppY,14580
|
|
1177
1196
|
cirq/value/__init__.py,sha256=0OQimJUEjmT8HGPqRWYhWTEBuA9sMAD3IfwVTVbwrVc,2947
|
|
1178
|
-
cirq/value/abc_alt.py,sha256
|
|
1197
|
+
cirq/value/abc_alt.py,sha256=-HF-lup7xXMKGV-BxTi9Tpeyjy4RsERJFKMl18O_-7U,6053
|
|
1179
1198
|
cirq/value/abc_alt_test.py,sha256=3ryHzM0B2uxFw3ZP_BIj0FWg4gXKNPLfeQOJMPVL1FQ,9033
|
|
1180
1199
|
cirq/value/angle.py,sha256=6YP1RWv8IrruvgxvqlCYxcabYRE8bXrbV_Jx66Jfuvs,3285
|
|
1181
1200
|
cirq/value/angle_test.py,sha256=jKLd1hkY-Tb22krD-WkJjfqFy9EJIIZCAL57__FgW_c,3608
|
|
1182
|
-
cirq/value/classical_data.py,sha256=
|
|
1201
|
+
cirq/value/classical_data.py,sha256=u4613WYDMjfDylFYAedrBKo3iPtJs_Jey0FssAu9iiw,11514
|
|
1183
1202
|
cirq/value/classical_data_test.py,sha256=q1QMT17E-X9kcaPw1oQqx3Hwnq3hyht24HaK3z7Udpo,5332
|
|
1184
|
-
cirq/value/condition.py,sha256=
|
|
1203
|
+
cirq/value/condition.py,sha256=V4eap0T1B38fPl5zT5vEvHK5vRB5CrSCeaEbBHXD2LU,11943
|
|
1185
1204
|
cirq/value/condition_test.py,sha256=oEdim5nOYYY8UPU91H2xhb9MH8EC2WbMXTQ_DruHVO0,12949
|
|
1186
|
-
cirq/value/digits.py,sha256
|
|
1205
|
+
cirq/value/digits.py,sha256=CrraW8U68Bj5PhA9uLa6AdCJg9XbaEID9iUIU2Ym4bk,6357
|
|
1187
1206
|
cirq/value/digits_test.py,sha256=WDeUQTnDqZXh4JjWu_qEkzCFAtd8x1UlN9I2yjdDV3g,3848
|
|
1188
|
-
cirq/value/duration.py,sha256=
|
|
1207
|
+
cirq/value/duration.py,sha256=YA2Gsd7dblaKx6eSrRZRkWg726WWGRJFsY-b_7Ujsj8,10413
|
|
1189
1208
|
cirq/value/duration_test.py,sha256=xQd5-dE8zZddsZru1P6ClV3PoeJncqLAQr3ivgZIXdQ,8281
|
|
1190
|
-
cirq/value/linear_dict.py,sha256
|
|
1209
|
+
cirq/value/linear_dict.py,sha256=bDy9K0x8X45IeB5X-b1CQAqQQGCP7uRm28zHu1bg4Xo,12110
|
|
1191
1210
|
cirq/value/linear_dict_test.py,sha256=eZatVgAMonquI2qys4WJx6ddUc2KDea440qHIOxlTfQ,20061
|
|
1192
|
-
cirq/value/measurement_key.py,sha256=
|
|
1211
|
+
cirq/value/measurement_key.py,sha256=jMibWhivnTX_oUhyGyto87VHrsF-D2mc0D0Ep5h8bMA,5202
|
|
1193
1212
|
cirq/value/measurement_key_test.py,sha256=QpiKcsDOr8UjN3UyOng881zGIPNjqDTE1aHr-V6yzbg,4502
|
|
1194
|
-
cirq/value/periodic_value.py,sha256=
|
|
1213
|
+
cirq/value/periodic_value.py,sha256=qh0n-NlNGv6SDzf6ftNwxyvSyjtDl28vntWFq0YYQOs,3947
|
|
1195
1214
|
cirq/value/periodic_value_test.py,sha256=WnInSqwrOPjtbkiWDZtbFw6BXIuz2WVJ1l_DKLlOYUk,4572
|
|
1196
1215
|
cirq/value/probability.py,sha256=UIzJyDESFqhqaJjV3uYrROnurZ40RfO__Dx-HKEIMWM,1617
|
|
1197
1216
|
cirq/value/probability_test.py,sha256=vFpPiofJY-ddsfpDrtgP-AiXFCDtKVXhjkv_4Vl1-Qg,984
|
|
1198
|
-
cirq/value/product_state.py,sha256=
|
|
1217
|
+
cirq/value/product_state.py,sha256=NSNLTFNvs2mYNRw7U8BGpQT6tj1G--nhBpbWk9PElfs,9024
|
|
1199
1218
|
cirq/value/product_state_test.py,sha256=CGRb5pKl5bVB9yWeil12qweQ735wYP64jQGoC-j3tto,5978
|
|
1200
1219
|
cirq/value/random_state.py,sha256=Kv3dcVif6ltJSI0RT9kSI1XeofW16jdtmo5T3pD4m9w,2099
|
|
1201
1220
|
cirq/value/random_state_test.py,sha256=AfzX82WsyyuLYnoakNOTj2PPL1fYRH5ZaH84uO-6Cvg,1394
|
|
1202
1221
|
cirq/value/timestamp.py,sha256=pC-hwfLL6U1_5937AMw6YtGgEBq71prNQ6jOjh8Kbls,3633
|
|
1203
1222
|
cirq/value/timestamp_test.py,sha256=L-MmYEuoTDdyyX6MJ6-wBqxHcSMabQHogX_DhOm0SAg,4214
|
|
1204
1223
|
cirq/value/type_alias.py,sha256=64tVzxOqzwtKTwuqXan-PeTyjy7i6J928FCg5NtMcw4,1121
|
|
1205
|
-
cirq/value/value_equality_attr.py,sha256=
|
|
1224
|
+
cirq/value/value_equality_attr.py,sha256=Oo3Fyw4-LKMgOwbc5g9Bxtj2ZVkgHWarPDaj8nfx0hc,10488
|
|
1206
1225
|
cirq/value/value_equality_attr_test.py,sha256=ZWsjAlJd9M_-HONqTXcdjpIaFCilLcelyodZl1fIu2Y,6557
|
|
1207
1226
|
cirq/vis/__init__.py,sha256=YzNrNjIyUiTxKHGzYw92qzOYzx8aXkm2y_1hkfVohtU,1171
|
|
1208
|
-
cirq/vis/density_matrix.py,sha256=
|
|
1227
|
+
cirq/vis/density_matrix.py,sha256=IefN6zgEyqEcCXjHhv6tM5JgRQRed0mT2C8je6Vl584,4821
|
|
1209
1228
|
cirq/vis/density_matrix_test.py,sha256=yoOQd0XqCECfmM6ycsBEF2hEyM5NTeNNAoVYEhRj8pk,7082
|
|
1210
|
-
cirq/vis/heatmap.py,sha256=
|
|
1229
|
+
cirq/vis/heatmap.py,sha256=j8g5keJkCu82zWSOUYAPf4BeGnVMFP-p153cn7jiV8U,17647
|
|
1211
1230
|
cirq/vis/heatmap_test.py,sha256=5Z6EymBugK_tygqKb_qHy7rBI1LfIG67tzPtGUWSUB4,20587
|
|
1212
|
-
cirq/vis/histogram.py,sha256=
|
|
1231
|
+
cirq/vis/histogram.py,sha256=Wp19uDYmvN8JJ92cfeaqwDq6uq05M8GMWL6LuBL54t0,5136
|
|
1213
1232
|
cirq/vis/histogram_test.py,sha256=G2JRYXfVwrw7TVaaejILqOowxRn_2oF456dYNH9pzeA,1956
|
|
1214
|
-
cirq/vis/state_histogram.py,sha256=
|
|
1233
|
+
cirq/vis/state_histogram.py,sha256=4W0rnd-_aMlCBrM8ZXUinunmYBxo2HE_0QllFUt0kuA,4324
|
|
1215
1234
|
cirq/vis/state_histogram_test.py,sha256=zHQeSPGVViN5s1QHGsClm0zlIXdt_oyIIDQaAItDIDk,3837
|
|
1216
1235
|
cirq/vis/vis_utils.py,sha256=MQDCuV-ZfHrtpSRF_-iIRuNvPR9Xv5umRpixPyZ5CvA,1274
|
|
1217
1236
|
cirq/vis/vis_utils_test.py,sha256=geSavo2Ip585fjanPK3T8AUuvhUwNclLBdl_W_OOycc,984
|
|
1218
1237
|
cirq/work/__init__.py,sha256=qbw_dKRx_88FxNH_f_CfpVGMrrJKxtjDncx6m7dEWYs,1771
|
|
1219
|
-
cirq/work/collector.py,sha256=
|
|
1238
|
+
cirq/work/collector.py,sha256=1HzbulwHmkk4a5rk6zGoZHC41zx1xgXGHqiKkmVG2qQ,7748
|
|
1220
1239
|
cirq/work/collector_test.py,sha256=2dAOkKTn0tazxb_gyhKPJghXpj47Bm2SuCCpf_EW7kI,5004
|
|
1221
|
-
cirq/work/observable_grouping.py,sha256=
|
|
1240
|
+
cirq/work/observable_grouping.py,sha256=Dh96qFEgii7cewjm7qBtzTzpUSOYHEe2vDbuXVc9U-4,3500
|
|
1222
1241
|
cirq/work/observable_grouping_test.py,sha256=c_axFGnGfCAqk69oqSgottsT_u_Versa4A_oZrgasMk,5875
|
|
1223
|
-
cirq/work/observable_measurement.py,sha256=
|
|
1224
|
-
cirq/work/observable_measurement_data.py,sha256=
|
|
1242
|
+
cirq/work/observable_measurement.py,sha256=X2zHuAdenYmJoXhjVTP8Qao-IKhzY8fZ4JAWVIcgpqU,28238
|
|
1243
|
+
cirq/work/observable_measurement_data.py,sha256=PEL1IlgPlxKOUBa9WpBvlAo3f2NDq9obcSDUkW0MKPQ,21162
|
|
1225
1244
|
cirq/work/observable_measurement_data_test.py,sha256=EDmmrcQeN-QtWdIxYqjpYyn_443zF_2peVV6DwU49zA,19731
|
|
1226
|
-
cirq/work/observable_measurement_test.py,sha256
|
|
1227
|
-
cirq/work/observable_readout_calibration.py,sha256=
|
|
1228
|
-
cirq/work/observable_readout_calibration_test.py,sha256=
|
|
1229
|
-
cirq/work/observable_settings.py,sha256=
|
|
1245
|
+
cirq/work/observable_measurement_test.py,sha256=2gXCmhUQ9fzfDZgq-9PHqfkbhDlE9_fQe2t2Og-3hh8,21080
|
|
1246
|
+
cirq/work/observable_readout_calibration.py,sha256=ZNuBQfZ3iAnlkqish_77iBOmaW7verEPQnUOnQQCBRE,1935
|
|
1247
|
+
cirq/work/observable_readout_calibration_test.py,sha256=_CoLxkfnR5OF-tqRHVCicAT65V5uOK2XmhLnnAplwj0,1858
|
|
1248
|
+
cirq/work/observable_settings.py,sha256=WiV2e-uGO1Wv6KHSfNzuou5iXKMSo-FBP9Jte7jTYKE,6677
|
|
1230
1249
|
cirq/work/observable_settings_test.py,sha256=TE2rIdeI7UjW9Oe2jAT2SAQ2A90GVZquOUa1ORcvObM,4373
|
|
1231
1250
|
cirq/work/pauli_sum_collector.py,sha256=ZQgXylJUk31XUatimtTDSPVdLw1myX4ggcnENKnQ7ao,4218
|
|
1232
1251
|
cirq/work/pauli_sum_collector_test.py,sha256=3fb_KS5bZ7AZTCl3y-SyN-jysqnb35o1cHPyQq_Ol_s,2443
|
|
1233
|
-
cirq/work/sampler.py,sha256=
|
|
1234
|
-
cirq/work/sampler_test.py,sha256=
|
|
1252
|
+
cirq/work/sampler.py,sha256=tuk0Gzf-O6VX3KPQTHuFmTPVN0QhhMfL1uofwu16v3c,19068
|
|
1253
|
+
cirq/work/sampler_test.py,sha256=aVs3i0BV815H-ZdAT6RLOose1bFVpz0kU6IwpYVNU50,13542
|
|
1235
1254
|
cirq/work/zeros_sampler.py,sha256=Fs2JWwq0n9zv7_G5Rm-9vPeHUag7uctcMOHg0JTkZpc,2371
|
|
1236
1255
|
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.
|
|
1256
|
+
cirq_core-1.7.0.dev20251203004401.dist-info/licenses/LICENSE,sha256=tAkwu8-AdEyGxGoSvJ2gVmQdcicWw3j1ZZueVV74M-E,11357
|
|
1257
|
+
cirq_core-1.7.0.dev20251203004401.dist-info/METADATA,sha256=QdgoL7rGcB1HrN-1wJ0p1wu-4dh0mkxFlV7tCo5JrtE,4757
|
|
1258
|
+
cirq_core-1.7.0.dev20251203004401.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1259
|
+
cirq_core-1.7.0.dev20251203004401.dist-info/top_level.txt,sha256=Sz9iOxHU0IEMLSFGwiwOCaN2e9K-jFbBbtpPN1hB73g,5
|
|
1260
|
+
cirq_core-1.7.0.dev20251203004401.dist-info/RECORD,,
|