diff --git a/cirq-google/cirq_google/engine/calibration_to_noise_properties.py b/cirq-google/cirq_google/engine/calibration_to_noise_properties.py index 316fa2070a8..4d2741b7df9 100644 --- a/cirq-google/cirq_google/engine/calibration_to_noise_properties.py +++ b/cirq-google/cirq_google/engine/calibration_to_noise_properties.py @@ -54,10 +54,12 @@ } GATE_PREFIX_PAIRS: Dict[Type['cirq.Gate'], str] = { cg_ops.SycamoreGate: 'two_qubit_parallel_sycamore_gate', + ops.CZPowGate: 'two_qubit_parallel_cz_gate', ops.ISwapPowGate: 'two_qubit_parallel_sqrt_iswap_gate', } GATE_ZPHASE_CODE_PAIRS: Dict[Type['cirq.Gate'], str] = { cg_ops.SycamoreGate: 'syc', + ops.CZPowGate: 'cz', ops.ISwapPowGate: 'sqrt_iswap', }