mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00
[Nightly] fix microbenchmark scripts (#26947)
Signed-off-by: scv119 scv119@gmail.com
Why are these changes needed?
microbenchmarks failed complaining
raise ValueError(f"Malformed address: {address}")
ValueError: Malformed address:
this is due to 55a0f7b
and fix it by set RAY_ADDRESS="local"
This commit is contained in:
parent
0c16619475
commit
acbab51d3e
1 changed files with 3 additions and 3 deletions
|
@ -3413,7 +3413,7 @@
|
|||
|
||||
run:
|
||||
timeout: 1800
|
||||
script: OMP_NUM_THREADS=64 RAY_ADDRESS= python run_microbenchmark.py
|
||||
script: OMP_NUM_THREADS=64 RAY_ADDRESS=local python run_microbenchmark.py
|
||||
|
||||
|
||||
- name: microbenchmark_staging
|
||||
|
@ -3431,7 +3431,7 @@
|
|||
|
||||
run:
|
||||
timeout: 1800
|
||||
script: OMP_NUM_THREADS=64 RAY_ADDRESS= python run_microbenchmark.py
|
||||
script: OMP_NUM_THREADS=64 RAY_ADDRESS=local python run_microbenchmark.py
|
||||
|
||||
|
||||
- name: microbenchmark_38
|
||||
|
@ -3448,7 +3448,7 @@
|
|||
|
||||
run:
|
||||
timeout: 1800
|
||||
script: OMP_NUM_THREADS=64 RAY_ADDRESS= python run_microbenchmark.py
|
||||
script: OMP_NUM_THREADS=64 RAY_ADDRESS=local python run_microbenchmark.py
|
||||
|
||||
- name: dask_on_ray_10gb_sort
|
||||
group: core-daily-test
|
||||
|
|
Loading…
Add table
Reference in a new issue