Skip to content

Commit

Permalink
Fix condition to skip CUDA 11.2 Python async benchmarks in CI (#45)
Browse files Browse the repository at this point in the history
The condition set in #37 was wrong and this change fixes it.

Authors:
  - Peter Andreas Entschev (https://github.com/pentschev)

Approvers:
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #45
  • Loading branch information
pentschev authored May 2, 2023
1 parent 4acbcf2 commit fa70a3b
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 fa70a3b

Please sign in to comment.