From: Christian Heinrich Date: Fri, 20 Apr 2018 15:07:34 +0000 (+0200) Subject: [SMPI] Initial commit of the LB plugin X-Git-Tag: v3.20~349 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3b6132708ae82c3a85542ddfc4763fbf359496c9 [SMPI] Initial commit of the LB plugin --- diff --git a/src/smpi/plugins/sampi_loadbalancer.cpp b/src/smpi/plugins/sampi_loadbalancer.cpp new file mode 100644 index 0000000000..0b465ea5ff --- /dev/null +++ b/src/smpi/plugins/sampi_loadbalancer.cpp @@ -0,0 +1,24 @@ +#include +#include +#include +#include + +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(plugin_load_balancer, surf, "Logging specific to the SURF energy plugin"); + +namespace simgrid { +namespace smpi { +namespace plugin { + + +} +} +} + +/** \ingroup plugin_loadbalancer + * \brief Initializes the load balancer plugin + * \details The load balancer plugin supports several AMPI load balancers that move ranks + * around, based on their host's load. + */ +void sg_load_balancer_plugin_init() +{ +}