TAU_DISABLE_GROUP(3) Disables tracking of a given group

SYNOPSIS

C/C++:

TAU_DISABLE_GROUP(TauGroup_tĀ group);

Fortran:

TAU_DISABLE_GROUP(integerĀ group);

DESCRIPTION

Disables the instrumentation for a given group. By default, it is on.

EXAMPLE

C/C++ :

void foo() {
  TAU_PROFILE("foo()", " ", TAU_USER);
  ...
  TAU_DISABLE_GROUP(TAU_USER);
}
    

Fortran :

  include 'Profile/TauFAPI.h'
  call TAU_DISABLE_GROUP(TAU_USER)