Home
last modified time | relevance | path

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

/petsc/src/dm/impls/plex/
H A Dplexreorder.c302 PetscCall(PetscSectionDestroy(&plexNew->coneSection)); in DMPlexPermute()
303 PetscCall(PetscSectionPermute(plex->coneSection, perm, &plexNew->coneSection)); in DMPlexPermute()
304 PetscCall(PetscSectionGetStorageSize(plexNew->coneSection, &n)); in DMPlexPermute()
308 PetscCall(PetscSectionGetChart(plex->coneSection, &pStart, &pEnd)); in DMPlexPermute()
312 PetscCall(PetscSectionGetDof(plexNew->coneSection, pperm[p], &dof)); in DMPlexPermute()
313 PetscCall(PetscSectionGetOffset(plex->coneSection, p, &off)); in DMPlexPermute()
314 PetscCall(PetscSectionGetOffset(plexNew->coneSection, pperm[p], &offNew)); in DMPlexPermute()
H A Dplex.c1057 PetscCall(PetscSectionGetDof(mesh->coneSection, p, &dof)); in DMPlexView_Ascii()
1058 PetscCall(PetscSectionGetOffset(mesh->coneSection, p, &off)); in DMPlexView_Ascii()
2845 PetscCall(PetscSectionDestroy(&mesh->coneSection)); in DMDestroy_Plex()
3092 else PetscCall(PetscSectionGetChart(mesh->coneSection, pStart, pEnd)); in DMPlexGetChart()
3116 PetscCall(PetscSectionSetChart(mesh->coneSection, pStart, pEnd)); in DMPlexSetChart()
3146 else PetscCall(PetscSectionGetDof(mesh->coneSection, p, size)); in DMPlexGetConeSize()
3174 PetscCall(PetscSectionSetDof(mesh->coneSection, p, size)); in DMPlexSetConeSize()
3211 PetscCall(PetscSectionGetOffset(mesh->coneSection, p, &off)); in DMPlexGetCone()
3449 PetscCall(PetscSectionGetDof(mesh->coneSection, p, &dof)); in DMPlexSetCone()
3451 PetscCall(PetscSectionGetOffset(mesh->coneSection, p, &off)); in DMPlexSetCone()
[all …]
H A Dplexdistribute.c1167 PetscCall(PetscSectionGetChart(pmesh->coneSection, &pStart, &pEnd)); in DMPlexDistributeCones()
H A Dplexsubmesh.c3112 PetscCall(PetscSectionGetDof(submesh->coneSection, f, &dof)); in DMPlexInsertFace_Internal()
3113 PetscCall(PetscSectionGetOffset(submesh->coneSection, f, &off)); in DMPlexInsertFace_Internal()
H A Dplexcreate.c5845 PetscCall(PetscSectionCreate(PetscObjectComm((PetscObject)dm), &mesh->coneSection)); in DMCreate_Plex()
/petsc/src/dm/impls/plex/hdf5/
H A Dplexhdf5.c2383 PetscSection coneSection = layer->coneSizesSection; in PlexLayerCreateSFs_Private() local
2393 PetscCall(PetscObjectGetComm((PetscObject)coneSection, &comm)); in PlexLayerCreateSFs_Private()
2394 PetscCall(PetscSectionGetStorageSize(coneSection, &n)); in PlexLayerCreateSFs_Private()
2453 PetscSection coneSection = layer->coneSizesSection; in PlexLayerCreateCellSFs_Private() local
2458 PetscCall(PetscObjectGetComm((PetscObject)coneSection, &comm)); in PlexLayerCreateCellSFs_Private()
2462 PetscCall(PetscSectionGetChart(coneSection, &cStart, &nCells)); in PlexLayerCreateCellSFs_Private()
2518 PetscSection coneSection; in DMPlexTopologyBuildFromLayers_Private() local
2520 PetscCall(DMPlexGetConeSection(dm, &coneSection)); in DMPlexTopologyBuildFromLayers_Private()
2531 PetscCall(PetscSectionSetDof(coneSection, p, coneSize)); in DMPlexTopologyBuildFromLayers_Private()
/petsc/include/petsc/private/
H A Ddmpleximpl.h127 PetscSection coneSection; /* Layout of cones (inedges for DAG) */ member