LSST Applications g0fba68d861+5b9ba6aee1,g1ec0fe41b4+e220e2fb2f,g1fd858c14a+120b017347,g35bb328faa+fcb1d3bbc8,g4d2262a081+57a06a8609,g53246c7159+fcb1d3bbc8,g56a49b3a55+8d793c2a3d,g60b5630c4e+4e8d433789,g60dcce3b99+6eff471efc,g67b6fd64d1+fad15079a7,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8180f54f50+65cb53bb37,g8352419a5c+fcb1d3bbc8,g8852436030+ae791ba189,g89139ef638+fad15079a7,g9125e01d80+fcb1d3bbc8,g94187f82dc+4e8d433789,g989de1cb63+fad15079a7,g9ccd5d7f00+cce09d2c12,g9d31334357+4e8d433789,g9f33ca652e+323fd354f8,gabe3b4be73+1e0a283bba,gabf8522325+94c30d56e9,gb1101e3267+5e0f808207,gb58c049af0+f03b321e39,gb89ab40317+fad15079a7,gc0af124501+a88dc73679,gcf25f946ba+ae791ba189,gd6cbbdb0b4+8d7f1baacb,gdb1c4ca869+16879ca1a6,gde0f65d7ad+11b49afd66,ge1ad929117+4e8d433789,ge278dab8ac+4d6e48c014,ge410e46f29+fad15079a7,gf5e32f922b+fcb1d3bbc8,gf618743f1b+8ff1364817,gf67bdafdda+fad15079a7,w.2025.17
LSST Data Management Base Package
|
This is a structure for keeping track of how long the interpolation methods spend on different parts of the interpolation. More...
#include <GaussianProcess.h>
Public Member Functions | |
GaussianProcessTimer () | |
GaussianProcessTimer (GaussianProcessTimer const &)=default | |
GaussianProcessTimer (GaussianProcessTimer &&)=default | |
GaussianProcessTimer & | operator= (GaussianProcessTimer const &)=default |
GaussianProcessTimer & | operator= (GaussianProcessTimer &&)=default |
~GaussianProcessTimer ()=default | |
void | reset () |
Resets all of the data members of GaussianProcessTimer to zero. | |
void | start () |
Starts the timer for an individual call to an interpolation routine. | |
void | addToEigen () |
Adds time to _eigenTime. | |
void | addToVariance () |
Adds time to _varianceTime. | |
void | addToSearch () |
Adds time to _searchTime. | |
void | addToIteration () |
Adds time to _iterationTime. | |
void | addToTotal (int i) |
Adds time to _totalTime and adds counts to _interpolationCount. | |
void | display () |
Displays the current values of all times and _interpolationCount. | |
This is a structure for keeping track of how long the interpolation methods spend on different parts of the interpolation.
_eigenTime keeps track of how much time is spent using Eigen's linear algebra packages
_iterationTime keeps track of how much time is spent iterating over matrix indices (this is also a catch-all for time that does not obviously fit in the other categories)
_searchTime keeps track of how much time is spent on nearest neighbor searches (when applicable)
_varianceTime keeps track of how much time is spent calculating the variance of our interpolated function value (note: time spent using Eigen packages for this purpose is tallied here, not in _eigenTime)
_totalTime keeps track of how much time total is spent on interpolations
_interpolationCount keeps track of how many points have been interpolated
Definition at line 60 of file GaussianProcess.h.
lsst::afw::math::GaussianProcessTimer::GaussianProcessTimer | ( | ) |
Definition at line 36 of file GaussianProcess.cc.
|
default |
|
default |
|
default |
void lsst::afw::math::GaussianProcessTimer::addToEigen | ( | ) |
Adds time to _eigenTime.
Definition at line 59 of file GaussianProcess.cc.
void lsst::afw::math::GaussianProcessTimer::addToIteration | ( | ) |
Adds time to _iterationTime.
Definition at line 80 of file GaussianProcess.cc.
void lsst::afw::math::GaussianProcessTimer::addToSearch | ( | ) |
Adds time to _searchTime.
Definition at line 73 of file GaussianProcess.cc.
void lsst::afw::math::GaussianProcessTimer::addToTotal | ( | int | i | ) |
Adds time to _totalTime and adds counts to _interpolationCount.
[in] | i | the number of counts to add to _interpolationCount |
Definition at line 87 of file GaussianProcess.cc.
void lsst::afw::math::GaussianProcessTimer::addToVariance | ( | ) |
Adds time to _varianceTime.
Definition at line 66 of file GaussianProcess.cc.
void lsst::afw::math::GaussianProcessTimer::display | ( | ) |
Displays the current values of all times and _interpolationCount.
Definition at line 94 of file GaussianProcess.cc.
|
default |
|
default |
void lsst::afw::math::GaussianProcessTimer::reset | ( | ) |
Resets all of the data members of GaussianProcessTimer to zero.
Definition at line 45 of file GaussianProcess.cc.
void lsst::afw::math::GaussianProcessTimer::start | ( | ) |
Starts the timer for an individual call to an interpolation routine.
Definition at line 54 of file GaussianProcess.cc.