Source code for deephyper.evaluator._serial

import asyncio
import functools
from inspect import iscoroutinefunction
from typing import Callable, Hashable

from deephyper.evaluator import Evaluator, Job, JobStatus
from deephyper.evaluator.storage import Storage


[docs] class SerialEvaluator(Evaluator): """This evaluator uses Python AsyncIO as backend. .. warning:: This evaluator is interesting with I/O intensive tasks, do not expect a speed-up with compute intensive tasks. Args: run_function (callable): ``async`` function to be executed by the ``Evaluator``. num_workers (int, optional): Number of parallel Ray-workers used to compute the ``run_function``. Defaults to ``1``. callbacks (list, optional): A list of callbacks to trigger custom actions at the creation or completion of jobs. Defaults to ``None``. run_function_kwargs (dict, optional): Static keyword arguments to pass to the ``run_function`` when executed. storage (Storage, optional): Storage used by the evaluator. Defaults to ``MemoryStorage``. search_id (Hashable, optional): The id of the search to use in the corresponding storage. If ``None`` it will create a new search identifier when initializing the search. """ def __init__( self, run_function: Callable, num_workers: int = 1, callbacks: list = None, run_function_kwargs: dict = None, storage: Storage = None, search_id: Hashable = None, ): if not iscoroutinefunction(run_function): raise ValueError( f"The {run_function=} passed to {type(self).__name__} is not a coroutine " "(e.g., with 'async def' in its definition) either make it a coroutine function " "or use the ThreadEvaluator instead." ) super().__init__( run_function=run_function, num_workers=num_workers, callbacks=callbacks, run_function_kwargs=run_function_kwargs, storage=storage, search_id=search_id, )
[docs] async def execute(self, job: Job) -> Job: async with self.sem: job.status = JobStatus.RUNNING running_job = job.create_running_job(self._stopper) run_function = functools.partial( job.run_function, running_job, **self.run_function_kwargs ) run_function_future = self.loop.create_task(run_function()) if self.timeout is not None: try: output = await asyncio.wait_for( asyncio.shield(run_function_future), timeout=self.time_left ) except asyncio.TimeoutError: job.status = JobStatus.CANCELLING output = await run_function_future job.status = JobStatus.CANCELLED else: output = await run_function_future return self._update_job_when_done(job, output)