From 6fa4271f90a1589c97604fff8668e0f4a767c8e3 Mon Sep 17 00:00:00 2001 From: Christian Heinrich Date: Fri, 8 Jun 2018 20:29:35 +0200 Subject: [PATCH] [HostLoad] Add two comments to class properties --- src/plugins/host_load.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/plugins/host_load.cpp b/src/plugins/host_load.cpp index 27060c0caa..17ae65aaa0 100644 --- a/src/plugins/host_load.cpp +++ b/src/plugins/host_load.cpp @@ -44,7 +44,14 @@ private: simgrid::s4u::Host* host_ = nullptr; double last_updated_ = 0; double last_reset_ = 0; + /** + * current_speed each core is running at right now + */ double current_speed_ = 0; + /** + * How many flops are currently used by all the processes running on this + * host? + */ double current_flops_ = 0; double computed_flops_ = 0; double idle_time_ = 0; -- 2.20.1