#include #include int main(int argc, char **argv) { PetscLogDouble x, y; int i; PetscCall(PetscInitialize(&argc, &argv, 0, 0)); /* To take care of paging effects */ PetscTime(&y); for (i = 0; i < 2; i++) { PetscTime(&x); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); PetscTime(&y); fprintf(stdout, "%-15s : %e sec\n", "PetscTime", (y - x) / 10.0); } PetscTime(&x); PetscCall(PetscSleep(10)); PetscTime(&y); fprintf(stdout, "%-15s : %e sec - Slept for 10 sec \n", "PetscTime", (y - x)); PetscCall(PetscFinalize()); return 0; }