qiskit.providers.ibmq.job.IBMQJob¶
-
class
IBMQJob
(backend, api_client, job_id, creation_date, status, kind=None, name=None, time_per_step=None, result=None, qobj=None, error=None, tags=None, run_mode=None, share_level=None, client_info=None, experiment_id=None, **kwargs)[código fonte]¶ Representation of a job that executes on an IBM Quantum Experience backend.
The job may be executed on a simulator or a real device. A new
IBMQJob
instance is returned when you callIBMQBackend.run()
to submit a job to a particular backend.If the job is successfully submitted, you can inspect the job’s status by calling
status()
. Job status can be one of theJobStatus
members. For example:from qiskit.providers.jobstatus import JobStatus job = backend.run(...) try: job_status = job.status() # Query the backend server for job status. if job_status is JobStatus.RUNNING: print("The job is still running") except IBMQJobApiError as ex: print("Something wrong happened!: {}".format(ex))
Nota
An error may occur when querying the remote server to get job information. The most common errors are temporary network failures and server errors, in which case an
IBMQJobApiError
is raised. These errors usually clear quickly, so retrying the operation is likely to succeed.Some of the methods in this class are blocking, which means control may not be returned immediately.
result()
is an example of a blocking method:job = backend.run(...) try: job_result = job.result() # It will block until the job finishes. print("The job finished with result {}".format(job_result)) except JobError as ex: print("Something wrong happened!: {}".format(ex))
Job information retrieved from the server is attached to the
IBMQJob
instance as attributes. Given that Qiskit and the server can be updated independently, some of these attributes might be deprecated or experimental. Supported attributes can be retrieved via methods. For example, you can usecreation_date()
to retrieve the job creation date, which is a supported attribute.IBMQJob constructor.
- Parâmetros
backend (
IBMQBackend
) – The backend instance used to run this job.api_client (
AccountClient
) – Object for connecting to the server.job_id (
str
) – Job ID.creation_date (
str
) – Job creation date.status (
str
) – Job status returned by the server.kind (
Optional
[str
]) – Job type.name (
Optional
[str
]) – Job name.time_per_step (
Optional
[dict
]) – Time spent for each processing step.result (
Optional
[dict
]) – Job result.qobj (
Union
[dict
,QasmQobj
,PulseQobj
,None
]) – Qobj for this job.error (
Optional
[dict
]) – Job error.tags (
Optional
[List
[str
]]) – Job tags.run_mode (
Optional
[str
]) – Scheduling mode the job runs in.share_level (
Optional
[str
]) – Level the job can be shared with.client_info (
Optional
[Dict
[str
,str
]]) – Client version.experiment_id (
Optional
[str
]) – ID of the experiment this job is part of.kwargs (
Any
) – Additional job attributes.
-
__init__
(backend, api_client, job_id, creation_date, status, kind=None, name=None, time_per_step=None, result=None, qobj=None, error=None, tags=None, run_mode=None, share_level=None, client_info=None, experiment_id=None, **kwargs)[código fonte]¶ IBMQJob constructor.
- Parâmetros
backend (
IBMQBackend
) – The backend instance used to run this job.api_client (
AccountClient
) – Object for connecting to the server.job_id (
str
) – Job ID.creation_date (
str
) – Job creation date.status (
str
) – Job status returned by the server.kind (
Optional
[str
]) – Job type.name (
Optional
[str
]) – Job name.time_per_step (
Optional
[dict
]) – Time spent for each processing step.result (
Optional
[dict
]) – Job result.qobj (
Union
[dict
,QasmQobj
,PulseQobj
,None
]) – Qobj for this job.error (
Optional
[dict
]) – Job error.tags (
Optional
[List
[str
]]) – Job tags.run_mode (
Optional
[str
]) – Scheduling mode the job runs in.share_level (
Optional
[str
]) – Level the job can be shared with.client_info (
Optional
[Dict
[str
,str
]]) – Client version.experiment_id (
Optional
[str
]) – ID of the experiment this job is part of.kwargs (
Any
) – Additional job attributes.
Methods
__init__
(backend, api_client, job_id, …[, …])IBMQJob constructor.
backend
()Return the backend where this job was executed.
Return the backend configuration options used for this job.
cancel
()Attempt to cancel the job.
Return whether the job has been cancelled.
circuits
()Return the circuits or pulse schedules for this job.
Return job creation date, in local time.
done
()Return whether the job has successfully run.
Provide details about the reason of failure.
header
()Return the user header specified for this job.
Return whether the job is in a final job state such as
DONE
orERROR
.job_id
()Return the job ID assigned by the server.
name
()Return the name assigned to this job.
Return the backend properties for this job.
qobj
()Return the Qobj for this job.
Return queue information for this job.
queue_position
([refresh])Return the position of the job in the server queue.
refresh
()Obtain the latest job information from the server.
result
([timeout, wait, partial, refresh])Return the result of the job.
running
()Return whether the job is actively running.
Return the scheduling mode the job is in.
Return the share level of the job.
status
()Query the server for the latest job status.
submit
()Unsupported method.
tags
()Return the tags assigned to this job.
Return the date and time information on each step of the job processing.
update_name
(name)Update the name associated with this job.
update_tags
([replacement_tags, …])Update the tags associated with this job.
wait_for_final_state
([timeout, wait, callback])Wait until the job progresses to a final state such as
DONE
orERROR
.Attributes
Return version of the client used for this job.
Return the experiment ID.
version
-
backend
()¶ Return the backend where this job was executed.
- Tipo de retorno
Backend
-
backend_options
()[código fonte]¶ Return the backend configuration options used for this job.
Options that are not applicable to the job execution are not returned. Some but not all of the options with default values are returned. You can use
qiskit.providers.ibmq.IBMQBackend.options
to see all backend options.- Tipo de retorno
Dict
[str
,Any
]- Retorna
Backend options used for this job. An empty dictionary is returned if the options cannot be retrieved.
-
cancel
()[código fonte]¶ Attempt to cancel the job.
Nota
Depending on the state the job is in, it might be impossible to cancel the job.
- Tipo de retorno
bool
- Retorna
True
if the job is cancelled, elseFalse
.- Levanta
IBMQJobApiError – If an unexpected error occurred when communicating with the server.
-
cancelled
()¶ Return whether the job has been cancelled.
- Tipo de retorno
bool
-
circuits
()[código fonte]¶ Return the circuits or pulse schedules for this job.
- Tipo de retorno
List
[Union
[QuantumCircuit
,Schedule
]]- Retorna
The circuits or pulse schedules for this job. An empty list is returned if the circuits cannot be retrieved (for example, if the job uses an old format that is no longer supported).
-
property
client_version
¶ Return version of the client used for this job.
- Tipo de retorno
Dict
[str
,str
]- Retorna
- Client version in dictionary format, where the key is the name
of the client and the value is the version.
-
creation_date
()[código fonte]¶ Return job creation date, in local time.
- Tipo de retorno
datetime
- Retorna
The job creation date as a datetime object, in local time.
-
done
()¶ Return whether the job has successfully run.
- Tipo de retorno
bool
-
error_message
()[código fonte]¶ Provide details about the reason of failure.
- Tipo de retorno
Optional
[str
]- Retorna
An error report if the job failed or
None
otherwise.
-
property
experiment_id
¶ Return the experiment ID.
- Tipo de retorno
str
- Retorna
ID of the experiment this job is part of.
-
header
()[código fonte]¶ Return the user header specified for this job.
- Tipo de retorno
Dict
- Retorna
User header specified for this job. An empty dictionary is returned if the header cannot be retrieved.
-
in_final_state
()¶ Return whether the job is in a final job state such as
DONE
orERROR
.- Tipo de retorno
bool
-
job_id
()[código fonte]¶ Return the job ID assigned by the server.
- Tipo de retorno
str
- Retorna
Job ID.
-
name
()[código fonte]¶ Return the name assigned to this job.
- Tipo de retorno
Optional
[str
]- Retorna
Job name or
None
if no name was assigned to this job.
-
properties
()[código fonte]¶ Return the backend properties for this job.
- Tipo de retorno
Optional
[BackendProperties
]- Retorna
The backend properties used for this job, or
None
if properties are not available.- Levanta
IBMQJobApiError – If an unexpected error occurred when communicating with the server.
-
qobj
()[código fonte]¶ Return the Qobj for this job.
- Tipo de retorno
Union
[QasmQobj
,PulseQobj
,None
]- Retorna
The Qobj for this job, or
None
if the job does not have a Qobj.- Levanta
IBMQJobApiError – If an unexpected error occurred when retrieving job information from the server.
-
queue_info
()[código fonte]¶ Return queue information for this job.
The queue information may include queue position, estimated start and end time, and dynamic priorities for the hub, group, and project. See
QueueInfo
for more information.Nota
The queue information is calculated after the job enters the queue. Therefore, some or all of the information may not be immediately available, and this method may return
None
.- Tipo de retorno
Optional
[QueueInfo
]- Retorna
A
QueueInfo
instance that contains queue information for this job, orNone
if queue information is unknown or not applicable.
-
queue_position
(refresh=False)[código fonte]¶ Return the position of the job in the server queue.
Nota
The position returned is within the scope of the provider and may differ from the global queue position.
- Parâmetros
refresh (
bool
) – IfTrue
, re-query the server to get the latest value. Otherwise return the cached value.- Tipo de retorno
Optional
[int
]- Retorna
Position in the queue or
None
if position is unknown or not applicable.
-
refresh
()[código fonte]¶ Obtain the latest job information from the server.
This method may add additional attributes to this job instance, if new information becomes available.
- Levanta
IBMQJobApiError – If an unexpected error occurred when communicating with the server.
- Tipo de retorno
None
-
result
(timeout=None, wait=5, partial=False, refresh=False)[código fonte]¶ Return the result of the job.
Nota
Some IBM Quantum Experience job results can only be read once. A second attempt to query the server for the same job will fail, since the job has already been “consumed”.
The first call to this method in an
IBMQJob
instance will query the server and consume any available job results. Subsequent calls to that instance’sresult()
will also return the results, since they are cached. However, attempting to retrieve the results again in another instance or session might fail due to the job results having been consumed.Nota
When partial=True, this method will attempt to retrieve partial results of failed jobs. In this case, precaution should be taken when accessing individual experiments, as doing so might cause an exception. The
success
attribute of the returnedResult
instance can be used to verify whether it contains partial results.For example, if one of the experiments in the job failed, trying to get the counts of the unsuccessful experiment would raise an exception since there are no counts to return:
try: counts = result.get_counts("failed_experiment") except QiskitError: print("Experiment failed!")
If the job failed, you can use
error_message()
to get more information.- Parâmetros
timeout (
Optional
[float
]) – Number of seconds to wait for job.wait (
float
) – Time in seconds between queries.partial (
bool
) – IfTrue
, return partial results if possible.refresh (
bool
) – IfTrue
, re-query the server for the result. Otherwise return the cached value.
- Tipo de retorno
Result
- Retorna
Job result.
- Levanta
IBMQJobInvalidStateError – If the job was cancelled.
IBMQJobFailureError – If the job failed.
IBMQJobApiError – If an unexpected error occurred when communicating with the server.
-
running
()¶ Return whether the job is actively running.
- Tipo de retorno
bool
-
scheduling_mode
()[código fonte]¶ Return the scheduling mode the job is in.
The scheduling mode indicates how the job is scheduled to run. For example,
fairshare
indicates the job is scheduled using a fairshare algorithm.This information is only available if the job status is
RUNNING
orDONE
.- Tipo de retorno
Optional
[str
]- Retorna
The scheduling mode the job is in or
None
if the information is not available.
Return the share level of the job.
The share level is one of
global
,hub
,group
,project
, andnone
.- Tipo de retorno
str
- Retorna
The share level of the job.
-
status
()[código fonte]¶ Query the server for the latest job status.
Nota
This method is not designed to be invoked repeatedly in a loop for an extended period of time. Doing so may cause the server to reject your request. Use
wait_for_final_state()
if you want to wait for the job to finish.Nota
If the job failed, you can use
error_message()
to get more information.- Tipo de retorno
JobStatus
- Retorna
The status of the job.
- Levanta
IBMQJobApiError – If an unexpected error occurred when communicating with the server.
-
submit
()[código fonte]¶ Unsupported method.
Nota
This method is not supported, please use
run()
to submit a job.- Levanta
NotImplementedError – Upon invocation.
- Tipo de retorno
None
Return the tags assigned to this job.
- Tipo de retorno
List
[str
]- Retorna
Tags assigned to this job.
-
time_per_step
()[código fonte]¶ Return the date and time information on each step of the job processing.
The output dictionary contains the date and time information on each step of the job processing, in local time. The keys of the dictionary are the names of the steps, and the values are the date and time data, as a datetime object with local timezone info. For example:
{'CREATING': datetime(2020, 2, 13, 15, 19, 25, 717000, tzinfo=tzlocal(), 'CREATED': datetime(2020, 2, 13, 15, 19, 26, 467000, tzinfo=tzlocal(), 'VALIDATING': datetime(2020, 2, 13, 15, 19, 26, 527000, tzinfo=tzlocal()}
- Tipo de retorno
Optional
[Dict
]- Retorna
Date and time information on job processing steps, in local time, or
None
if the information is not yet available.
-
update_name
(name)[código fonte]¶ Update the name associated with this job.
- Parâmetros
name (
str
) – The new name for this job.- Tipo de retorno
str
- Retorna
The new name associated with this job.
- Levanta
IBMQJobApiError – If an unexpected error occurred when communicating with the server or updating the job name.
IBMQJobInvalidStateError – If the input job name is not a string.
Update the tags associated with this job.
When multiple parameters are specified, the parameters are processed in the following order:
replacement_tags
additional_tags
removal_tags
For example, if ‘new_tag’ is specified for both additional_tags and removal_tags, then it is added and subsequently removed from the tags list, making it a “do nothing” operation.
Nota
Some tags, such as those starting with
ibmq_jobset
, are used internally by ibmq-provider and therefore cannot be modified.When removing tags, if the job does not have a specified tag, it will be ignored.
- Parâmetros
replacement_tags (
Optional
[List
[str
]]) – The tags that should replace the current tags associated with this job.additional_tags (
Optional
[List
[str
]]) – The new tags that should be added to the current tags associated with this job.removal_tags (
Optional
[List
[str
]]) – The tags that should be removed from the current tags associated with this job.
- Tipo de retorno
List
[str
]- Retorna
The new tags associated with this job.
- Levanta
IBMQJobApiError – If an unexpected error occurred when communicating with the server or updating the job tags.
IBMQJobInvalidStateError – If none of the input parameters are specified or if any of the input parameters are invalid.
-
wait_for_final_state
(timeout=None, wait=None, callback=None)[código fonte]¶ Wait until the job progresses to a final state such as
DONE
orERROR
.- Parâmetros
timeout (
Optional
[float
]) – Seconds to wait for the job. IfNone
, wait indefinitely.wait (
Optional
[float
]) – Seconds to wait between invoking the callback function. IfNone
, the callback function is invoked only if job status or queue position has changed.callback (
Optional
[Callable
]) –Callback function invoked after each querying iteration. The following positional arguments are provided to the callback function:
job_id: Job ID
job_status: Status of the job from the last query.
job: This
IBMQJob
instance.
In addition, the following keyword arguments are also provided:
- Levanta
IBMQJobTimeoutError – if the job does not reach a final state before the specified timeout.
- Tipo de retorno
None