From 83ce390b37dba60d8c69585f16335c31200ca331 Mon Sep 17 00:00:00 2001 From: Marc Henry de Frahan Date: Mon, 5 Aug 2024 12:27:13 -0600 Subject: [PATCH] Fix num thread omp console print --- amr-wind/utilities/console_io.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/amr-wind/utilities/console_io.cpp b/amr-wind/utilities/console_io.cpp index 34a8b84f59..bff2a9a267 100644 --- a/amr-wind/utilities/console_io.cpp +++ b/amr-wind/utilities/console_io.cpp @@ -143,8 +143,7 @@ void print_banner(MPI_Comm comm, std::ostream& out) << " OpenMP :: " #ifdef AMREX_USE_OMP << "ON (max threads = " << amrex::OpenMP::get_max_threads() - << ", num threads = " << amrex::OpenMP::get_num_threads() << ")" - << std::endl + << ")" << std::endl #else << "OFF" << std::endl #endif