X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c31bbbb83963c7db2b5970f5c81cbcdd7bc1c5d5..7d95b38c3d4b2911e3cc466e49ca9efbf58e997b:/include/simgrid/plugins/load.h diff --git a/include/simgrid/plugins/load.h b/include/simgrid/plugins/load.h index d5d03ec6a2..02175c8435 100644 --- a/include/simgrid/plugins/load.h +++ b/include/simgrid/plugins/load.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2017-2022. 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. */ @@ -6,6 +6,7 @@ #ifndef SIMGRID_PLUGINS_LOAD_H_ #define SIMGRID_PLUGINS_LOAD_H_ +#include #include #include @@ -19,6 +20,17 @@ XBT_PUBLIC double sg_host_get_total_idle_time(const_sg_host_t host); XBT_PUBLIC double sg_host_get_computed_flops(const_sg_host_t host); XBT_PUBLIC void sg_host_load_reset(const_sg_host_t host); +XBT_PUBLIC void sg_link_load_plugin_init(); +XBT_PUBLIC void sg_link_load_track(const_sg_link_t link); +XBT_PUBLIC void sg_link_load_untrack(const_sg_link_t link); +XBT_PUBLIC void sg_link_load_reset(const_sg_link_t link); +XBT_PUBLIC double sg_link_get_cum_load(const_sg_link_t link); +XBT_PUBLIC double sg_link_get_avg_load(const_sg_link_t link); +XBT_PUBLIC double sg_link_get_min_instantaneous_load(const_sg_link_t link); +XBT_PUBLIC double sg_link_get_max_instantaneous_load(const_sg_link_t link); + +#if SIMGRID_HAVE_MSG + #define MSG_host_load_plugin_init() sg_host_load_plugin_init() /** @brief Returns the current load of that host, as a ratio = achieved_flops / (core_current_speed * core_amount) * @@ -28,6 +40,8 @@ XBT_PUBLIC void sg_host_load_reset(const_sg_host_t host); #define MSG_host_get_computed_flops(host) sg_host_get_computed_flops(host) #define MSG_host_get_avg_load(host) sg_host_get_avg_load(host) +#endif // SIMGRID_HAVE_MSG + SG_END_DECL #endif