X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0ec122a780b6dd27347cca4d240de563e607f349..716d142041874497e12e5e52cd2c020d7e093ab9:/src/smpi/smpi_dvfs.cpp diff --git a/src/smpi/smpi_dvfs.cpp b/src/smpi/smpi_dvfs.cpp index 478f234543..5b1876e29c 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 simcall_host_get_power_peak_at(SIMIX_host_self(), pstate_index); + return SIMIX_host_self()->powerPeakAt(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 simcall_host_get_current_power_peak(SIMIX_host_self()); + return SIMIX_host_self()->currentPowerPeak(); } /** @@ -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()); } @@ -68,7 +64,7 @@ double smpi_get_host_consumed_energy(void) { return sg_host_get_consumed_energy(SIMIX_host_self()); } -#ifdef SMPI_FORTRAN +#if SMPI_FORTRAN #if defined(__alpha__) || defined(__sparc64__) || defined(__x86_64__) || defined(__ia64__) typedef int integer;