Skip to content

Commit

Permalink
Fix MPI test failures (#322)
Browse files Browse the repository at this point in the history
The CI test machines only have 2 MPI slots. MPI tests were failing
when requesting 4 CPUs. Update these tests to request 2 CPUs.
  • Loading branch information
benrichard-amd authored Jan 9, 2024
1 parent 518c83e commit aeb346b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/omnitrace-mpi-tests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ omnitrace_add_test(
NAME "mpi"
TARGET mpi-example
MPI ON
NUM_PROCS 4
NUM_PROCS 2
REWRITE_ARGS
-e
-v
Expand All @@ -37,7 +37,7 @@ omnitrace_add_test(
NAME "mpi-flat-mpip"
TARGET mpi-example
MPI ON
NUM_PROCS 4
NUM_PROCS 2
LABELS "mpip"
REWRITE_ARGS
-e
Expand All @@ -60,7 +60,7 @@ omnitrace_add_test(
NAME "mpi-flat"
TARGET mpi-example
MPI ON
NUM_PROCS 4
NUM_PROCS 2
LABELS "mpip"
REWRITE_ARGS
-e
Expand Down

0 comments on commit aeb346b

Please sign in to comment.