54 TimerArray_t timerArray;
68 timerArray.back()->start();
69 return timerArray.size()-1;
73 timerID >= implicit_cast<int>(timerArray.size()), std::logic_error,
74 "Teuchos_startTimer(...): Error, timerID="<<timerID
75 <<
" is >= timerArray.size()="<<timerArray.size()
76 <<
" for timerName=\""<<timerName<<
"\"!"
80 timer->isRunning(), std::logic_error,
81 "Teuchos_startTimer(...): Error, timerID="<<timerID
82 <<
", timerName=\""<<timerName<<
"\" is already running!"
101 timerID < 0 || timerID >= implicit_cast<int>(timerArray.size()),
103 "Teuchos_stopTimer(...): Error, timerID="<<timerID<<
" is invalid!"
void Teuchos_stopTimer(int timerID)
Stop a timer that was started with Teuchos_startTimer().
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
double stop()
Stop the timer, if the timer is enabled (see disable()).
#define TEUCHOS_STANDARD_CATCH_STATEMENTS(VERBOSE, ERR_STREAM, SUCCESS_FLAG)
Simple macro that catches and reports standard exceptions and other exceptions.
static RCP< FancyOStream > getDefaultOStream()
Get the default output stream object.
TypeTo implicit_cast(const TypeFrom &t)
Perform an implicit cast of concrete types with the casted object returned by value.
int Teuchos_startTimer(char timerName[], int timerID)
Start a timer with a given name and ID.
Scope guard for Teuchos::Time, with MPI collective timer reporting.
Smart reference counting pointer class for automatic garbage collection.
void incrementNumCalls()
Increment the number of times this timer has been called, if the timer is enabled (see disable())...
Replacement for std::vector that is compatible with the Teuchos Memory Management classes...