From: Christian Heinrich Date: Mon, 5 Feb 2018 13:51:49 +0000 (+0100) Subject: [DVFS] Rephrase debug statements X-Git-Tag: v3.19~257 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ec28fefa54873e9f38f7005c4ab6d0028f69fa99 [DVFS] Rephrase debug statements --- diff --git a/src/surf/plugins/host_dvfs.cpp b/src/surf/plugins/host_dvfs.cpp index 589dfede01..b94c995d40 100644 --- a/src/surf/plugins/host_dvfs.cpp +++ b/src/surf/plugins/host_dvfs.cpp @@ -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); } } }