Fixing setting of GPUs to 2 when 1 or less GPUs on system for unit tests (#481)

[ROCm/rccl commit: bbbb35ceec]
This commit is contained in:
Stanley Tsang
2021-12-09 10:04:31 -08:00
committed by GitHub
parent 7406aed9c9
commit 8d6cfcbf58
+1 -1
View File
@@ -70,7 +70,7 @@ if(BUILD_TESTS)
find_program( rocminfo_executable rocminfo )
execute_process(COMMAND bash "-c" "${rocminfo_executable} | grep 'Device Type' | grep GPU | wc -l | tr -d '\n'" OUTPUT_VARIABLE gtest_num_gpus)
if(${gtest_num_gpus} MATCHES "0" OR ${gtest_num_gpus} MATCHES "1")
set(gtest_num_gpus,"2")
set(gtest_num_gpus "2")
endif()
target_compile_options(UnitTests PRIVATE -DGTESTS_NUM_GPUS=${gtest_num_gpus})