LSST Applications g04a91732dc+9666464c73,g0fba68d861+079660c10e,g1fd858c14a+94f68680cf,g208c678f98+627fe8cd4e,g271391ec13+ac98094cfc,g2c84ff76c0+12036dbf49,g2c9e612ef2+a92a2e6025,g35bb328faa+fcb1d3bbc8,g4d2262a081+bcdfaf528c,g4e0f332c67+c58e4b632d,g53246c7159+fcb1d3bbc8,g60b5630c4e+a92a2e6025,g67b6fd64d1+9d1b2ab50a,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g7b71ed6315+fcb1d3bbc8,g8852436030+506db7da85,g89139ef638+9d1b2ab50a,g8d6b6b353c+a92a2e6025,g9125e01d80+fcb1d3bbc8,g989de1cb63+9d1b2ab50a,g9f33ca652e+d1749da127,ga2b97cdc51+a92a2e6025,gabe3b4be73+1e0a283bba,gb1101e3267+6ecbd0580e,gb58c049af0+f03b321e39,gb89ab40317+9d1b2ab50a,gb90eeb9370+384e1fc23b,gcf25f946ba+506db7da85,gd315a588df+382ef11c06,gd6cbbdb0b4+75aa4b1db4,gd9a9a58781+fcb1d3bbc8,gde0f65d7ad+a095917f21,ge278dab8ac+c61fbefdff,ge410e46f29+9d1b2ab50a,ge82c20c137+e12a08b75a,gf67bdafdda+9d1b2ab50a,gfd5510ef7b+df344d16e5,v29.0.0.rc2
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.