static char help[] = "Augmenting PETSc profiling by add events.\n\ Run this program with one of the\n\ following options to generate logging information: -log, -log_view,\n\ -log_all. The PETSc routines automatically log event times and flops,\n\ so this monitoring is intended solely for users to employ in application\n\ codes.\n\n"; /* Include "petscsys.h" so that we can use PETSc profiling routines. */ #include #include int main(int argc,char **argv) { PetscMPIInt rank; int i,imax=10000,icount; PetscLogEvent USER_EVENT,check_USER_EVENT; PetscFunctionBeginUser; PetscCall(PetscInitialize(&argc,&argv,NULL,help)); /* Create a new user-defined event. - Note that PetscLogEventRegister() returns to the user a unique integer event number, which should then be used for profiling the event via PetscLogEventBegin() and PetscLogEventEnd(). - The user can also optionally log floating point operations with the routine PetscLogFlops(). */ PetscCall(PetscLogEventRegister("User event",PETSC_VIEWER_CLASSID,&USER_EVENT)); PetscCall(PetscLogEventGetId("User event",&check_USER_EVENT)); PetscCheck(USER_EVENT == check_USER_EVENT,PETSC_COMM_SELF,PETSC_ERR_PLIB,"Event Ids do not match"); PetscCall(PetscLogEventBegin(USER_EVENT,0,0,0,0)); icount = 0; for (i=0; i