qiskit-documentation/docs/api/qiskit/dev/qiskit.providers.basic_prov...

248 lines
9.8 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: BasicSimulator (dev version)
description: API reference for qiskit.providers.basic_provider.BasicSimulator in the dev version of qiskit
in_page_toc_min_heading_level: 1
python_api_type: class
python_api_name: qiskit.providers.basic_provider.BasicSimulator
---
# BasicSimulator
<Class id="qiskit.providers.basic_provider.BasicSimulator" isDedicatedPage={true} github="https://github.com/Qiskit/qiskit/tree/main/qiskit/providers/basic_provider/basic_simulator.py#L65-L693" signature="qiskit.providers.basic_provider.BasicSimulator(provider=None, target=None, **fields)" modifiers="class">
Bases: [`BackendV2`](qiskit.providers.BackendV2 "qiskit.providers.backend.BackendV2")
Python implementation of a basic (non-efficient) quantum simulator.
**Parameters**
* **provider** An optional backwards reference to the provider object that the backend is from.
* **target** ([*Target*](qiskit.transpiler.Target "qiskit.transpiler.Target") *| None*) An optional target to configure the simulator.
* **fields** kwargs for the values to use to override the default options.
**Raises**
[**AttributeError**](https://docs.python.org/3/library/exceptions.html#AttributeError "(in Python v3.13)") If a field is specified thats outside the backends options.
## Attributes
### MAX\_QUBITS\_MEMORY
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.MAX_QUBITS_MEMORY" attributeValue="24" />
### coupling\_map
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.coupling_map">
Return the [`CouplingMap`](qiskit.transpiler.CouplingMap "qiskit.transpiler.CouplingMap") object
</Attribute>
### dt
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.dt">
Return the system time resolution of input signals
This is required to be implemented if the backend supports Pulse scheduling.
**Returns**
The input signal timestep in seconds. If the backend doesnt define `dt`, `None` will be returned.
</Attribute>
### dtm
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.dtm">
Return the system time resolution of output signals
**Returns**
The output signal timestep in seconds.
**Raises**
[**NotImplementedError**](https://docs.python.org/3/library/exceptions.html#NotImplementedError "(in Python v3.13)") if the backend doesnt support querying the output signal timestep
</Attribute>
### instruction\_durations
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.instruction_durations">
Return the [`InstructionDurations`](qiskit.transpiler.InstructionDurations "qiskit.transpiler.InstructionDurations") object.
</Attribute>
### instructions
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.instructions">
A list of Instruction tuples on the backend of the form `(instruction, (qubits)`
</Attribute>
### max\_circuits
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.max_circuits" />
### meas\_map
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.meas_map">
Return the grouping of measurements which are multiplexed
This is required to be implemented if the backend supports Pulse scheduling.
**Returns**
The grouping of measurements which are multiplexed
**Raises**
[**NotImplementedError**](https://docs.python.org/3/library/exceptions.html#NotImplementedError "(in Python v3.13)") if the backend doesnt support querying the measurement mapping
</Attribute>
### num\_qubits
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.num_qubits">
Return the number of qubits the backend has.
</Attribute>
### operation\_names
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.operation_names">
A list of instruction names that the backend supports.
</Attribute>
### operations
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.operations">
A list of [`Instruction`](qiskit.circuit.Instruction "qiskit.circuit.Instruction") instances that the backend supports.
</Attribute>
### options
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.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()`](#qiskit.providers.basic_provider.BasicSimulator.run "qiskit.providers.basic_provider.BasicSimulator.run") method.
</Attribute>
### provider
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.provider">
Return the backend provider.
**Returns**
the provider responsible for the backend.
**Return type**
provider
</Attribute>
### target
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.target" />
### version
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.version" attributeValue="2" />
### name
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.name">
Name of the backend.
</Attribute>
### description
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.description">
Optional human-readable description.
</Attribute>
### online\_date
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.online_date">
Date that the backend came online.
</Attribute>
### backend\_version
<Attribute id="qiskit.providers.basic_provider.BasicSimulator.backend_version">
Version of the backend being provided. This is not the same as [`BackendV2.version`](qiskit.providers.BackendV2#version "qiskit.providers.BackendV2.version"), which is the version of the [`Backend`](qiskit.providers.Backend "qiskit.providers.Backend") abstract interface.
</Attribute>
## Methods
### qubit\_properties
<Function id="qiskit.providers.basic_provider.BasicSimulator.qubit_properties" github="https://github.com/Qiskit/qiskit/tree/main/qiskit/providers/backend.py#L269-L301" signature="qubit_properties(qubit)">
Return QubitProperties for a given qubit.
If there are no defined or the backend doesnt support querying these details this method does not need to be implemented.
**Parameters**
**qubit** ([*int*](https://docs.python.org/3/library/functions.html#int "(in Python v3.13)") *|*[*List*](https://docs.python.org/3/library/typing.html#typing.List "(in Python v3.13)")*\[*[*int*](https://docs.python.org/3/library/functions.html#int "(in Python v3.13)")*]*) The qubit to get the [`QubitProperties`](qiskit.providers.QubitProperties "qiskit.providers.QubitProperties") object for. This can be a single integer for 1 qubit or a list of qubits and a list of [`QubitProperties`](qiskit.providers.QubitProperties "qiskit.providers.QubitProperties") objects will be returned in the same order
**Returns**
The [`QubitProperties`](qiskit.providers.QubitProperties "qiskit.providers.QubitProperties") object for the specified qubit. If a list of qubits is provided a list will be returned. If properties are missing for a qubit this can be `None`.
**Raises**
[**NotImplementedError**](https://docs.python.org/3/library/exceptions.html#NotImplementedError "(in Python v3.13)") if the backend doesnt support querying the qubit properties
**Return type**
[*QubitProperties*](qiskit.providers.QubitProperties "qiskit.providers.backend.QubitProperties") | [*List*](https://docs.python.org/3/library/typing.html#typing.List "(in Python v3.13)")\[[*QubitProperties*](qiskit.providers.QubitProperties "qiskit.providers.backend.QubitProperties")]
</Function>
### run
<Function id="qiskit.providers.basic_provider.BasicSimulator.run" github="https://github.com/Qiskit/qiskit/tree/main/qiskit/providers/basic_provider/basic_simulator.py#L422-L470" signature="run(run_input, **run_options)">
Run on the backend.
**Parameters**
* **run\_input** ([*QuantumCircuit*](qiskit.circuit.QuantumCircuit "qiskit.circuit.QuantumCircuit") *or*[*list*](https://docs.python.org/3/library/stdtypes.html#list "(in Python v3.13)")) the QuantumCircuit (or list of QuantumCircuit objects) to run
* **run\_options** (*kwargs*) additional runtime backend options
**Returns**
derived from BaseJob
**Return type**
[BasicProviderJob](qiskit.providers.basic_provider.BasicProviderJob "qiskit.providers.basic_provider.BasicProviderJob")
**Additional Information:**
* kwarg options specified in `run_options` will temporarily override any set options of the same name for the current run. These may include:
> * “initial\_statevector”: vector-like. The “initial\_statevector” option specifies a custom initial statevector to be used instead of the all-zero state. The size of this vector must correspond to the number of qubits in the `run_input` argument.
> * “seed\_simulator”: int. This is the internal seed for sample generation.
> * “shots”: int. Number of shots used in the simulation.
> * “memory”: bool. If True, the result will contain the results of every individual shot simulation.
Example:
```python
backend.run(
circuit_2q,
initial_statevector = np.array([1, 0, 0, 1j]) / math.sqrt(2)
)
```
</Function>
### set\_options
<Function id="qiskit.providers.basic_provider.BasicSimulator.set_options" github="https://github.com/Qiskit/qiskit/tree/main/qiskit/providers/backend.py#L303-L320" signature="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**](https://docs.python.org/3/library/exceptions.html#AttributeError "(in Python v3.13)") If the field passed in is not part of the options
</Function>
</Class>