Korean
언어
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.BaseBackend

class BaseBackend(configuration, provider=None)[소스]

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.

매개변수
예외

QiskitError – if an error occurred when instantiating the backend.

abstract __init__(configuration, provider=None)[소스]

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.

매개변수
예외

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()[소스]

Return the backend configuration.

반환값

the configuration for the backend.

반환 형식

BackendConfiguration

name()[소스]

Return the backend name.

반환값

the name of the backend.

반환 형식

str

properties()[소스]

Return the backend properties.

반환값

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

반환 형식

BackendProperties

provider()[소스]

Return the backend Provider.

반환값

the Provider responsible for the backend.

반환 형식

BaseProvider

abstract run(qobj)[소스]

Run a Qobj on the the backend.

매개변수

qobj (Qobj) – the Qobj to be executed.

status()[소스]

Return the backend status.

반환값

the status of the backend.

반환 형식

BackendStatus

version()[소스]

Return the backend version.

반환값

the X.X.X version of the backend.

반환 형식

str