From 275174bc8bc3b8cc1554dc6185963061b66d8ede Mon Sep 17 00:00:00 2001 From: Pranav Sivaraman <14294205+pranav-sivaraman@users.noreply.github.com> Date: Sun, 24 Sep 2023 15:02:39 -0400 Subject: [PATCH] fix: set default thread count to 1 --- kokkos/io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kokkos/io.cpp b/kokkos/io.cpp index 2bd4b5d..5447f16 100644 --- a/kokkos/io.cpp +++ b/kokkos/io.cpp @@ -230,7 +230,7 @@ Inputs read_CLI( int argc, char * argv[] ) input.simulation_method = HISTORY_BASED; // defaults to max threads on the system - input.nthreads = omp_get_num_procs(); + input.nthreads = 1; // defaults to 355 (corresponding to H-M Large benchmark) input.n_isotopes = 355;