mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
A class to track the number of iterations in an OMP parallelized loop.
Uses omp critical directives to deconflict updates by different loops. Example:
This will result in the following output
1 / 1000 (0.1%) 2 / 1000 (0.2%) 3 / 1000 (0.3%)
and so on.
The behavior of the output is controlled through template parameters. A different output-type can be specified, which needs to accept size_t, and optionally float, and character input using the << operator.
outputT | a type which accepts size_t, float, and character input via the << operator (default is std::ostream). |
_printPretty | flag to control whether the output is nicely formatted, if false then just the numbers are sent to the output with no spaces or delimiters (default is true). |
_printLoops | flag to control whether the number of loops is sent to the output each time (default is true). |
_printPercent | flag to control whether the percentage complete is calculated (default is true). |
_printNLine | flag to control whether the newline '\n' is sent ot output (default is false). If false, '\r' is written at end of output. |
_time | flag to control whether time is tracked. Default is true. |
Definition at line 85 of file ompLoopWatcher.hpp.
#include <ipc/ompLoopWatcher.hpp>
Public Member Functions | |
ompLoopWatcher (size_t nLoops, outputT &output) | |
Constructor. | |
void | increment () |
Increment the counter. | |
void | advance (size_t diff_count) |
Advance the counter by a number of steps. | |
void | outputStatus () |
Output current status. | |
void | outputFinalStatus () |
Output a final report about elapsed time. | |
void | incrementAndOutputStatus () |
Increment and output status. | |
void | advanceAndOutputStatus (size_t diff_count) |
Advance and output status. | |
void | clearOutput () |
Clear the output line of any text. | |
Protected Member Functions | |
void | _increment () |
Increment the counter. | |
void | _advance (size_t diff_count) |
Advance the counter by a number of steps. | |
void | _outputStatus () |
Perform the output. | |
Protected Attributes | |
size_t | _nLoops |
The total number of loops. | |
size_t | _counter |
The current counter. | |
outputT * | _output |
Pointer to the instance of type outputT. | |
|
inline |
Constructor.
Registers the output and sets the number of loops.
nLoops | is the total number of loops. |
output | is the instance of type outputT to which the output will be sent. |
Definition at line 199 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_counter, mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_nLoops, mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_output, and mx::sys::get_curr_time().
|
inlineprotected |
Advance the counter by a number of steps.
Definition at line 113 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_counter, and mx::sys::get_curr_time().
Referenced by mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::advance(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::advanceAndOutputStatus().
|
inlineprotected |
Increment the counter.
Definition at line 103 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_counter, and mx::sys::get_curr_time().
Referenced by mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::increment(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::incrementAndOutputStatus().
|
inlineprotected |
Perform the output.
Definition at line 123 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_counter, and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_nLoops.
Referenced by mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::advanceAndOutputStatus(), mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::incrementAndOutputStatus(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::outputStatus().
|
inline |
Advance the counter by a number of steps.
Call this once per loop. It contains an omp critical directive.
Definition at line 221 of file ompLoopWatcher.hpp.
|
inline |
Advance and output status.
Call this to advance and then give a status update. Has only one omp critical directive for the two steps.
Definition at line 286 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_advance(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_outputStatus().
|
inline |
Clear the output line of any text.
If printing pretty and not printing new lines, this writes a line of blank spaces and carriage returns to clear out the last status update.
Definition at line 299 of file ompLoopWatcher.hpp.
|
inline |
Increment the counter.
Call this once per loop. It contains an omp critical directive.
Definition at line 212 of file ompLoopWatcher.hpp.
|
inline |
Increment and output status.
Call this to increment and then give a status update. Has only one omp critical directive for the two steps.
Definition at line 274 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_increment(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_outputStatus().
Referenced by mx::AO::analysis::fourierTemporalPSD< _realT, aosysT >::analyzePSDGrid(), mx::AO::analysis::fourierCovarMap(), mx::AO::analysis::fourierVarVec(), mx::AO::analysis::fourierTemporalPSD< _realT, aosysT >::intensityPSD(), mx::AO::analysis::fourierTemporalPSD< _realT, aosysT >::makePSDGrid(), mx::improc::HCIobservation< _realT >::preProcess(), mx::improc::KLIPreduction< _realT, _derotFunctObj, _evCalcT >::worker(), mx::AO::analysis::zernikeCovarMap(), and mx::AO::analysis::zernikeVarVec().
|
inline |
Output a final report about elapsed time.
Definition at line 237 of file ompLoopWatcher.hpp.
References mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_counter.
|
inline |
Output current status.
Call this whenever you want a status update. It contains an omp critical directive.
Definition at line 230 of file ompLoopWatcher.hpp.
|
protected |
The current counter.
Definition at line 92 of file ompLoopWatcher.hpp.
Referenced by mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::ompLoopWatcher(), mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_advance(), mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_increment(), mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_outputStatus(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::outputFinalStatus().
|
protected |
The total number of loops.
Definition at line 91 of file ompLoopWatcher.hpp.
Referenced by mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::ompLoopWatcher(), and mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::_outputStatus().
|
protected |
Pointer to the instance of type outputT.
Definition at line 97 of file ompLoopWatcher.hpp.
Referenced by mx::ipc::ompLoopWatcher< _outputT, _printPretty, _printLoops, _printPercent, _printNLine, _time >::ompLoopWatcher().