aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetReduce
diff options
context:
space:
mode:
authorRoland Haas <roland.haas@physics.gatech.edu>2012-05-17 14:38:02 -0700
committerBarry Wardell <barry.wardell@gmail.com>2012-09-11 18:23:21 +0100
commit96bbb7e78d77f095296dbdf7a9aa442feb99228f (patch)
treebad2427d36ac2da1316936321d8152cd561164c6 /Carpet/CarpetReduce
parent94657b874846a70e0f663f809114c49b456ba2b7 (diff)
CarpetReduce: increase warning level about possible deadlock to
WARN_DEBUG from WARN_PICKY since there might still be thorns around that do so
Diffstat (limited to 'Carpet/CarpetReduce')
-rw-r--r--Carpet/CarpetReduce/src/reduce.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/CarpetReduce/src/reduce.cc b/Carpet/CarpetReduce/src/reduce.cc
index 3908646fd..f9969647b 100644
--- a/Carpet/CarpetReduce/src/reduce.cc
+++ b/Carpet/CarpetReduce/src/reduce.cc
@@ -1145,7 +1145,7 @@ namespace CarpetReduce {
if (nlc == mynlc) {
const cFunctionData * calling_function =
CCTK_ScheduleQueryCurrentFunction(cgh);
- CCTK_VWarn (CCTK_WARN_PICKY, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn (CCTK_WARN_DEBUG, __LINE__, __FILE__, CCTK_THORNSTRING,
"Reduction in local mode may lead to deadlock (if different processes own different numbers of components). Called from '%s::%s' AT %s.",
calling_function ? calling_function->thorn : "unknown",
calling_function ? calling_function->routine : "unknown",
@@ -1283,7 +1283,7 @@ namespace CarpetReduce {
if (nlc == mynlc) {
const cFunctionData * calling_function =
CCTK_ScheduleQueryCurrentFunction(cgh);
- CCTK_VWarn (CCTK_WARN_PICKY, __LINE__, __FILE__, CCTK_THORNSTRING,
+ CCTK_VWarn (CCTK_WARN_DEBUG, __LINE__, __FILE__, CCTK_THORNSTRING,
"Reduction in local mode may lead to deadlock (if different processes own different numbers of components). Called from '%s::%s' AT %s.",
calling_function ? calling_function->thorn : "unknown",
calling_function ? calling_function->routine : "unknown",