X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/89a6b1960c468f7d64b9c9c3e7f8256d59774b8e..ab1a94e98438ed2d29533aca9e613d667237c3d0:/src/smpi/smpi_dvfs.cpp diff --git a/src/smpi/smpi_dvfs.cpp b/src/smpi/smpi_dvfs.cpp index 1ab64e03a2..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(); } /** @@ -50,11 +50,7 @@ void smpi_set_host_pstate(int pstate_index) { sg_host_set_pstate(SIMIX_host_self(), pstate_index); } -/** - * \brief Gets the pstate at which the processor currently running - * - * \param pstate_index pstate to switch to - */ +/** @brief Gets the pstate at which the processor currently running */ int smpi_get_host_pstate() { return sg_host_get_pstate(SIMIX_host_self()); }