qiskit.providers.basicaer.StatevectorSimulatorPy¶
-
class
StatevectorSimulatorPy
(configuration=None, provider=None, **fields)[소스]¶ Python statevector simulator.
Initialize a backend class
- 매개변수
configuration (BackendConfiguration) – A backend configuration object for the backend object.
provider (qiskit.providers.Provider) – Optionally, the provider object that this Backend comes from.
fields – kwargs for the values to use to override the default options.
- 예외
AttributeError – if input field not a valid options
-
__init__
(configuration=None, provider=None, **fields)[소스]¶ Initialize a backend class
- 매개변수
configuration (BackendConfiguration) – A backend configuration object for the backend object.
provider (qiskit.providers.Provider) – Optionally, the provider object that this Backend comes from.
fields – kwargs for the values to use to override the default options.
- 예외
AttributeError – if input field not a valid options
Methods
__init__
([configuration, provider])Initialize a backend class
Return the backend configuration.
name
()Return the backend name.
Return the backend properties.
provider
()Return the backend Provider.
run
(qobj, **backend_options)Run qobj asynchronously.
run_experiment
(experiment)Run an experiment (circuit) and return a single experiment result.
set_options
(**fields)Set the options fields for the backend
status
()Return the backend status.
Attributes
DEFAULT_CONFIGURATION
DEFAULT_OPTIONS
MAX_QUBITS_MEMORY
SHOW_FINAL_STATE
Return the options for the backend
version
-
configuration
()¶ Return the backend configuration.
- 반환값
the configuration for the backend.
- 반환 형식
-
name
()¶ Return the backend name.
- 반환값
the name of the backend.
- 반환 형식
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 backend properties.
- 반환값
the configuration for the backend. If the backend does not support properties, it returns
None
.- 반환 형식
-
provider
()¶ Return the backend Provider.
- 반환값
the Provider responsible for the backend.
- 반환 형식
-
run
(qobj, **backend_options)¶ Run qobj asynchronously.
- 매개변수
qobj (Qobj) – payload of the experiment
backend_options (dict) – backend options
- 반환값
derived from BaseJob
- 반환 형식
- Additional Information:
- backend_options: Is a dict of options for the backend. It may contain
“initial_statevector”: vector_like
The “initial_statevector” option specifies a custom initial initial statevector for the simulator to be used instead of the all zero state. This size of this vector must be correct for the number of qubits in all experiments in the qobj.
Example:
backend_options = { "initial_statevector": np.array([1, 0, 0, 1j]) / np.sqrt(2), }
-
run_experiment
(experiment)¶ Run an experiment (circuit) and return a single experiment result.
- 매개변수
experiment (QobjExperiment) – experiment from qobj experiments list
- 반환값
A result dictionary which looks something like:
{ "name": name of this experiment (obtained from qobj.experiment header) "seed": random seed used for simulation "shots": number of shots used in the simulation "data": { "counts": {'0x9: 5, ...}, "memory": ['0x9', '0xF', '0x1D', ..., '0x9'] }, "status": status string for the simulation "success": boolean "time_taken": simulation time of this single experiment }
- 반환 형식
dict
- 예외
BasicAerError – if an error occurred.
-
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.
- 매개변수
fields – The fields to update the options
- 예외
AttributeError – If the field passed in is not part of the options
-
status
()¶ Return the backend status.
- 반환값
the status of the backend.
- 반환 형식