Home
last modified time | relevance | path

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

/petsc/src/ksp/pc/impls/patch/
H A Dpcpatch.c923 PetscSection cellCounts, pointCounts, intFacetCounts, extFacetCounts; in PCPatchCreateCellPatches() local
972 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->pointCounts)); in PCPatchCreateCellPatches()
973 PetscCall(PetscObjectSetName((PetscObject)patch->pointCounts, "Patch Point Layout")); in PCPatchCreateCellPatches()
974 pointCounts = patch->pointCounts; in PCPatchCreateCellPatches()
975 PetscCall(PetscSectionSetChart(pointCounts, vStart, vEnd)); in PCPatchCreateCellPatches()
1039 if (pdof) PetscCall(PetscSectionAddDof(pointCounts, v, 1)); in PCPatchCreateCellPatches()
1049 PetscCall(PetscSectionSetUp(pointCounts)); in PCPatchCreateCellPatches()
1050 PetscCall(PetscSectionGetStorageSize(pointCounts, &numPoints)); in PCPatchCreateCellPatches()
1066 PetscCall(PetscSectionGetDof(pointCounts, v, &dof)); in PCPatchCreateCellPatches()
1067 PetscCall(PetscSectionGetOffset(pointCounts, v, &off)); in PCPatchCreateCellPatches()
[all …]
/petsc/include/petsc/private/
H A Dpcpatchimpl.h31 PetscSection pointCounts; /* Maps patch -> # points with dofs in patch */ member