Skip to content

Commit 6fe9d45

Browse files
fix pulse dependnce for mcm and dc RB (#64)
1 parent 2ac5e5d commit 6fe9d45

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

qiskit_device_benchmarking/bench_code/mcm_rb/mcm_rb_experiment.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
EnlargeWithAncilla,
5050
FullAncillaAllocation,
5151
ApplyLayout,
52-
PulseGates,
5352
)
5453
from qiskit_experiments.data_processing import (
5554
DataProcessor,
@@ -420,7 +419,6 @@ def _transpiled_circuits(self) -> List[QuantumCircuit]:
420419
def _transpile_single_circuit(self, circuit, apply_scheduling=False):
421420
initial_layout = Layout.from_intlist(self.physical_qubits, *circuit.qregs)
422421
coupling_map = CouplingMap(self._backend_data.coupling_map)
423-
inst_map = self.backend.defaults().instruction_schedule_map
424422

425423
transpiler = StagedPassManager(stages=["layout", "calibration", "scheduling"])
426424
transpiler.layout = PassManager(
@@ -431,7 +429,6 @@ def _transpile_single_circuit(self, circuit, apply_scheduling=False):
431429
ApplyLayout(),
432430
]
433431
)
434-
transpiler.calibration = PassManager(PulseGates(inst_map))
435432
transpiler.scheduling = (
436433
self._generate_dd_pass_manager() if apply_scheduling else None
437434
)

0 commit comments

Comments
 (0)