BackendJobLimit

class BackendJobLimit(maximum_jobs, running_jobs, **kwargs)[source]

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 current number of active jobs on 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.

Methods