X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a9c845da2c148a5e6319c698b0e539ee3351164..025dffb868b00121f2c9e270386b0ea2375620df:/src/smpi/smpi_dvfs.cpp diff --git a/src/smpi/smpi_dvfs.cpp b/src/smpi/smpi_dvfs.cpp index 5b1876e29c..e78e5b71ba 100644 --- a/src/smpi/smpi_dvfs.cpp +++ b/src/smpi/smpi_dvfs.cpp @@ -20,7 +20,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_dvfs, smpi, "Logging specific to SMPI (expe */ double smpi_get_host_power_peak_at(int pstate_index) { - return SIMIX_host_self()->powerPeakAt(pstate_index); + return SIMIX_host_self()->getPstateSpeed(pstate_index); } /** @@ -30,7 +30,7 @@ double smpi_get_host_power_peak_at(int pstate_index) */ double smpi_get_host_current_power_peak(void) { - return SIMIX_host_self()->currentPowerPeak(); + return SIMIX_host_self()->getPstateSpeedCurrent(); } /**