Home
last modified time | relevance | path

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

/petsc/src/dm/impls/plex/
H A Dplextree.c222 …ls, *unionCones, *coneSizes, *unionOrientations, numUnionPoints, *numDimPoints, numCones, numVerts; in DMPlexCreateReferenceTree_Union() local
298 PetscCall(PetscSectionGetStorageSize(unionConeSection, &numCones)); in DMPlexCreateReferenceTree_Union()
299 PetscCall(PetscMalloc2(numCones, &unionCones, numCones, &unionOrientations)); in DMPlexCreateReferenceTree_Union()
768 PetscInt q = supp[i], numCones, j; in DMPlexGetTrueSupportSize() local
771 PetscCall(DMPlexGetConeSize(dm, q, &numCones)); in DMPlexGetTrueSupportSize()
773 for (j = 0; j < numCones; j++) { in DMPlexGetTrueSupportSize()
776 if (j < numCones) count++; in DMPlexGetTrueSupportSize()
836 PetscInt numCones, j; in DMPlexTreeExchangeSupports() local
840 PetscCall(DMPlexGetConeSize(dm, q, &numCones)); in DMPlexTreeExchangeSupports()
842 for (j = 0; j < numCones; j++) { in DMPlexTreeExchangeSupports()
[all …]
H A Dplexdistribute.c1124 PetscInt numCones; in DMPlexDistributeCones() local
1126 PetscCall(PetscSectionGetStorageSize(originalConeSection, &numCones)); in DMPlexDistributeCones()
1127 PetscCall(PetscMalloc1(numCones, &globCones)); in DMPlexDistributeCones()
1128 PetscCall(ISLocalToGlobalMappingApplyBlock(original, numCones, cones, globCones)); in DMPlexDistributeCones()