qiskit.providers.ibmq.BackendJobLimit
class BackendJobLimit(maximum_jobs, running_jobs, **kwargs)
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.
__init__
__init__(maximum_jobs, running_jobs, **kwargs)
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
__init__ (maximum_jobs, running_jobs, **kwargs) | BackendJobLimit constructor. |
Was this page helpful?
Report a bug or request content on GitHub.