qiskit.providers.aer.PulseSimulator¶
-
class
PulseSimulator
(configuration=None, properties=None, defaults=None, provider=None, **backend_options)[source]¶ Pulse schedule simulator backend.
The
PulseSimulator
simulates continuous time Hamiltonian dynamics of a quantum system, with controls specified by pulseSchedule
objects, and the model of the physical system specified byPulseSystemModel
objects. Results are returned in the same format as when jobs are submitted to actual devices.Examples
The minimal information a
PulseSimulator
needs to simulate is aPulseSystemModel
, which can be supplied either by setting the backend option before callingrun
, e.g.:backend_sim = qiskit.providers.aer.PulseSimulator() # Set the pulse system model for the simulator backend_sim.set_options(system_model=system_model) # Assemble schedules using PulseSimulator as the backend pulse_qobj = assemble(schedules, backend=backend_sim) # Run simulation results = backend_sim.run(pulse_qobj)
or by supplying the system model at runtime, e.g.:
backend_sim = qiskit.providers.aer.PulseSimulator() # Assemble schedules using PulseSimulator as the backend pulse_qobj = assemble(schedules, backend=backend_sim) # Run simulation on a PulseSystemModel object results = backend_sim.run(pulse_qobj, system_model=system_model)
Alternatively, an instance of the
PulseSimulator
may be further configured to contain more information present in a real backend. The simplest way to do this is to instantiate thePulseSimulator
from a real backend:armonk_sim = qiskit.providers.aer.PulseSimulator.from_backend(FakeArmonk()) pulse_qobj = assemble(schedules, backend=armonk_sim) armonk_sim.run(pulse_qobj)
In the above example, the
PulseSimulator
copies all configuration and default data fromFakeArmonk()
, and as such has the same affect asFakeArmonk()
when passed as an argument toassemble
. Furthermore it constructs aPulseSystemModel
from the model details in the supplied backend, which is then used in simulation.Supported PulseQobj parameters
qubit_lo_freq
: Local oscillator frequencies for eachDriveChannel
. Defaults to either the value given in thePulseSystemModel
, or is calculated directly from the Hamiltonian.meas_level
: Type of desired measurement output, in[1, 2]
.1
gives complex numbers (IQ values), and2
gives discriminated states|0>
and|1>
. Defaults to2
.meas_return
: Measurement type,'single'
or'avg'
. Defaults to'avg'
.shots
: Number of shots per experiment. Defaults to1024
.
Simulation details
The simulator uses the
zvode
differential equation solver method throughscipy
. Simulation is performed in the rotating frame of the diagonal of the drift Hamiltonian contained in thePulseSystemModel
. Measurements are performed in the dressed basis of the drift Hamiltonian.Other options
Additional valid keyword arguments for
run()
:'solver_options'
: Adict
for solver options. Accepted keys are'atol'
,'rtol'
,'nsteps'
,'max_step'
,'num_cpus'
,'norm_tol'
, and'norm_steps'
.
Aer class for backends.
This method should initialize the module and its configuration, and raise an exception if a component of the module is not available.
- Parameters
configuration (BackendConfiguration) – backend configuration.
properties (BackendProperties or None) – Optional, backend properties.
defaults (PulseDefaults or None) – Optional, backend pulse defaults.
available_methods (list or None) – Optional, the available simulation methods if backend supports multiple methods.
provider (Provider) – Optional, provider responsible for this backend.
backend_options (dict or None) – Optional set custom backend options.
- Raises
AerError – if there is no name in the configuration
-
__init__
(configuration=None, properties=None, defaults=None, provider=None, **backend_options)[source]¶ Aer class for backends.
This method should initialize the module and its configuration, and raise an exception if a component of the module is not available.
- Parameters
configuration (BackendConfiguration) – backend configuration.
properties (BackendProperties or None) – Optional, backend properties.
defaults (PulseDefaults or None) – Optional, backend pulse defaults.
available_methods (list or None) – Optional, the available simulation methods if backend supports multiple methods.
provider (Provider) – Optional, provider responsible for this backend.
backend_options (dict or None) – Optional set custom backend options.
- Raises
AerError – if there is no name in the configuration
Methods
__init__
([configuration, properties, …])Aer class for backends.
Return the available simulation methods.
Reset the simulator options to default values.
Return the simulator backend configuration.
defaults
()Return the simulator backend pulse defaults.
from_backend
(backend, **options)Initialize simulator from backend.
name
()Return the backend name.
Return the simulator backend properties if set.
provider
()Return the backend Provider.
run
(schedules, *args[, backend_options, …])Run a qobj on the backend.
set_option
(key, value)Set pulse simulation options and update backend.
set_options
(**fields)Set the options fields for the backend
status
()Return backend status.
Attributes
Return the options for the backend
version
-
available_methods
()¶ Return the available simulation methods.
-
clear_options
()¶ Reset the simulator options to default values.
-
configuration
()¶ Return the simulator backend configuration.
- Returns
the configuration for the backend.
- Return type
-
defaults
()¶ Return the simulator backend pulse defaults.
- Returns
- The backend pulse defaults or
None
if the backend does not support pulse.
- The backend pulse defaults or
- Return type
-
name
()¶ Return the backend name.
- Returns
the name of the backend.
- Return type
str
-
property
options
¶ Return the options for the backend
The options of a backend are the dynamic parameters defining how the backend is used. These are used to control the
run()
method.
-
properties
()¶ Return the simulator backend properties if set.
- Returns
- The backend properties or
None
if the backend does not have properties set.
- The backend properties or
- Return type
-
provider
()¶ Return the backend Provider.
- Returns
the Provider responsible for the backend.
- Return type
-
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
.
-
set_options
(**fields)¶ Set the options fields for the backend
This method is used to update the options of a backend. If you need to change any of the options prior to running just pass in the kwarg with the new value for the options.
- Parameters
fields – The fields to update the options
- Raises
AttributeError – If the field passed in is not part of the options
-
status
()¶ Return backend status.
- Returns
the status of the backend.
- Return type