#include <Profiler.h>
Definition at line 33 of file Profiler.h.
◆ Profiler()
◆ ~Profiler()
◆ copy()
Object * Profiler::copy |
( |
void |
| ) |
|
|
virtual |
◆ DeepEcho()
void Profiler::DeepEcho |
( |
void |
| ) |
|
|
virtual |
◆ Echo()
void Profiler::Echo |
( |
void |
| ) |
|
|
virtual |
◆ Id()
int Profiler::Id |
( |
void |
| ) |
|
|
virtual |
◆ Marshall()
void Profiler::Marshall |
( |
char ** |
pmarshalled_data, |
|
|
int * |
pmarshalled_data_size, |
|
|
int |
marshall_direction |
|
) |
| |
|
virtual |
Implements Object.
Definition at line 66 of file Profiler.cpp.
69 bool* bpointer = NULL;
72 pointer = &this->
time[0];
74 pointer = &this->
flops[0];
76 pointer = &this->
memory[0];
◆ ObjectEnum()
int Profiler::ObjectEnum |
( |
void |
| ) |
|
|
virtual |
◆ TotalFlops()
◆ TotalTime()
Definition at line 96 of file Profiler.cpp.
101 if(this->
running[tag])
_error_(
"Tag "<<tag<<
" has not been stopped");
104 return this->
time[tag];
106 return this->
time[tag]/CLOCKS_PER_SEC;
◆ TotalTimeModHour()
int Profiler::TotalTimeModHour |
( |
int |
tag | ) |
|
Definition at line 110 of file Profiler.cpp.
113 return int((reCast<int,IssmPDouble>(delta))/3600);
◆ TotalTimeModMin()
int Profiler::TotalTimeModMin |
( |
int |
tag | ) |
|
Definition at line 117 of file Profiler.cpp.
120 return int(
int(reCast<int,IssmPDouble>(delta))%3600/60);
◆ TotalTimeModSec()
int Profiler::TotalTimeModSec |
( |
int |
tag | ) |
|
Definition at line 123 of file Profiler.cpp.
126 return int(reCast<int,IssmPDouble>(delta)%60);
◆ Memory()
◆ Start()
void Profiler::Start |
( |
int |
tagenum, |
|
|
bool |
dontmpisync = true |
|
) |
| |
Definition at line 139 of file Profiler.cpp.
144 if(this->
running[tag])
_error_(
"Tag "<<tag<<
" is already running");
163 PetscMemoryGetCurrentUsage(&m);
177 this->
used[tag] =
true;
◆ Stop()
void Profiler::Stop |
( |
int |
tagenum, |
|
|
bool |
dontmpisync = true |
|
) |
| |
Definition at line 179 of file Profiler.cpp.
203 PetscMemoryGetCurrentUsage(&m);
◆ Used()
bool Profiler::Used |
( |
int |
tagenum | ) |
|
◆ flops
◆ flops_start
◆ memory
◆ memory_start
◆ time
◆ time_start
◆ running
◆ used
The documentation for this class was generated from the following files: