StatevectorSimulator¶
-
class
StatevectorSimulator
(configuration=None, properties=None, provider=None, **backend_options)[source]¶ Bases:
qiskit.providers.aer.backends.aerbackend.AerBackend
Ideal quantum circuit statevector simulator
Configurable Options
The StatevectorSimulator supports CPU and GPU simulation methods and additional configurable options. These may be set using the appropriate kwargs during initialization. They can also be set of updated using the
set_options()
method.Run-time options may also be specified as kwargs using the
run()
method. These will not be stored in the backend and will only apply to that execution. They will also override any previously set options.For example, to configure a a single-precision simulator
backend = StatevectorSimulator(precision='single')
Backend Options
The following configurable backend options are supported
method
(str): Set the simulation method supported methods are"statevector"
for CPU simulation, and"statevector_gpu"
for GPU simulation (Default:"statevector"
).precision
(str): Set the floating point precision for certain simulation methods to either"single"
or"double"
precision (default:"double"
).zero_threshold
(double): Sets the threshold for truncating small values to zero in the result data (Default: 1e-10).validation_threshold
(double): Sets the threshold for checking if the initial statevector is valid (Default: 1e-8).max_parallel_threads
(int): Sets the maximum number of CPU cores used by OpenMP for parallelization. If set to 0 the maximum will be set to the number of CPU cores (Default: 0).max_parallel_experiments
(int): Sets the maximum number of qobj experiments that may be executed in parallel up to the max_parallel_threads value. If set to 1 parallel circuit execution will be disabled. If set to 0 the maximum will be automatically set to max_parallel_threads (Default: 1).max_memory_mb
(int): Sets the maximum size of memory to store a state vector. If a state vector needs more, an error is thrown. In general, a state vector of n-qubits uses 2^n complex values (16 Bytes). If set to 0, the maximum will be automatically set to the system memory size (Default: 0).statevector_parallel_threshold
(int): Sets the threshold that “n_qubits” must be greater than to enable OpenMP parallelization for matrix multiplication during execution of an experiment. If parallel circuit or shot execution is enabled this will only use unallocated CPU cores up to max_parallel_threads. Note that setting this too low can reduce performance (Default: 14).
These backend options apply in circuit optimization passes:
fusion_enable
(bool): Enable fusion optimization in circuit optimization passes [Default: True]fusion_verbose
(bool): Output gates generated in fusion optimization into metadata [Default: False]fusion_max_qubit
(int): Maximum number of qubits for a operation generated in a fusion optimization [Default: 5]fusion_threshold
(int): Threshold that number of qubits must be greater than or equal to enable fusion optimization [Default: 14]
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
Return the available simulation methods.
Reset the simulator options to default values.
Return the simulator backend configuration.
Return the simulator backend pulse defaults.
Return the backend name.
Return the simulator backend properties if set.
Return the backend Provider.
Run a qobj on the backend.
Special handling for setting backend options.
Set the options fields for the backend
Return backend status.
Attributes
-
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.
-
version
= 1¶