From 71adb27ab92ccb894e1e977938edbbb8a7f35cfd Mon Sep 17 00:00:00 2001 From: Vivek Kale <11766050+vlkale@users.noreply.github.com> Date: Wed, 10 Apr 2024 16:42:10 -0700 Subject: [PATCH] CMakeLists.txt: fix sampler skip rate --- tests/sampler/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/sampler/CMakeLists.txt b/tests/sampler/CMakeLists.txt index 376ae24c3..955f639fe 100644 --- a/tests/sampler/CMakeLists.txt +++ b/tests/sampler/CMakeLists.txt @@ -3,7 +3,7 @@ kp_add_executable_and_test( SOURCE_FILE test_parfor.cpp KOKKOS_TOOLS_LIBS kp_kokkos_sampler kp_kernel_logger KOKKOS_TOOLS_SAMPLER_VERBOSE 2 - KOKKOS_TOOLS_SAMPLER_SKIP 50 + KOKKOS_TOOLS_SAMPLER_SKIP 5 KOKKOS_TOOLS_GLOBALFENCES 1 ) @@ -12,7 +12,7 @@ kp_add_executable_and_test( SOURCE_FILE test_parscan.cpp KOKKOS_TOOLS_LIBS kp_kokkos_sampler kp_kernel_logger KOKKOS_TOOLS_SAMPLER_VERBOSE 2 - KOKKOS_TOOLS_SAMPLER_SKIP 50 + KOKKOS_TOOLS_SAMPLER_SKIP 5 KOKKOS_TOOLS_GLOBALFENCES 1 ) @@ -21,6 +21,6 @@ kp_add_executable_and_test( SOURCE_FILE test_parreduce.cpp KOKKOS_TOOLS_LIBS kp_kokkos_sampler kp_kernel_logger KOKKOS_TOOLS_SAMPLER_VERBOSE 2 - KOKKOS_TOOLS_SAMPLER_SKIP 50 + KOKKOS_TOOLS_SAMPLER_SKIP 5 KOKKOS_TOOLS_GLOBALFENCES 1 )