mirror of
https://github.com/wassname/ray.git
synced 2026-07-05 19:41:13 +08:00
f75b51d178
* Register Common.error with local scheduler extension module. * Add test.
13 lines
553 B
Python
13 lines
553 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from ray.core.src.local_scheduler.liblocal_scheduler_library import (
|
|
Task, LocalSchedulerClient, ObjectID, check_simple_value, task_from_string,
|
|
task_to_string, _config, common_error)
|
|
from .local_scheduler_services import start_local_scheduler
|
|
|
|
__all__ = ["Task", "LocalSchedulerClient", "ObjectID", "check_simple_value",
|
|
"task_from_string", "task_to_string", "start_local_scheduler",
|
|
"_config", "common_error"]
|