mirror of
https://github.com/wassname/ray.git
synced 2026-06-29 02:30:34 +08:00
Moving Local Mode to C++ (#7670)
This commit is contained in:
@@ -37,8 +37,6 @@ class RayParams:
|
||||
object IDs. The same value can be used across multiple runs of the
|
||||
same job in order to generate the object IDs in a consistent
|
||||
manner. However, the same ID should not be used for different jobs.
|
||||
local_mode (bool): True if the code should be executed serially
|
||||
without Ray. This is useful for debugging.
|
||||
redirect_worker_output: True if the stdout and stderr of worker
|
||||
processes should be redirected to files.
|
||||
redirect_output (bool): True if stdout and stderr for non-worker
|
||||
@@ -98,7 +96,6 @@ class RayParams:
|
||||
node_manager_port=None,
|
||||
node_ip_address=None,
|
||||
object_id_seed=None,
|
||||
local_mode=False,
|
||||
driver_mode=None,
|
||||
redirect_worker_output=None,
|
||||
redirect_output=None,
|
||||
@@ -134,7 +131,6 @@ class RayParams:
|
||||
self.object_manager_port = object_manager_port
|
||||
self.node_manager_port = node_manager_port
|
||||
self.node_ip_address = node_ip_address
|
||||
self.local_mode = local_mode
|
||||
self.driver_mode = driver_mode
|
||||
self.redirect_worker_output = redirect_worker_output
|
||||
self.redirect_output = redirect_output
|
||||
|
||||
Reference in New Issue
Block a user