qiskit.providers.aer.QasmSimulator.run¶
-
QasmSimulator.
run
(circuits, backend_options=None, validate=False, **run_options)¶ Run a qobj on the backend.
- Parameters
circuits (QuantumCircuit or list) – The QuantumCircuit (or list of QuantumCircuit objects) to run
backend_options (dict or None) – DEPRECATED dictionary of backend options for the execution (default: None).
validate (bool) – validate the Qobj before running (default: False).
run_options (kwargs) – additional run time backend options.
- Returns
The simulation job.
- Return type
- Additional Information:
kwarg options specified in
run_options
will temporarily override any set options of the same name for the current run.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
.