aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-02-07 09:55:22 -0500
committerErik Schnetter <schnetter@gmail.com>2013-02-08 08:58:22 -0500
commit39e022a028b734de20e45fa52256e081c44f28b3 (patch)
treeb992d82e7e9beda737f9a1e8bf0e0c858c83e712 /Carpet/Carpet
parentc290150324c2dd50e98cd6e35bbcd733e6f3b5a4 (diff)
Carpet: Beautify screen output
Diffstat (limited to 'Carpet/Carpet')
-rw-r--r--Carpet/Carpet/src/SetupGH.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/Carpet/Carpet/src/SetupGH.cc b/Carpet/Carpet/src/SetupGH.cc
index 3135a49b2..842f8b4f1 100644
--- a/Carpet/Carpet/src/SetupGH.cc
+++ b/Carpet/Carpet/src/SetupGH.cc
@@ -242,7 +242,7 @@ namespace Carpet {
"OpenMP is enabled");
if (not OMP_NUM_THREADS and num_threads == -1) {
CCTK_VWarn (CCTK_WARN_COMPLAIN, __LINE__, __FILE__, CCTK_THORNSTRING,
- "Although OpenMP is enabled, neither the environment variable OMP_NUM_THREADS nor the parameter Carpet::num_threads are set. A system-specific default value is used instead.");
+ "Although OpenMP is enabled, neither the environment variable OMP_NUM_THREADS nor the parameter Carpet::num_threads are set. A system-specific default value is used instead.");
}
CCTK_VInfo (CCTK_THORNSTRING,
"This process contains %d threads, this is thread %d", mynthreads, dist::thread_num());
@@ -252,7 +252,7 @@ namespace Carpet {
} else {
if (cactus_num_threads != mynthreads) {
CCTK_VWarn (CCTK_WARN_ALERT, __LINE__, __FILE__, CCTK_THORNSTRING,
- "The environment variable CACTUS_NUM_THREADS is set to %d, but there are %d threads on this processes. This may indicate a severe problem with the OpenMP startup mechanism.",
+ "The environment variable CACTUS_NUM_THREADS is set to %d, but there are %d threads on this process. This may indicate a severe problem with the OpenMP startup mechanism.",
cactus_num_threads, mynthreads);
}
}
@@ -269,11 +269,11 @@ namespace Carpet {
int const omp_num_threads = OMP_NUM_THREADS ? atoi (OMP_NUM_THREADS) : 0;
if (omp_num_threads > 0) {
CCTK_VWarn (CCTK_WARN_ALERT, __LINE__, __FILE__, CCTK_THORNSTRING,
- "Although OpenMP is disabled, the environment variable OMP_NUM_THREADS is set to %d. It will be ignored.", omp_num_threads);
+ "Although OpenMP is disabled, the environment variable OMP_NUM_THREADS is set to %d. It will be ignored.", omp_num_threads);
}
if (num_threads > 0) {
CCTK_VWarn (CCTK_WARN_ALERT, __LINE__, __FILE__, CCTK_THORNSTRING,
- "Although OpenMP is disabled, the parameter Carpet::num_threads is set to %d. It will be ignored.", num_threads);
+ "Although OpenMP is disabled, the parameter Carpet::num_threads is set to %d. It will be ignored.", num_threads);
}
if (CACTUS_NUM_THREADS and cactus_num_threads != mynthreads) {
CCTK_VWarn (CCTK_WARN_ALERT, __LINE__, __FILE__, CCTK_THORNSTRING,