Skip to content

Commit

Permalink
Fix Iter/s metric in loop-report
Browse files Browse the repository at this point in the history
  • Loading branch information
daboehme committed Jun 23, 2021
1 parent eba2278 commit c7256ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mpi/controllers/LoopReportController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ class LoopReportController : public cali::ChannelController
" Block"
",max(sum#loop.iterations) as \"Iterations\""
",max(sum#time.duration) as \"Time (s)\""
",avg(loop.iterations/time.duration) as \"Iter/s\"";
",avg(ratio#loop.iterations/time.duration) as \"Iter/s\"";

std::string query = m_opts.build_query("cross", {
{ "select", select },
Expand Down

0 comments on commit c7256ef

Please sign in to comment.