Skip to content

Commit

Permalink
Fix condition to skip CUDA 11.2 Python async benchmarks in CI
Browse files Browse the repository at this point in the history
The condition set in rapidsai#37 was wrong
and this change fixes it.
  • Loading branch information
pentschev committed May 2, 2023
1 parent 4acbcf2 commit eb8f56e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ run_py_benchmark ucxx-core thread 0 0
run_py_benchmark ucxx-core thread 1 0 0 1 0

for nbuf in 1 8; do
# run_py_benchmark BACKEND PROGRESS_MODE ASYNCIO_WAIT ENABLE_DELAYED_SUBMISSION ENABLE_PYTHON_FUTURE NBUFFERS SLOW
if [[ $RAPIDS_CUDA_VERSION != "11.2.*" ]]; then
if [[ ! $RAPIDS_CUDA_VERSION =~ 11.2.* ]]; then
# run_py_benchmark BACKEND PROGRESS_MODE ASYNCIO_WAIT ENABLE_DELAYED_SUBMISSION ENABLE_PYTHON_FUTURE NBUFFERS SLOW
run_py_benchmark ucxx-async thread 0 0 0 ${nbuf} 0
run_py_benchmark ucxx-async thread 0 0 1 ${nbuf} 0
run_py_benchmark ucxx-async thread 0 1 0 ${nbuf} 0
Expand Down

0 comments on commit eb8f56e

Please sign in to comment.