Japanese
言語
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.ibmq.managed.managedjob のソースコード

# This code is part of Qiskit.
#
# (C) Copyright IBM 2019, 2020.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.

"""Job managed by the Job Manager."""

import warnings
import logging
from typing import List, Optional, Union
from concurrent.futures import ThreadPoolExecutor
from threading import Lock

from qiskit.providers.ibmq import IBMQBackend
from qiskit.qobj import QasmQobj, PulseQobj
from qiskit.result import Result
from qiskit.providers.jobstatus import JobStatus
from qiskit.providers.exceptions import JobError
from qiskit.providers.ibmq.apiconstants import ApiJobShareLevel, API_JOB_FINAL_STATES

from ..job.ibmqjob import IBMQJob
from ..job.exceptions import IBMQJobTimeoutError
from ..exceptions import IBMQBackendJobLimitError

logger = logging.getLogger(__name__)


[ドキュメント]class ManagedJob: """Job managed by the Job Manager."""
[ドキュメント] def __init__( self, start_index: int, experiments_count: int, job: Optional[IBMQJob] = None ): """ManagedJob constructor. Args: start_index: Starting index of the experiment set. experiments_count: Number of experiments. job: Job to be managed, or ``None`` if not already known. """ self.start_index = start_index self.end_index = start_index + experiments_count - 1 self.future = None # Properties that may be populated by the future. self.job = job # type: Optional[IBMQJob] self.submit_error = None # type: Optional[Exception]
[ドキュメント] def submit( self, qobj: Union[QasmQobj, PulseQobj], job_name: str, backend: IBMQBackend, executor: ThreadPoolExecutor, submit_lock: Lock, job_share_level: ApiJobShareLevel, job_tags: Optional[List[str]] = None ) -> None: """Submit the job. Args: qobj: Qobj to run. job_name: Name of the job. backend: Backend to execute the experiments on. executor: The thread pool used to submit the job. submit_lock: Lock used to synchronize job submission. job_share_level: Job share level. job_tags: Tags to be assigned to the job. """ # Submit the job in its own future. logger.debug("Submitting job %s in future", job_name) self.future = executor.submit( self._async_submit, qobj=qobj, job_name=job_name, backend=backend, submit_lock=submit_lock, job_share_level=job_share_level, job_tags=job_tags) logger.debug("Job %s future obtained", job_name)
def _async_submit( self, qobj: Union[QasmQobj, PulseQobj], job_name: str, backend: IBMQBackend, submit_lock: Lock, job_share_level: ApiJobShareLevel, job_tags: Optional[List[str]] = None ) -> None: """Run a Qobj asynchronously and populate instance attributes. Args: qobj: Qobj to run. job_name: Name of the job. backend: Backend to execute the experiments on. submit_lock: Lock used to synchronize job submission. job_share_level: Job share level. job_tags: Tags to be assigned to the job. """ # pylint: disable=missing-raises-doc logger.debug("Job %s waiting for submit lock.", job_name) submit_lock.acquire() logger.debug("Job %s got the submit lock.", job_name) try: while self.job is None: try: self.job = backend.run( qobj=qobj, job_name=job_name, job_share_level=job_share_level.value, job_tags=job_tags) except IBMQBackendJobLimitError: final_states = [state.value for state in API_JOB_FINAL_STATES] oldest_running = backend.jobs(limit=1, descending=False, db_filter={"status": {"nin": final_states}}) if oldest_running: oldest_running = oldest_running[0] logger.warning("Job limit reached, waiting for job %s to finish " "before submitting the next one.", oldest_running.job_id()) try: oldest_running.wait_for_final_state(timeout=300) except Exception as err: # pylint: disable=broad-except # Don't kill the submit if unable to wait for old job. logger.debug("An error occurred while waiting for " "job %s to finish: %s", oldest_running.job_id(), err) except Exception as err: # pylint: disable=broad-except warnings.warn("Unable to submit job for experiments {}-{}: {}".format( self.start_index, self.end_index, err)) self.submit_error = err finally: submit_lock.release() logger.debug("Job %s released the submit lock.", job_name)
[ドキュメント] def status(self) -> Optional[JobStatus]: """Query the server for job status. Returns: Current job status, or ``None`` if an error occurred. """ if self.submit_error is not None: return None if self.job is None: # Job not yet submitted return JobStatus.INITIALIZING try: return self.job.status() except JobError as err: warnings.warn( "Unable to retrieve job status for experiments {}-{}, job ID={}: {} ".format( self.start_index, self.end_index, self.job.job_id(), err)) return None
[ドキュメント] def result( self, timeout: Optional[float] = None, partial: bool = False, refresh: bool = False ) -> Optional[Result]: """Return the result of the job. Args: timeout: Number of seconds to wait for job. partial: If ``True``, attempt to retrieve partial job results. refresh: If ``True``, re-query the server for the result. Otherwise return the cached value. Returns: Job result or ``None`` if result could not be retrieved. Raises: IBMQJobTimeoutError: If the job does not return results before a specified timeout. """ result = None if self.job is not None: try: result = self.job.result(timeout=timeout, partial=partial, refresh=refresh) except IBMQJobTimeoutError: raise except JobError as err: warnings.warn( "Unable to retrieve job result for experiments {}-{}, job ID={}: {} ".format( self.start_index, self.end_index, self.job.job_id(), err)) return result
[ドキュメント] def error_message(self) -> Optional[str]: """Provide details about the reason of failure. Returns: An error report if the job failed or ``None`` otherwise. """ if self.job is None: return None try: return self.job.error_message() except JobError: return "Unknown error."
[ドキュメント] def cancel(self) -> None: """Attempt to cancel the job.""" cancelled = False cancel_error = "Unknown error" try: cancelled = self.job.cancel() except JobError as err: cancel_error = str(err) if not cancelled: logger.warning("Unable to cancel job %s for experiments %d-%d: %s", self.job.job_id(), self.start_index, self.end_index, cancel_error)
[ドキュメント] def qobj(self) -> Optional[Union[QasmQobj, PulseQobj]]: """Return the Qobj for this job. Returns: The Qobj for this job or ``None`` if the Qobj could not be retrieved. """ if self.job is None: return None try: return self.job.qobj() except JobError as err: warnings.warn( "Unable to retrieve qobj for experiments {}-{}, job ID={}: {} ".format( self.start_index, self.end_index, self.job.job_id(), err)) return None

© Copyright 2020, Qiskit Development Team. 最終更新: 2021/06/04

Built with Sphinx using a theme provided by Read the Docs.