qiskit.providers.BaseBackend¶
-
class
BaseBackend
(configuration, provider=None)[Quellcode]¶ 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.
- Parameter
configuration (BackendConfiguration) – backend configuration
provider (BaseProvider) – provider responsible for this backend
- Verursacht
QiskitError – if an error occurred when instantiating the backend.
-
abstract
__init__
(configuration, provider=None)[Quellcode]¶ 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.
- Parameter
configuration (BackendConfiguration) – backend configuration
provider (BaseProvider) – provider responsible for this backend
- Verursacht
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
()[Quellcode]¶ Return the backend configuration.
- Rückgabe
the configuration for the backend.
- Rückgabetyp
-
name
()[Quellcode]¶ Return the backend name.
- Rückgabe
the name of the backend.
- Rückgabetyp
str
-
properties
()[Quellcode]¶ Return the backend properties.
- Rückgabe
the configuration for the backend. If the backend does not support properties, it returns
None
.- Rückgabetyp
-
provider
()[Quellcode]¶ Return the backend Provider.
- Rückgabe
the Provider responsible for the backend.
- Rückgabetyp
-
abstract
run
(qobj)[Quellcode]¶ Run a Qobj on the the backend.
- Parameter
qobj (Qobj) – the Qobj to be executed.
-
status
()[Quellcode]¶ Return the backend status.
- Rückgabe
the status of the backend.
- Rückgabetyp
-
version
()[Quellcode]¶ Return the backend version.
- Rückgabe
the X.X.X version of the backend.
- Rückgabetyp
str