File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -60,15 +60,19 @@ run_py_benchmark() {
60
60
61
61
CMD_LINE=" UCXPY_ENABLE_DELAYED_SUBMISSION=${ENABLE_DELAYED_SUBMISSION} UCXPY_ENABLE_PYTHON_FUTURE=${ENABLE_PYTHON_FUTURE} timeout 2m python -m ucxx.benchmarks.send_recv --backend ${BACKEND} -o cupy --reuse-alloc -n 8MiB --n-buffers $N_BUFFERS --progress-mode ${PROGRESS_MODE} ${ASYNCIO_WAIT} "
62
62
63
+ # Workaround for https://github.com/rapidsai/ucxx/issues/15
64
+ CMD_LINE=" UCX_KEEPALIVE_INTERVAL=1ms ${CMD_LINE} "
65
+
63
66
rapids-logger " Running: ${CMD_LINE} "
64
67
if [ $SLOW -ne 0 ]; then
65
68
rapids-logger " SLOW BENCHMARK: it may seem like a deadlock but will eventually complete."
66
69
fi
67
- UCXPY_ENABLE_DELAYED_SUBMISSION=${ENABLE_DELAYED_SUBMISSION} UCXPY_ENABLE_PYTHON_FUTURE=${ENABLE_PYTHON_FUTURE} timeout 2m python -m ucxx.benchmarks.send_recv --backend ${BACKEND} -o cupy --reuse-alloc -n 8MiB --n-buffers $N_BUFFERS --progress-mode ${PROGRESS_MODE} ${ASYNCIO_WAIT}
70
+
71
+ UCX_KEEPALIVE_INTERVAL=1ms UCXPY_ENABLE_DELAYED_SUBMISSION=${ENABLE_DELAYED_SUBMISSION} UCXPY_ENABLE_PYTHON_FUTURE=${ENABLE_PYTHON_FUTURE} timeout 2m python -m ucxx.benchmarks.send_recv --backend ${BACKEND} -o cupy --reuse-alloc -n 8MiB --n-buffers $N_BUFFERS --progress-mode ${PROGRESS_MODE} ${ASYNCIO_WAIT}
68
72
}
69
73
70
74
rapids-logger " Downloading artifacts from previous jobs"
71
- CPP_CHANNEL=$( rapids-download-conda-from-s3 cpp )
75
+ CPP_CHANNEL=${RAPIDS_CONDA_BLD_OUTPUT_DIR}
72
76
73
77
rapids-mamba-retry install \
74
78
--channel " ${CPP_CHANNEL} " \
You can’t perform that action at this time.
0 commit comments