From ec28fefa54873e9f38f7005c4ab6d0028f69fa99 Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Mon, 5 Feb 2018 14:51:49 +0100 Subject: [PATCH] [DVFS] Rephrase debug statements --- src/surf/plugins/host_dvfs.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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); } } } -- 2.20.1