Query: tau_profile_stop
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
TAU_PROFILE_STOP(3) TAU Instrumentation API TAU_PROFILE_STOP(3)NAMETAU_PROFILE_STOP - Stops a timer.SYNOPSISC/C++: TAU_PROFILE_STOP(Profiler timer); Fortran: TAU_PROFILE_STOP(integer profiler(2));DESCRIPTIONStops the timer given by timer. It is important to note that timers can be nested, but not overlapping. TAU detects programming errors that lead to such overlaps at runtime, and prints a warning message.EXAMPLEC/C++ : int foo(int a) { TAU_PROFILE_TIMER(timer, "foo", "int (int)", TAU_USER); TAU_PROFILE_START(timer); ... TAU_PROFILE_STOP(timer); return a; } Fortran : subroutine F1() integer profiler(2) / 0, 0 / save profiler call TAU_PROFILE_TIMER(profiler,'f1()') call TAU_PROFILE_START(profiler) ... call TAU_PROFILE_STOP(profiler) endSEE ALSOTAU_PROFILE_TIMER(3), TAU_PROFILE_START(3) 08/31/2005 TAU_PROFILE_STOP(3)
Related Man Pages |
---|
tau_enable_group_name(3) - debian |
tau_phase_create_dynamic(3) - debian |
tau_profile_set_context(3) - debian |
tau_profile_set_node(3) - debian |
tau_profile_timer(3) - debian |
Similar Topics in the Unix Linux Community |
---|
How can I do this in VI editor? |
Is UNIX an open source OS ? |
One instance of comparing grep and awk |
How to copy a column of multiple files and paste into new excel file (next to column)? |