French
Langues
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.BaseBackend

class BaseBackend(configuration, provider=None)[source]

Legacy Base class for backends.

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.

Paramètres
Lève

QiskitError – if an error occurred when instantiating the backend.

abstract __init__(configuration, provider=None)[source]

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.

Paramètres
Lève

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)

Run a Qobj on the the backend.

status()

Return the backend status.

version()

Return the backend version.

configuration()[source]

Return the backend configuration.

Renvoie

the configuration for the backend.

Type renvoyé

BackendConfiguration

name()[source]

Return the backend name.

Renvoie

the name of the backend.

Type renvoyé

str

properties()[source]

Return the backend properties.

Renvoie

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

Type renvoyé

BackendProperties

provider()[source]

Return the backend Provider.

Renvoie

the Provider responsible for the backend.

Type renvoyé

BaseProvider

abstract run(qobj)[source]

Run a Qobj on the the backend.

Paramètres

qobj (Qobj) – the Qobj to be executed.

status()[source]

Return the backend status.

Renvoie

the status of the backend.

Type renvoyé

BackendStatus

version()[source]

Return the backend version.

Renvoie

the X.X.X version of the backend.

Type renvoyé

str