Home
last modified time | relevance | path

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

/petsc/src/mat/graphops/coarsen/impls/mis/
H A Dmis.c28 …osts, kk, n, ix, j, *idx, *ii, Iend, my0, nremoved, gid, lid, cpid, lidj, sgid, t1, t2, slid, nDon… in MatCoarsenApply_MIS_private() local
196 sgid = cpcol_gid[cpid]; in MatCoarsenApply_MIS_private()
197 lid_parent_gid[lid] = sgid; /* keep track of proc that I belong to */ in MatCoarsenApply_MIS_private()
223 sgid = cpcol_sel_gid[cpid]; in MatCoarsenApply_MIS_private()
225 if (sgid >= my0 && sgid < Iend) { /* I own this deleted */ in MatCoarsenApply_MIS_private()
226 slid = sgid - my0; in MatCoarsenApply_MIS_private()
/petsc/src/mat/graphops/coarsen/impls/misk/
H A Dmisk.c74 …ne_ghosts, kk, n, ix, j, *idx, *ai, Iend, my0, nremoved, gid, cpid, lidj, sgid, t1, t2, slid, nDon… in MatCoarsenApply_MISK_private() local
207 sgid = cpcol_gid[cpid]; in MatCoarsenApply_MISK_private()
208 lid_parent_gid[lidj] = sgid; /* keep track of proc that I belong to */ in MatCoarsenApply_MISK_private()
234 sgid = cpcol_sel_gid[cpid]; in MatCoarsenApply_MISK_private()
236 if (sgid >= my0 && sgid < Iend) { /* I own this deleted */ in MatCoarsenApply_MISK_private()
237 slid = sgid - my0; in MatCoarsenApply_MISK_private()
/petsc/src/ksp/pc/impls/gamg/
H A Dagg.c962 PetscInt lidj = idx[j], sgid; in fixAggregatesWithSquare() local
965 …if (statej == DELETED && (sgid = (PetscInt)PetscRealPart(lid_parent_gid[lidj])) != lid + my0) { /*… in fixAggregatesWithSquare()
967 …if (sgid >= my0 && sgid < Iend) { /* I… in fixAggregatesWithSquare()
968 PetscInt hav = 0, slid = sgid - my0, gidj = lidj + my0; in fixAggregatesWithSquare()
991 …PetscCheck(sgid == -1, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Mat has an un-symmetric graph. Use '-%spc… in fixAggregatesWithSquare()