Lines Matching refs:its
10 PetscInt its; /* Number of replications for timing */ member
19 options->its = 1; in ProcessOptions()
25 …sInt("-its", "The number of replications for timing", "ex1.c", options->its, &options->its, NULL)); in ProcessOptions()
180 static PetscErrorCode TestIntegration(DM dm, PetscInt cbs, PetscInt its) in TestIntegration() argument
210 for (i = 0; i < its; ++i) { in TestIntegration()
241 PetscInt N = (cEnd - cStart) * Nf * its; in TestIntegration()
247 …nt_FMT " reps\n Cell rate: %.2f/s flop rate: %.2f MF/s\n", title, N, Nch, its, (double)cellRate, … in TestIntegration()
252 static PetscErrorCode TestIntegration2(DM dm, PetscInt cbs, PetscInt its) in TestIntegration2() argument
263 for (i = 0; i < its; ++i) PetscCall(DMPlexSNESComputeResidualFEM(dm, X, F, NULL)); in TestIntegration2()
304 PetscCall(TestIntegration(dm, ctx.cbs, ctx.its)); in main()
305 PetscCall(TestIntegration2(dm, ctx.cbs, ctx.its)); in main()