Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
improve the doc of the host plugin API
[simgrid.git] / include / simgrid / plugins / load.h
1 /* Copyright (c) 2017-2018. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_PLUGINS_LOAD_H_
7 #define SIMGRID_PLUGINS_LOAD_H_
8
9 #include <simgrid/forward.h>
10 #include <xbt/base.h>
11
12 SG_BEGIN_DECL()
13
14 XBT_PUBLIC void sg_host_load_plugin_init();
15 XBT_PUBLIC double sg_host_get_current_load(sg_host_t host);
16 XBT_PUBLIC double sg_host_get_avg_load(sg_host_t host);
17 XBT_PUBLIC double sg_host_get_idle_time(sg_host_t host);
18 XBT_PUBLIC double sg_host_get_total_idle_time(sg_host_t host);
19 XBT_PUBLIC double sg_host_get_computed_flops(sg_host_t host);
20 XBT_PUBLIC void sg_host_load_reset(sg_host_t host);
21
22 #define MSG_host_load_plugin_init() sg_host_load_plugin_init()
23 /** @brief Returns the current load of that host, as a ratio = achieved_flops / (core_current_speed * core_amount)
24  *
25  *  See simgrid::plugin::HostLoad::get_current_load() for the full documentation.
26  */
27 #define MSG_host_get_current_load(host) sg_host_get_current_load(host)
28 #define MSG_host_get_computed_flops(host) sg_host_get_computed_flops(host)
29 #define MSG_host_get_avg_load(host) sg_host_get_avg_load(host)
30
31 SG_END_DECL()
32
33 #endif