Skip to content

Commit

Permalink
Test RMM memory get/put with protov2 only
Browse files Browse the repository at this point in the history
  • Loading branch information
pentschev committed Jul 16, 2024
1 parent cfdb2ee commit c1b720c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ci/test_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,17 @@ run_cpp_tests() {
RUNTIME_PATH=${CONDA_PREFIX:-./}
BINARY_PATH=${RUNTIME_PATH}/bin

CMD_LINE="timeout 10m ${BINARY_PATH}/gtests/libucxx/UCXX_TEST"
# Disable memory get/put with RMM in protov1, it always segfaults.
CMD_LINE="timeout 10m ${BINARY_PATH}/gtests/libucxx/UCXX_TEST --gtest_filter=-*RMM*Memory*"

log_command "${CMD_LINE}"
UCX_TCP_CM_REUSEADDR=y ${CMD_LINE}

# Only test memory get/put with RMM in protov2, as protov1 segfaults.
CMD_LINE="timeout 10m ${BINARY_PATH}/gtests/libucxx/UCXX_TEST --gtest_filter=*RMM*Memory*"

log_command "${CMD_LINE}"
UCX_PROTO_ENABLE=y UCX_TCP_CM_REUSEADDR=y ${CMD_LINE}
}

run_cpp_benchmark() {
Expand Down

0 comments on commit c1b720c

Please sign in to comment.