From 0707fb4707601d230769b909b252b546bec824f2 Mon Sep 17 00:00:00 2001 From: Chuck Hastings <45364586+ChuckHastings@users.noreply.github.com> Date: Wed, 28 Aug 2024 19:41:43 -0400 Subject: [PATCH] Negative Sampling test needs whole GPU (#4636) Increase negative sampling test percentage to 100, allowing it to have an entire GPU. This should correct intermittent C++ unit test failures in CI. Authors: - Chuck Hastings (https://github.com/ChuckHastings) Approvers: - Seunghwa Kang (https://github.com/seunghwak) URL: https://github.com/rapidsai/cugraph/pull/4636 --- cpp/tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/tests/CMakeLists.txt b/cpp/tests/CMakeLists.txt index da31f498de1..3c3a3650491 100644 --- a/cpp/tests/CMakeLists.txt +++ b/cpp/tests/CMakeLists.txt @@ -490,7 +490,7 @@ ConfigureTest(SAMPLING_POST_PROCESSING_TEST sampling/sampling_post_processing_te ################################################################################################### # - NEGATIVE SAMPLING tests -------------------------------------------------------------------- -ConfigureTest(NEGATIVE_SAMPLING_TEST sampling/negative_sampling.cpp) +ConfigureTest(NEGATIVE_SAMPLING_TEST sampling/negative_sampling.cpp PERCENT 100) ################################################################################################### # - Renumber tests --------------------------------------------------------------------------------