Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarkauskas committed Dec 5, 2024
1 parent 15bef23 commit 8672c6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gtest/coll/test_allgatherv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ INSTANTIATE_TEST_CASE_P(
#endif
::testing::Values(1,3,8192), // count
::testing::Values(TEST_INPLACE, TEST_NO_INPLACE), // inplace
::testing::Values(false, true) // contig dst buf displacements
::testing::Bool() // contig dst buf displacements
));

class test_allgatherv_1 : public test_allgatherv,
Expand Down Expand Up @@ -292,7 +292,7 @@ INSTANTIATE_TEST_CASE_P(
#endif
::testing::Values(1,3,8192), // count
::testing::Values(TEST_INPLACE, TEST_NO_INPLACE),
::testing::Values(false, true)) // dst buf contig
::testing::Bool()) // dst buf contig
);

class test_allgatherv_alg : public test_allgatherv,
Expand Down

0 comments on commit 8672c6d

Please sign in to comment.