29#ifndef ompLoopWatcher_hpp
30#define ompLoopWatcher_hpp
33#include "../sys/timeUtils.hpp"
79template <
class _outputT = std::ostream,
80 bool _printPretty =
true,
81 bool _printLoops =
true,
82 bool _printPercent =
true,
83 bool _printNLine =
false,
88 typedef _outputT outputT;
99 size_t m_outputInterval {10};
100 size_t m_outputCount {0};
125 if(m_outputInterval > 1)
127 if(m_outputCount < (m_outputInterval-1))
141 ( *_output ) <<
" / " <<
_nLoops;
149 ( *_output ) <<
" " << ( t1 - t0 ) /
_counter <<
" s/loop ";
155 ( *_output ) <<
'\n';
159 ( *_output ) <<
" \r";
162 ( *_output ) << std::flush;
177 ( *_output ) <<
" " << t0 <<
" " << t1;
181 ( *_output ) <<
'\n';
243 ( *_output ) << ( t1 - t0 ) <<
" s elapsed ";
244 ( *_output ) <<
" (" << ( t1 - t0 ) /
_counter <<
" s/loop) ";
249 ( *_output ) <<
'\n';
253 ( *_output ) <<
" \r";
256 ( *_output ) << std::flush;
262 ( *_output ) <<
" " << t0 <<
" " << t1;
266 ( *_output ) <<
'\n';
305 ( *_output ) <<
" \r";
306 ( *_output ) << std::flush;
A class to track the number of iterations in an OMP parallelized loop.
void increment()
Increment the counter.
void advanceAndOutputStatus(size_t diff_count)
Advance and output status.
void _increment()
Increment the counter.
size_t _nLoops
The total number of loops.
void outputStatus()
Output current status.
void _advance(size_t diff_count)
Advance the counter by a number of steps.
void clearOutput()
Clear the output line of any text.
void outputFinalStatus()
Output a final report about elapsed time.
size_t _counter
The current counter.
outputT * _output
Pointer to the instance of type outputT.
void _outputStatus()
Perform the output.
void incrementAndOutputStatus()
Increment and output status.
ompLoopWatcher(size_t nLoops, outputT &output)
Constructor.
void advance(size_t diff_count)
Advance the counter by a number of steps.
typeT get_curr_time()
Get the current system time in seconds.