X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c6227e2e346de7aee89834fa87993cbe3319e20f..21ef28ed4570559471a82d7799557741946b0420:/src/surf/plugins/host_dvfs.cpp?ds=sidebyside diff --git a/src/surf/plugins/host_dvfs.cpp b/src/surf/plugins/host_dvfs.cpp index d74cc16caa..2f6a71839d 100644 --- a/src/surf/plugins/host_dvfs.cpp +++ b/src/surf/plugins/host_dvfs.cpp @@ -86,7 +86,7 @@ public: } else { /* The actual implementation uses a formula here: (See Kernel file cpufreq_ondemand.c:158) * - * freq_next = min_f + load * (max_f - min_f) / 100; + * freq_next = min_f + load * (max_f - min_f) / 100 * * So they assume that frequency increases by 100 MHz. We will just use * lowest_pstate - load*pstatesCount();