Home
last modified time | relevance | path

Searched refs:gridRank (Results 1 – 1 of 1) sorted by relevance

/petsc/src/dm/impls/patch/
H A Dpatch.c193 MatStencil patchSize, commSize, gridRank, lower, upper; in DMPatchSolve() local
215 gridRank.i = rank % l; in DMPatchSolve()
216 gridRank.j = rank / l % m; in DMPatchSolve()
217 gridRank.k = rank / (l * m) % n; in DMPatchSolve()
227 …PetscInt newComm = ((gridRank.k / commSize.k) * (m / commSize.j) + gridRank.j / commSize.j) * (… in DMPatchSolve()
228 …PetscInt newRank = ((gridRank.k % commSize.k) * commSize.j + gridRank.j % commSize.j) * commSiz… in DMPatchSolve()
261gridRank.k / commSize.k == p / (l / commSize.i * m / commSize.j) % n / commSize.k) && (gridRank.j … in DMPatchSolve()