Skip to content

Commit 99d0fa9

Browse files
authored
Fix: Incorrect initialization of BackendV2 for transpiler_level ASV tests. (#14152)
1 parent 86e6b72 commit 99d0fa9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/benchmarks/transpiler_levels.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def setup(self, _):
154154
self.qasm_path = os.path.abspath(os.path.join(os.path.dirname(__file__), "qasm"))
155155
large_qasm_path = os.path.join(self.qasm_path, "test_eoh_qasm.qasm")
156156
self.large_qasm = QuantumCircuit.from_qasm_file(large_qasm_path)
157-
self.melbourne = GenericBackendV2(num_qubits=20, coupling_map=MELBOURNE_CMAP, seed=0)
157+
self.melbourne = GenericBackendV2(num_qubits=14, coupling_map=MELBOURNE_CMAP, seed=0)
158158

159159
self.durations = InstructionDurations(
160160
[

0 commit comments

Comments
 (0)