Skip to main contentIBM Quantum Documentation
This page is from an old version of Qiskit SDK and does not exist in the latest version. We recommend you migrate to the latest version. See the release notes for more information.

BackendJobLimit

class BackendJobLimit(maximum_jobs, running_jobs, **kwargs)

GitHub

Bases: object

Job limit for a backend.

Represent the job limit for a backend on a specific provider. This instance is returned by the IBMQBackend.job_limit() method.

maximum_jobs

The maximum number of concurrent jobs this account is allowed to submit to this backend, with this provider.

running_jobs

The current number of active jobs on this backend, with this provider.

BackendJobLimit constructor.

Parameters

  • maximum_jobs (int) – The maximum number of concurrent jobs this account is allowed to submit to this backend, with this provider.
  • running_jobs (int) – The current number of active jobs on this backend, with this provider.
  • kwargs (Any) – Additional attributes that will be added as instance members.
Was this page helpful?
Report a bug or request content on GitHub.