File tree Expand file tree Collapse file tree
qiskit_experiments/library/characterization Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -460,11 +460,7 @@ def _default_transpile_options(cls) -> Options:
460460
461461 Experiment Options:
462462 basis_gates: Set to :code:`["szx"]`.
463- inst_map: The instruction schedule map that will contain the schedule for the
464- Rzx(pi/2) gate. This schedule should be stored under the instruction name
465- ``szx``.
466463 """
467464 options = super ()._default_transpile_options ()
468465 options .basis_gates = ["szx" ]
469- options .inst_map = None
470466 return options
Original file line number Diff line number Diff line change @@ -123,7 +123,6 @@ def _default_experiment_options(cls) -> Options:
123123 def _default_transpile_options (cls ) -> Options :
124124 """Default transpiler options."""
125125 options = super ()._default_transpile_options ()
126- options .inst_map = None
127126 options .basis_gates = ["sx" , "rz" , "delay" ]
128127 return options
129128
You can’t perform that action at this time.
0 commit comments