We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f937f2 commit 366afbcCopy full SHA for 366afbc
src/agentlab/experiments/launch_exp.py
@@ -11,7 +11,7 @@ def run_experiments(
11
n_jobs,
12
exp_args_list: list[ExpArgs],
13
study_dir,
14
- parallel_backend="joblib",
+ parallel_backend="ray",
15
avg_step_timeout=60,
16
):
17
"""Run a list of ExpArgs in parallel.
@@ -78,7 +78,7 @@ def run_experiments(
78
elif parallel_backend == "ray":
79
from agentlab.experiments.graph_execution_ray import execute_task_graph, ray
80
81
- context = ray.init(num_cpus=n_jobs, dashboard_host="127.0.0.1", dashboard_port=8265)
+ ray.init(num_cpus=n_jobs)
82
try:
83
execute_task_graph(exp_args_list, avg_step_timeout=avg_step_timeout)
84
finally:
0 commit comments