From: Arnaud Giersch Date: Tue, 27 Sep 2011 13:02:14 +0000 (+0200) Subject: Add comp. iterations to global statistics. X-Git-Tag: exp_20120216~35 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/401d84724809275a3243d0c711864fa892949f41?ds=inline Add comp. iterations to global statistics. --- diff --git a/main.cpp b/main.cpp index 478d1e8..ea84f78 100644 --- a/main.cpp +++ b/main.cpp @@ -51,6 +51,7 @@ namespace { statistics loads; statistics comps; + statistics comp_iterations; statistics data_send_amount; statistics data_recv_amount; statistics data_send_count; @@ -78,6 +79,7 @@ static int simulation_main(int argc, char* argv[]) proc_mutex->acquire(); loads.push(proc->get_real_load()); comps.push(proc->get_comp_amount()); + comp_iterations.push(proc->get_comp_iter()); data_send_amount.push(proc->get_data_send_amount()); data_recv_amount.push(proc->get_data_recv_amount()); data_send_count.push(proc->get_data_send_count()); @@ -313,6 +315,7 @@ int main(int argc, char* argv[]) XBT_INFO(",----[ Results ]"); PR_STATS("Load", loads); PR_STATS("Computation", comps); + PR_STATS("Comp. iterations", comp_iterations); PR_STATS("Data send amount", data_send_amount); PR_STATS("Data recv amount", data_recv_amount); PR_STATS("Data send count", data_send_count); diff --git a/process.h b/process.h index c7525fd..275238c 100644 --- a/process.h +++ b/process.h @@ -34,6 +34,7 @@ public: double get_real_load() const { return real_load; } double get_comp_amount() const { return acc.comp_amount; } + unsigned get_comp_iter() const { return comp_iter; } double get_data_send_amount() const { return acc.data_send.amount; } double get_data_recv_amount() const { return acc.data_recv.amount; } unsigned get_data_send_count() const { return acc.data_send.count; }