Home
last modified time | relevance | path

Searched refs:hierarchy (Results 1 – 25 of 31) sorted by relevance

12

/petsc/src/dm/impls/moab/ !
H A Ddmmbmg.cxx53 …dmmoab->hierarchy = new moab::NestedRefine(dynamic_cast<moab::Core *>(dmmoab->mbiface), dmmoab->pc… in DMMoabGenerateHierarchy()
55 …dmmoab->hierarchy = new moab::NestedRefine(dynamic_cast<moab::Core *>(dmmoab->mbiface), NULL, dmmo… in DMMoabGenerateHierarchy()
61 merr = dmmoab->hierarchy->generate_mesh_hierarchy(nlevels, pdegrees, hsets, false); in DMMoabGenerateHierarchy()
66 merr = dmmoab->hierarchy->exchange_ghosts(hsets, dmmoab->nghostrings); in DMMoabGenerateHierarchy()
82 merr = dmmoab->hierarchy->update_special_tags(ilevel, hsets[ilevel]); in DMMoabGenerateHierarchy()
208 merr = dmbc->hierarchy->get_adjacencies(vhandle, dmbc->dim, adjs); in DMCreateInterpolation_Moab()
216 merr = dmbc->hierarchy->child_to_parent(jhandle, dmbc->hlevel, dmbp->hlevel, &parent); in DMCreateInterpolation_Moab()
221 merr = dmbp->hierarchy->get_connectivity(parent, dmbp->hlevel, connp); in DMCreateInterpolation_Moab()
274 merr = dmbp->hierarchy->parent_to_child(ehandle, dmbp->hlevel, dmbc->hlevel, children); in DMCreateInterpolation_Moab()
278 merr = dmbp->hierarchy->get_connectivity(ehandle, dmbp->hlevel, connp); in DMCreateInterpolation_Moab()
[all …]
H A Ddmmoab.cxx676 …merr = dmmoab->hierarchy->get_coordinates(const_cast<moab::EntityHandle *>(conn), nconn, dmmoab->h… in DMMoabGetVertexCoordinates()
930 if (!dmmoab->hlevel && dmmoab->icreatedinstance) delete dmmoab->hierarchy; in DMDestroy_Moab()
931 dmmoab->hierarchy = NULL; in DMDestroy_Moab()
1189 if (dmmoab->hierarchy->is_entity_on_boundary(elemHandle)) { in DMSetUp_Moab()
1193 merr = dmmoab->hierarchy->get_connectivity(elemHandle, dmmoab->hlevel, connect); in DMSetUp_Moab()
1196 … if (dmmoab->hierarchy->is_entity_on_boundary(connect[iv])) dmmoab->bndyvtx->insert(connect[iv]); in DMSetUp_Moab()
1199 merr = dmmoab->hierarchy->get_adjacencies(elemHandle, dmmoab->dim - 1, faces); in DMSetUp_Moab()
1202 … if (dmmoab->hierarchy->is_entity_on_boundary(faces[ifa])) dmmoab->bndyfaces->insert(faces[ifa]); in DMSetUp_Moab()
H A Ddmmbmat.cxx89 merr = dmmoab->hierarchy->get_adjacencies(vtx, dmmoab->dim, adjs); in DMMoab_Compute_NNZ_From_Connectivity()
/petsc/include/petsc/private/ !
H A Ddmmbimpl.h84 moab::NestedRefine *hierarchy; member
95 moab::NestedRefine *hierarchy; member
/petsc/src/ksp/ksp/tutorials/output/ !
H A Dex36_1.out1 Number of mesh hierarchy levels: 1
H A Dex35_3.out1 Number of mesh hierarchy levels: 1
H A Dex36_2.out1 Number of mesh hierarchy levels: 2
H A Dex35_2.out1 Number of mesh hierarchy levels: 3
/petsc/src/dm/impls/moab/tests/output/ !
H A Dex3_2_1.out2 Generate the MOAB mesh hierarchy with 2 levels.
H A Dex3_1_2.out2 Generate the MOAB mesh hierarchy with 2 levels.
H A Dex3_1.out2 Generate the MOAB mesh hierarchy with 2 levels.
H A Dex3_1_1.out2 Generate the MOAB mesh hierarchy with 2 levels.
/petsc/src/sys/classes/viewer/impls/hdf5/ !
H A Dhdf5v.c1399 char **hierarchy; in PetscViewerHDF5Traverse_Internal() local
1423 PetscCall(PetscStrToArray(name, '/', &n, &hierarchy)); in PetscViewerHDF5Traverse_Internal()
1428 PetscCall(PetscStrToArrayDestroy(n, hierarchy)); in PetscViewerHDF5Traverse_Internal()
1433 PetscCall(PetscStrlcat(buf, hierarchy[i], sizeof(buf))); in PetscViewerHDF5Traverse_Internal()
1437 PetscCall(PetscStrToArrayDestroy(n, hierarchy)); in PetscViewerHDF5Traverse_Internal()
/petsc/systems/Apple/iOS/examples/Basic/Classes/ !
H A DiphoneViewController.m29 // Implement loadView to create a view hierarchy programmatically, without using a nib.
/petsc/systems/Apple/iOS/examples/testopengl/Classes/ !
H A DiphoneViewController.m30 // Implement loadView to create a view hierarchy programmatically, without using a nib.
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/ !
H A DDM.pyx1649 """Refine this `DM` and return the refined `DM` hierarchy.
1668 cdef list hierarchy = []
1672 hierarchy.append(dmf)
1673 return hierarchy
1676 """Coarsen this `DM` and return the coarsened `DM` hierarchy.
1695 cdef list hierarchy = []
1699 hierarchy.append(dmc)
1700 return hierarchy
H A DSNES.pyx594 """Return the `SNES` corresponding to a particular level of the FAS hierarchy.
611 """Return the `SNES` used at the coarsest level of the FAS hierarchy.
626 """Return the smoother used at a given level of the FAS hierarchy.
643 """Return the downsmoother used at a given level of the FAS hierarchy.
660 """Return the upsmoother used at a given level of the FAS hierarchy.
/petsc/doc/developers/ !
H A Dmatrices.md19 hierarchy.)
34 said to respect the memory hierarchy.
/petsc/share/petsc/saws/ !
H A Ddocumentation24 …he page, we provide another way for the user to customize the solver: a hierarchy of dropdown menu…
/petsc/doc/changes/ !
H A D31.md142 of the hierarchy.
H A D317.md153 - Add `PCMGGetGridComplexity()` to get operator and grid complexity of MG hierarchy
/petsc/lib/petsc/bin/maint/petsclinter/petsclinter/ !
H A DREADME.rst50 Generally speaking, the hierarchy is checks -> classes -> util, where a -> indicates an
/petsc/doc/manual/ !
H A Dprofiling.md116 The summaries printed via `-log_view` reflect this routine hierarchy.
121 The output produced with `-log_view` is flat, meaning that the hierarchy
342 where the hierarchy of events is explicit. This output can be generated
/petsc/src/snes/tutorials/ !
H A Dex48.c1247 static PetscErrorCode DMRefineHierarchy_THI(DM dac0, PetscInt nlevels, DM hierarchy[]) argument
1259 PetscCall(DMRefineHierarchy(dac0, nlevels - 1, hierarchy));
1260 dac = hierarchy[nlevels - 2];
1281 hierarchy[nlevels - 1] = daf;
/petsc/src/dm/impls/forest/p4est/ !
H A Dpforest.h4496 DM *hierarchy; in DMForestTransferVecFromBase_pforest() local
4566 PetscCall(PetscMalloc2(n_hi, &hierarchy, n_hi, &hierarchy_forest)); in DMForestTransferVecFromBase_pforest()
4580 hierarchy[n_hi - i] = dmIn; in DMForestTransferVecFromBase_pforest()
4675 fineDM = hierarchy[i]; in DMForestTransferVecFromBase_pforest()
4688 PetscCall(PetscFree2(hierarchy, hierarchy_forest)); in DMForestTransferVecFromBase_pforest()

12