Lines Matching refs:upper
41 PetscErrorCode DMPatchZoom(DM dm, MatStencil lower, MatStencil upper, MPI_Comm commz, DM *dmz, PeOp… in DMPatchZoom() argument
62 bupper.i = PetscMin(M, upper.i + halo); in DMPatchZoom()
64 bupper.j = PetscMin(N, upper.j + halo); in DMPatchZoom()
66 bupper.k = PetscMin(P, upper.k + halo); in DMPatchZoom()
88 exr = PetscMin(sxb + mxb, upper.i - blower.i); in DMPatchZoom()
89 eyr = PetscMin(syb + myb, upper.j - blower.j); in DMPatchZoom()
90 ezr = PetscMin(szb + mzb, upper.k - blower.k); in DMPatchZoom()
193 MatStencil patchSize, commSize, gridRank, lower, upper; in DMPatchSolve() local
269 upper.i = i + patchSize.i; in DMPatchSolve()
270 upper.j = j + patchSize.j; in DMPatchSolve()
271 upper.k = k + patchSize.k; in DMPatchSolve()
272 PetscCall(DMPatchZoom(dmc, lower, upper, commp, &dmz, &sfz, &sfzr)); in DMPatchSolve()
274 upper.c = 0; /* initialize member, otherwise compiler issues warnings */ in DMPatchSolve()
276 …" PetscInt_FMT ", %" PetscInt_FMT ")\n", p, lower.i, lower.j, lower.k, upper.i, upper.j, upper.k)); in DMPatchSolve()