Skip to content

Commit

Permalink
removing rank_16 and trying to removing JOB_COUNT
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeidler3 committed Oct 31, 2024
1 parent d18b588 commit 9fdc27d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci_stub/onyx_job_test_cpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ env | grep JOB_COUNT

JOB_COUNT=1

cd ./KORC/build_cpu && ctest -j ${JOB_COUNT:-1} --output-on-failure
cd ./KORC/build_cpu && ctest -j --output-on-failure

2 changes: 1 addition & 1 deletion ci_stub/onyx_job_test_gpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JOB_COUNT=1

pushd ./KORC/build_gpu >/dev/null

ctest -j ${JOB_COUNT:-1} --output-on-failure
ctest -j --output-on-failure

pushd ./bin >/dev/null

Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ configure_file(${CMAKE_SOURCE_DIR}/test/mars/korc_mars.sh.in ${CMAKE_BINARY_DIR}
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/bin/egyro_test)
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/bin/mars_test)

foreach(RANK IN ITEMS 1 2 4 8 16)
foreach(RANK IN ITEMS 1 2 4 8) #16)
if(${RANK} LESS_EQUAL ${MPIEXEC_MAX_NUMPROCS})
add_test (NAME egyro_test_${RANK}
COMMAND ${CMAKE_BINARY_DIR}/egyro_test/korc_egyro.sh ${RANK}
Expand Down

0 comments on commit 9fdc27d

Please sign in to comment.