Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[DVFS] Rephrase debug statements
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Mon, 5 Feb 2018 13:51:49 +0000 (14:51 +0100)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Mon, 5 Feb 2018 15:50:43 +0000 (16:50 +0100)
src/surf/plugins/host_dvfs.cpp

index 589dfed..b94c995 100644 (file)
@@ -112,7 +112,10 @@ public:
     if (load > freq_up_threshold) {
       if (pstate != 0) {
         host->setPstate(pstate - 1);
-        XBT_INFO("Reducing pstate to %d", pstate - 1);
+        XBT_INFO("Increasing performance to pstate %d", pstate - 1);
+      }
+      else {
+        XBT_DEBUG("Cannot speed up even more, already in slowest pstate %d", pstate);
       }
     }
 
@@ -120,7 +123,10 @@ public:
       int max_pstate = host->getPstatesCount() - 1;
       if (pstate != max_pstate) { // Are we in the slowest pstate already?
         host->setPstate(pstate + 1);
-        XBT_INFO("Increasing pstate to %d", pstate + 1);
+        XBT_INFO("Slowing down to pstate %d", pstate + 1);
+      }
+      else {
+        XBT_DEBUG("Cannot slow down even more, already in slowest pstate %d", pstate);
       }
     }
   }