Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add Fortran bindigns for smpi+dvfs.
[simgrid.git] / src / smpi / smpi_dvfs.c
index b5aee9a..352e548 100644 (file)
@@ -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());
 }