TAU_PROFILE_TIMER_SET_GROUP(3) Change the group of a timer

SYNOPSIS

C/C++:

TAU_PROFILE_TIMER_SET_GROUP(ProfilerĀ timer, TauGroup_tĀ group);

DESCRIPTION

TAU_PROFILE_TIMER_SET_GROUP changes the group associated with a timer.

EXAMPLE

C/C++ :

void foo() {
  TAU_PROFILE_TIMER(t, "foo loop timer", " ", TAU_USER1);
  ...
  TAU_PROFILE_TIMER_SET_GROUP(t, TAU_USER3);
}