X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/34e46b4f4ea4c454b982873327d243994a2d016a..5070b8115b200706bfce1b8b46884496d4402c6b:/src/smpi/smpi_dvfs.c diff --git a/src/smpi/smpi_dvfs.c b/src/smpi/smpi_dvfs.c index b5aee9afa5..352e548efc 100644 --- a/src/smpi/smpi_dvfs.c +++ b/src/smpi/smpi_dvfs.c @@ -11,6 +11,9 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_dvfs, smpi, "Logging specific to SMPI (experimental DVFS support)"); +XBT_PUBLIC(double) smpi_get_host_power_peak_at_(int *pstate_index); +XBT_PUBLIC(void) smpi_set_host_power_peak_at_(int *pstate_index); + /** * \brief Return the speed of the processor (in flop/s) at a given pstate * @@ -22,12 +25,17 @@ double smpi_get_host_power_peak_at(int pstate_index) return simcall_host_get_power_peak_at(SIMIX_host_self(), pstate_index); } +double smpi_get_host_power_peak_at_(int *pstate_index) +{ + return smpi_get_host_power_peak_at(*pstate_index); +} + /** * \brief Return the current speed of the processor (in flop/s) * * \return Returns the current processor speed */ -double smpi_get_host_current_power_peak(void) +double smpi_get_host_current_power_peak_(void) { return simcall_host_get_current_power_peak(SIMIX_host_self()); } @@ -35,7 +43,7 @@ double smpi_get_host_current_power_peak(void) /** * \brief Return the number of pstates defined for host */ -int smpi_get_host_nb_pstates(void) +int smpi_get_host_nb_pstates_(void) { return simcall_host_get_nb_pstates(SIMIX_host_self()); } @@ -50,12 +58,17 @@ void smpi_set_host_power_peak_at(int pstate_index) simcall_host_set_power_peak_at(SIMIX_host_self(), pstate_index); } +void smpi_set_host_power_peak_at_(int *pstate_index) +{ + smpi_set_host_power_peak_at(*pstate_index); +} + /** * \brief Return the total energy consumed by a host (in Joules) * * \return Returns the consumed energy */ -double smpi_get_host_consumed_energy(void) +double smpi_get_host_consumed_energy_(void) { return simcall_host_get_consumed_energy(SIMIX_host_self()); }