qiskit.providers.aer.PulseSimulator.run¶
-
PulseSimulator.
run
(schedules, *args, backend_options=None, validate=True, **run_options)[source]¶ Run a qobj on the backend.
- Parameters
schedules (Schedule or list) – The pulse
Schedule
(or list ofSchedule
objects) to be executed.backend_options (dict or None) – DEPRECATED dictionary of backend options for the execution (default: None).
validate (bool) – validate the Qobj before running (default: True).
run_options (kwargs) – additional run time backend options.
- Returns
The simulation job.
- Return type
- Additional Information:
kwarg options specified in
run_options
will override options of the same kwarg specified in the simulator options, thebackend_options
and theQobj.config
.The entries in the
backend_options
will be combined with theQobj.config
dictionary with the values of entries inbackend_options
taking precedence. This kwarg is deprecated and direct kwarg’s should be used for options to pass them torun_options
.