X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/444b3487fdce26571d25a82b1fb835c8c15e550f..30c05c4b8192656e78559e5ece59fbb4cfcfe18c:/src/smpi/smpi_dvfs.c diff --git a/src/smpi/smpi_dvfs.c b/src/smpi/smpi_dvfs.c index b5aee9afa5..a8ab0ae107 100644 --- a/src/smpi/smpi_dvfs.c +++ b/src/smpi/smpi_dvfs.c @@ -1,8 +1,8 @@ -/* Copyright (c) 2013. The SimGrid Team. +/* Copyright (c) 2013-2014. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #include "xbt/log.h" #include "simgrid/simix.h" @@ -59,3 +59,39 @@ double smpi_get_host_consumed_energy(void) { return simcall_host_get_consumed_energy(SIMIX_host_self()); } + +#include "smpi/smpif.h" + +#ifdef SMPI_F2C + +XBT_PUBLIC(doublereal) smpi_get_host_power_peak_at_(integer *pstate_index); +doublereal smpi_get_host_power_peak_at_(integer *pstate_index) +{ + return (doublereal)smpi_get_host_power_peak_at((int)*pstate_index); +} + +XBT_PUBLIC(doublereal) smpi_get_host_current_power_peak_(void); +doublereal smpi_get_host_current_power_peak_(void) +{ + return smpi_get_host_current_power_peak(); +} + +XBT_PUBLIC(integer) smpi_get_host_nb_pstates_(void); +integer smpi_get_host_nb_pstates_(void) +{ + return (integer)smpi_get_host_nb_pstates(); +} + +XBT_PUBLIC(void) smpi_set_host_power_peak_at_(integer *pstate_index); +void smpi_set_host_power_peak_at_(integer *pstate_index) +{ + smpi_set_host_power_peak_at((int)*pstate_index); +} + +XBT_PUBLIC(doublereal) smpi_get_host_consumed_energy_(void); +doublereal smpi_get_host_consumed_energy_(void) +{ + return (doublereal)smpi_get_host_consumed_energy(); +} + +#endif