PetscLogEventEnd#

Log the end of a user event.

Synopsis#

Not Collective

Input Parameters#

  • e - integer associated with the event obtained with PetscLogEventRegister()

  • o1,o2,o3,o4 - objects associated with the event, or 0

Fortran Synopsis#

void PetscLogEventEnd(int e,PetscErrorCode ierr)

Usage#

     PetscLogEvent USER_EVENT;
     PetscLogDouble user_event_flops;
     PetscLogEventRegister("User event",0,&USER_EVENT,);
     PetscLogEventBegin(USER_EVENT,0,0,0,0);
        [code segment to monitor]
        PetscLogFlops(user_event_flops);
     PetscLogEventEnd(USER_EVENT,0,0,0,0);

See Also#

Profiling, PetscLogEventRegister(), PetscLogEventBegin(), PetscLogFlops()

Level#

intermediate

Location#

src/sys/logging/plog.c

Examples#

src/sys/classes/random/tutorials/ex1.c.html
src/sys/tutorials/ex3.c.html
src/sys/tutorials/ex3f.F90.html
src/sys/tutorials/ex3f90.F90.html
src/vec/vec/tutorials/ex10.c.html
src/vec/vec/tutorials/ex15.c.html
src/vec/vec/tutorials/ex5.c.html
src/vec/vec/tutorials/ex5f.F90.html
src/mat/tutorials/ex5cu.cu.html
src/mat/tutorials/ex5k.kokkos.cxx.html
src/ksp/ksp/tutorials/ex9.c.html


Edit on GitLab

Index of all Profiling routines
Table of Contents for all manual pages
Index of all manual pages