Portuguese, Brazilian
Idiomas
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.basicaer.QasmSimulatorPy

class QasmSimulatorPy(configuration=None, provider=None)[código fonte]

Python implementation of a qasm simulator.

Base 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.

Parâmetros
Levanta

QiskitError – if an error occurred when instantiating the backend.

__init__(configuration=None, provider=None)[código fonte]

Base 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.

Parâmetros
Levanta

QiskitError – if an error occurred when instantiating the backend.

Methods

__init__([configuration, provider])

Base class for backends.

configuration()

Return the backend configuration.

name()

Return the backend name.

properties()

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.

status()

Return the backend status.

version()

Return the backend version.

Attributes

DEFAULT_CONFIGURATION

DEFAULT_OPTIONS

MAX_QUBITS_MEMORY

SHOW_FINAL_STATE

configuration()

Return the backend configuration.

Retorna

the configuration for the backend.

Tipo de retorno

BackendConfiguration

name()

Return the backend name.

Retorna

the name of the backend.

Tipo de retorno

str

properties()

Return the backend properties.

Retorna

the configuration for the backend. If the backend does not support properties, it returns None.

Tipo de retorno

BackendProperties

provider()

Return the backend Provider.

Retorna

the Provider responsible for the backend.

Tipo de retorno

BaseProvider

run(qobj, backend_options=None)[código fonte]

Run qobj asynchronously.

Parâmetros
  • qobj (Qobj) – payload of the experiment

  • backend_options (dict) – backend options

Retorna

derived from BaseJob

Tipo de retorno

BasicAerJob

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)[código fonte]

Run an experiment (circuit) and return a single experiment result.

Parâmetros

experiment (QobjExperiment) – experiment from qobj experiments list

Retorna

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
}

Tipo de retorno

dict

Levanta

BasicAerError – if an error occurred.

status()

Return the backend status.

Retorna

the status of the backend.

Tipo de retorno

BackendStatus

version()

Return the backend version.

Retorna

the X.X.X version of the backend.

Tipo de retorno

str