xref: /petsc/src/sys/tests/ex9.c (revision f97672e55eacc8688507b9471cd7ec2664d7f203)
1 
2 static char help[] = "Tests PetscSequentialPhaseBegin() and PetscSequentialPhaseEnd()\n";
3 
4 #include <petscsys.h>
5 
6 int main(int argc,char **args)
7 {
8 
9   PetscCall(PetscInitialize(&argc,&args,NULL,help));
10   PetscCall(PetscSequentialPhaseBegin(PETSC_COMM_WORLD,1));
11   PetscCall(PetscSequentialPhaseEnd(PETSC_COMM_WORLD,1));
12   PetscCall(PetscFinalize());
13   return 0;
14 }
15 
16 /*TEST
17 
18    test:
19       nsize: 2
20 
21 TEST*/
22