Lines Matching refs:maxSupportSize
1021 PetscInt dim, cellHeight, maxConeSize, maxSupportSize; in DMPlexView_Ascii() local
1035 PetscCall(DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize)); in DMPlexView_Ascii()
1043 …CIISynchronizedPrintf(viewer, "[%d] Max support size: %" PetscInt_FMT "\n", rank, maxSupportSize)); in DMPlexView_Ascii()
4028 PetscInt maxConeSize, maxSupportSize; in DMPlexGetTransitiveClosure_Depth1_Private() local
4029 PetscCall(DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize)); in DMPlexGetTransitiveClosure_Depth1_Private()
4030 …PetscCall(DMGetWorkArray(dm, 2 * (PetscMax(maxConeSize, maxSupportSize) + 1), MPIU_INT, &closure)); in DMPlexGetTransitiveClosure_Depth1_Private()
4067 PetscInt maxConeSize, maxSupportSize, coneSeries, supportSeries, maxSize; in DMPlexTransitiveClosure_Tensor_Internal() local
4073 PetscCall(DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize)); in DMPlexTransitiveClosure_Tensor_Internal()
4075 …supportSeries = (maxSupportSize > 1) ? ((PetscPowInt(maxSupportSize, dim + 1) - 1) / (maxSupportSi… in DMPlexTransitiveClosure_Tensor_Internal()
4135 PetscInt maxConeSize, maxSupportSize, coneSeries, supportSeries; in DMPlexGetTransitiveClosure_Internal() local
4150 PetscCall(DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize)); in DMPlexGetTransitiveClosure_Internal()
4152 …supportSeries = (maxSupportSize > 1) ? ((PetscPowInt(maxSupportSize, depth + 1) - 1) / (maxSupport… in DMPlexGetTransitiveClosure_Internal()
4298 PetscErrorCode DMPlexGetMaxSizes(DM dm, PeOp PetscInt *maxConeSize, PeOp PetscInt *maxSupportSize) in DMPlexGetMaxSizes() argument
4305 if (maxSupportSize) PetscCall(PetscSectionGetMaxDof(mesh->supportSection, maxSupportSize)); in DMPlexGetMaxSizes()
4312 PetscInt size, maxSupportSize; in DMSetUp_Plex() local
4320 PetscCall(PetscSectionGetMaxDof(mesh->supportSection, &maxSupportSize)); in DMSetUp_Plex()
4321 if (maxSupportSize) { in DMSetUp_Plex()
4849 PetscInt maxSupportSize; in DMPlexGetJoin() local
4856 PetscCall(PetscSectionGetMaxDof(mesh->supportSection, &maxSupportSize)); in DMPlexGetJoin()
4857 PetscCall(DMGetWorkArray(dm, maxSupportSize, MPIU_INT, &join[0])); in DMPlexGetJoin()
4858 PetscCall(DMGetWorkArray(dm, maxSupportSize, MPIU_INT, &join[1])); in DMPlexGetJoin()
4884 PetscCall(DMRestoreWorkArray(dm, maxSupportSize, MPIU_INT, &join[1 - i])); in DMPlexGetJoin()