qiskit.providers.BaseBackend¶
-
class
BaseBackend
(configuration, provider=None)[código fonte]¶ 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.
- Parâmetros
configuration (BackendConfiguration) – backend configuration
provider (BaseProvider) – provider responsible for this backend
- Levanta
QiskitError – if an error occurred when instantiating the backend.
-
abstract
__init__
(configuration, 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
configuration (BackendConfiguration) – backend configuration
provider (BaseProvider) – provider responsible for this backend
- Levanta
QiskitError – if an error occurred when instantiating the backend.
Methods
__init__
(configuration[, provider])Base class for backends.
Return the backend configuration.
name
()Return the backend name.
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
()[código fonte]¶ Return the backend configuration.
- Retorna
the configuration for the backend.
- Tipo de retorno
-
name
()[código fonte]¶ Return the backend name.
- Retorna
the name of the backend.
- Tipo de retorno
str
-
properties
()[código fonte]¶ Return the backend properties.
- Retorna
the configuration for the backend. If the backend does not support properties, it returns
None
.- Tipo de retorno
-
provider
()[código fonte]¶ Return the backend Provider.
- Retorna
the Provider responsible for the backend.
- Tipo de retorno
-
abstract
run
(qobj)[código fonte]¶ Run a Qobj on the the backend.
- Parâmetros
qobj (Qobj) – the Qobj to be executed.
-
status
()[código fonte]¶ Return the backend status.
- Retorna
the status of the backend.
- Tipo de retorno
-
version
()[código fonte]¶ Return the backend version.
- Retorna
the X.X.X version of the backend.
- Tipo de retorno
str