Skip to content

Commit

Permalink
[Nightly] fix microbenchmark scripts (ray-project#26947)
Browse files Browse the repository at this point in the history
Signed-off-by: scv119 [email protected]

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"
  • Loading branch information
scv119 authored Jul 24, 2022
1 parent 0c16619 commit acbab51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release/release_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit acbab51

Please sign in to comment.