xref: /petsc/src/dm/impls/plex/plexdistribute.c (revision 4eca1733c1f848c3ba1681e3f28e0ae639cf28ed)
170034214SMatthew G. Knepley #include <petsc-private/dmpleximpl.h>   /*I      "petscdmplex.h"   I*/
270034214SMatthew G. Knepley #include <petscsf.h>
370034214SMatthew G. Knepley 
470034214SMatthew G. Knepley #undef __FUNCT__
570034214SMatthew G. Knepley #define __FUNCT__ "DMPlexSetAdjacencyUseCone"
670034214SMatthew G. Knepley /*@
770034214SMatthew G. Knepley   DMPlexSetAdjacencyUseCone - Define adjacency in the mesh using either the cone or the support first
870034214SMatthew G. Knepley 
970034214SMatthew G. Knepley   Input Parameters:
1070034214SMatthew G. Knepley + dm      - The DM object
1170034214SMatthew G. Knepley - useCone - Flag to use the cone first
1270034214SMatthew G. Knepley 
1370034214SMatthew G. Knepley   Level: intermediate
1470034214SMatthew G. Knepley 
1570034214SMatthew G. Knepley   Notes:
1670034214SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE
1770034214SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in star(cone(p)),    useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
1870034214SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
1970034214SMatthew G. Knepley 
2070034214SMatthew G. Knepley .seealso: DMPlexGetAdjacencyUseCone(), DMPlexSetAdjacencyUseClosure(), DMPlexGetAdjacencyUseClosure(), DMPlexDistribute(), DMPlexPreallocateOperator()
2170034214SMatthew G. Knepley @*/
2270034214SMatthew G. Knepley PetscErrorCode DMPlexSetAdjacencyUseCone(DM dm, PetscBool useCone)
2370034214SMatthew G. Knepley {
2470034214SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex *) dm->data;
2570034214SMatthew G. Knepley 
2670034214SMatthew G. Knepley   PetscFunctionBegin;
2770034214SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
2870034214SMatthew G. Knepley   mesh->useCone = useCone;
2970034214SMatthew G. Knepley   PetscFunctionReturn(0);
3070034214SMatthew G. Knepley }
3170034214SMatthew G. Knepley 
3270034214SMatthew G. Knepley #undef __FUNCT__
3370034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacencyUseCone"
3470034214SMatthew G. Knepley /*@
3570034214SMatthew G. Knepley   DMPlexGetAdjacencyUseCone - Query whether adjacency in the mesh uses the cone or the support first
3670034214SMatthew G. Knepley 
3770034214SMatthew G. Knepley   Input Parameter:
3870034214SMatthew G. Knepley . dm      - The DM object
3970034214SMatthew G. Knepley 
4070034214SMatthew G. Knepley   Output Parameter:
4170034214SMatthew G. Knepley . useCone - Flag to use the cone first
4270034214SMatthew G. Knepley 
4370034214SMatthew G. Knepley   Level: intermediate
4470034214SMatthew G. Knepley 
4570034214SMatthew G. Knepley   Notes:
4670034214SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE
4770034214SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in star(cone(p)),    useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
4870034214SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
4970034214SMatthew G. Knepley 
5070034214SMatthew G. Knepley .seealso: DMPlexSetAdjacencyUseCone(), DMPlexSetAdjacencyUseClosure(), DMPlexGetAdjacencyUseClosure(), DMPlexDistribute(), DMPlexPreallocateOperator()
5170034214SMatthew G. Knepley @*/
5270034214SMatthew G. Knepley PetscErrorCode DMPlexGetAdjacencyUseCone(DM dm, PetscBool *useCone)
5370034214SMatthew G. Knepley {
5470034214SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex *) dm->data;
5570034214SMatthew G. Knepley 
5670034214SMatthew G. Knepley   PetscFunctionBegin;
5770034214SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
5870034214SMatthew G. Knepley   PetscValidIntPointer(useCone, 2);
5970034214SMatthew G. Knepley   *useCone = mesh->useCone;
6070034214SMatthew G. Knepley   PetscFunctionReturn(0);
6170034214SMatthew G. Knepley }
6270034214SMatthew G. Knepley 
6370034214SMatthew G. Knepley #undef __FUNCT__
6470034214SMatthew G. Knepley #define __FUNCT__ "DMPlexSetAdjacencyUseClosure"
6570034214SMatthew G. Knepley /*@
6670034214SMatthew G. Knepley   DMPlexSetAdjacencyUseClosure - Define adjacency in the mesh using the transitive closure
6770034214SMatthew G. Knepley 
6870034214SMatthew G. Knepley   Input Parameters:
6970034214SMatthew G. Knepley + dm      - The DM object
7070034214SMatthew G. Knepley - useClosure - Flag to use the closure
7170034214SMatthew G. Knepley 
7270034214SMatthew G. Knepley   Level: intermediate
7370034214SMatthew G. Knepley 
7470034214SMatthew G. Knepley   Notes:
7570034214SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE
7670034214SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in star(cone(p)),    useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
7770034214SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
7870034214SMatthew G. Knepley 
7970034214SMatthew G. Knepley .seealso: DMPlexGetAdjacencyUseClosure(), DMPlexSetAdjacencyUseCone(), DMPlexGetAdjacencyUseCone(), DMPlexDistribute(), DMPlexPreallocateOperator()
8070034214SMatthew G. Knepley @*/
8170034214SMatthew G. Knepley PetscErrorCode DMPlexSetAdjacencyUseClosure(DM dm, PetscBool useClosure)
8270034214SMatthew G. Knepley {
8370034214SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex *) dm->data;
8470034214SMatthew G. Knepley 
8570034214SMatthew G. Knepley   PetscFunctionBegin;
8670034214SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
8770034214SMatthew G. Knepley   mesh->useClosure = useClosure;
8870034214SMatthew G. Knepley   PetscFunctionReturn(0);
8970034214SMatthew G. Knepley }
9070034214SMatthew G. Knepley 
9170034214SMatthew G. Knepley #undef __FUNCT__
9270034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacencyUseClosure"
9370034214SMatthew G. Knepley /*@
9470034214SMatthew G. Knepley   DMPlexGetAdjacencyUseClosure - Query whether adjacency in the mesh uses the transitive closure
9570034214SMatthew G. Knepley 
9670034214SMatthew G. Knepley   Input Parameter:
9770034214SMatthew G. Knepley . dm      - The DM object
9870034214SMatthew G. Knepley 
9970034214SMatthew G. Knepley   Output Parameter:
10070034214SMatthew G. Knepley . useClosure - Flag to use the closure
10170034214SMatthew G. Knepley 
10270034214SMatthew G. Knepley   Level: intermediate
10370034214SMatthew G. Knepley 
10470034214SMatthew G. Knepley   Notes:
10570034214SMatthew G. Knepley $     FEM:   Two points p and q are adjacent if q \in closure(star(p)), useCone = PETSC_FALSE, useClosure = PETSC_TRUE
10670034214SMatthew G. Knepley $     FVM:   Two points p and q are adjacent if q \in star(cone(p)),    useCone = PETSC_TRUE,  useClosure = PETSC_FALSE
10770034214SMatthew G. Knepley $     FVM++: Two points p and q are adjacent if q \in star(closure(p)), useCone = PETSC_TRUE,  useClosure = PETSC_TRUE
10870034214SMatthew G. Knepley 
10970034214SMatthew G. Knepley .seealso: DMPlexSetAdjacencyUseClosure(), DMPlexSetAdjacencyUseCone(), DMPlexGetAdjacencyUseCone(), DMPlexDistribute(), DMPlexPreallocateOperator()
11070034214SMatthew G. Knepley @*/
11170034214SMatthew G. Knepley PetscErrorCode DMPlexGetAdjacencyUseClosure(DM dm, PetscBool *useClosure)
11270034214SMatthew G. Knepley {
11370034214SMatthew G. Knepley   DM_Plex *mesh = (DM_Plex *) dm->data;
11470034214SMatthew G. Knepley 
11570034214SMatthew G. Knepley   PetscFunctionBegin;
11670034214SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
11770034214SMatthew G. Knepley   PetscValidIntPointer(useClosure, 2);
11870034214SMatthew G. Knepley   *useClosure = mesh->useClosure;
11970034214SMatthew G. Knepley   PetscFunctionReturn(0);
12070034214SMatthew G. Knepley }
12170034214SMatthew G. Knepley 
12270034214SMatthew G. Knepley #undef __FUNCT__
123a17985deSToby Isaac #define __FUNCT__ "DMPlexSetAdjacencyUseAnchors"
1248b0b4c70SToby Isaac /*@
125a17985deSToby Isaac   DMPlexSetAdjacencyUseAnchors - Define adjacency in the mesh using the point-to-point constraints.
1268b0b4c70SToby Isaac 
1278b0b4c70SToby Isaac   Input Parameters:
1288b0b4c70SToby Isaac + dm      - The DM object
1295b317d89SToby Isaac - useAnchors - Flag to use the constraints.  If PETSC_TRUE, then constrained points are omitted from DMPlexGetAdjacency(), and their anchor points appear in their place.
1308b0b4c70SToby Isaac 
1318b0b4c70SToby Isaac   Level: intermediate
1328b0b4c70SToby Isaac 
133a17985deSToby Isaac .seealso: DMPlexGetAdjacencyUseClosure(), DMPlexSetAdjacencyUseCone(), DMPlexGetAdjacencyUseCone(), DMPlexDistribute(), DMPlexPreallocateOperator(), DMPlexSetAnchors()
1348b0b4c70SToby Isaac @*/
1355b317d89SToby Isaac PetscErrorCode DMPlexSetAdjacencyUseAnchors(DM dm, PetscBool useAnchors)
1368b0b4c70SToby Isaac {
1378b0b4c70SToby Isaac   DM_Plex *mesh = (DM_Plex *) dm->data;
1388b0b4c70SToby Isaac 
1398b0b4c70SToby Isaac   PetscFunctionBegin;
1408b0b4c70SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1415b317d89SToby Isaac   mesh->useAnchors = useAnchors;
1428b0b4c70SToby Isaac   PetscFunctionReturn(0);
1438b0b4c70SToby Isaac }
1448b0b4c70SToby Isaac 
1458b0b4c70SToby Isaac #undef __FUNCT__
146a17985deSToby Isaac #define __FUNCT__ "DMPlexGetAdjacencyUseAnchors"
1478b0b4c70SToby Isaac /*@
148a17985deSToby Isaac   DMPlexGetAdjacencyUseAnchors - Query whether adjacency in the mesh uses the point-to-point constraints.
1498b0b4c70SToby Isaac 
1508b0b4c70SToby Isaac   Input Parameter:
1518b0b4c70SToby Isaac . dm      - The DM object
1528b0b4c70SToby Isaac 
1538b0b4c70SToby Isaac   Output Parameter:
1545b317d89SToby Isaac . useAnchors - Flag to use the closure.  If PETSC_TRUE, then constrained points are omitted from DMPlexGetAdjacency(), and their anchor points appear in their place.
1558b0b4c70SToby Isaac 
1568b0b4c70SToby Isaac   Level: intermediate
1578b0b4c70SToby Isaac 
158a17985deSToby Isaac .seealso: DMPlexSetAdjacencyUseAnchors(), DMPlexSetAdjacencyUseCone(), DMPlexGetAdjacencyUseCone(), DMPlexDistribute(), DMPlexPreallocateOperator(), DMPlexSetAnchors()
1598b0b4c70SToby Isaac @*/
1605b317d89SToby Isaac PetscErrorCode DMPlexGetAdjacencyUseAnchors(DM dm, PetscBool *useAnchors)
1618b0b4c70SToby Isaac {
1628b0b4c70SToby Isaac   DM_Plex *mesh = (DM_Plex *) dm->data;
1638b0b4c70SToby Isaac 
1648b0b4c70SToby Isaac   PetscFunctionBegin;
1658b0b4c70SToby Isaac   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
1665b317d89SToby Isaac   PetscValidIntPointer(useAnchors, 2);
1675b317d89SToby Isaac   *useAnchors = mesh->useAnchors;
1688b0b4c70SToby Isaac   PetscFunctionReturn(0);
1698b0b4c70SToby Isaac }
1708b0b4c70SToby Isaac 
1718b0b4c70SToby Isaac #undef __FUNCT__
17270034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacency_Cone_Internal"
17370034214SMatthew G. Knepley static PetscErrorCode DMPlexGetAdjacency_Cone_Internal(DM dm, PetscInt p, PetscInt *adjSize, PetscInt adj[])
17470034214SMatthew G. Knepley {
17570034214SMatthew G. Knepley   const PetscInt *cone = NULL;
17670034214SMatthew G. Knepley   PetscInt        numAdj = 0, maxAdjSize = *adjSize, coneSize, c;
17770034214SMatthew G. Knepley   PetscErrorCode  ierr;
17870034214SMatthew G. Knepley 
17970034214SMatthew G. Knepley   PetscFunctionBeginHot;
18070034214SMatthew G. Knepley   ierr = DMPlexGetConeSize(dm, p, &coneSize);CHKERRQ(ierr);
18170034214SMatthew G. Knepley   ierr = DMPlexGetCone(dm, p, &cone);CHKERRQ(ierr);
18270034214SMatthew G. Knepley   for (c = 0; c < coneSize; ++c) {
18370034214SMatthew G. Knepley     const PetscInt *support = NULL;
18470034214SMatthew G. Knepley     PetscInt        supportSize, s, q;
18570034214SMatthew G. Knepley 
18670034214SMatthew G. Knepley     ierr = DMPlexGetSupportSize(dm, cone[c], &supportSize);CHKERRQ(ierr);
18770034214SMatthew G. Knepley     ierr = DMPlexGetSupport(dm, cone[c], &support);CHKERRQ(ierr);
18870034214SMatthew G. Knepley     for (s = 0; s < supportSize; ++s) {
18970034214SMatthew G. Knepley       for (q = 0; q < numAdj || (adj[numAdj++] = support[s],0); ++q) {
19070034214SMatthew G. Knepley         if (support[s] == adj[q]) break;
19170034214SMatthew G. Knepley       }
19270034214SMatthew G. Knepley       if (numAdj > maxAdjSize) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid mesh exceeded adjacency allocation (%D)", maxAdjSize);
19370034214SMatthew G. Knepley     }
19470034214SMatthew G. Knepley   }
19570034214SMatthew G. Knepley   *adjSize = numAdj;
19670034214SMatthew G. Knepley   PetscFunctionReturn(0);
19770034214SMatthew G. Knepley }
19870034214SMatthew G. Knepley 
19970034214SMatthew G. Knepley #undef __FUNCT__
20070034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacency_Support_Internal"
20170034214SMatthew G. Knepley static PetscErrorCode DMPlexGetAdjacency_Support_Internal(DM dm, PetscInt p, PetscInt *adjSize, PetscInt adj[])
20270034214SMatthew G. Knepley {
20370034214SMatthew G. Knepley   const PetscInt *support = NULL;
20470034214SMatthew G. Knepley   PetscInt        numAdj   = 0, maxAdjSize = *adjSize, supportSize, s;
20570034214SMatthew G. Knepley   PetscErrorCode  ierr;
20670034214SMatthew G. Knepley 
20770034214SMatthew G. Knepley   PetscFunctionBeginHot;
20870034214SMatthew G. Knepley   ierr = DMPlexGetSupportSize(dm, p, &supportSize);CHKERRQ(ierr);
20970034214SMatthew G. Knepley   ierr = DMPlexGetSupport(dm, p, &support);CHKERRQ(ierr);
21070034214SMatthew G. Knepley   for (s = 0; s < supportSize; ++s) {
21170034214SMatthew G. Knepley     const PetscInt *cone = NULL;
21270034214SMatthew G. Knepley     PetscInt        coneSize, c, q;
21370034214SMatthew G. Knepley 
21470034214SMatthew G. Knepley     ierr = DMPlexGetConeSize(dm, support[s], &coneSize);CHKERRQ(ierr);
21570034214SMatthew G. Knepley     ierr = DMPlexGetCone(dm, support[s], &cone);CHKERRQ(ierr);
21670034214SMatthew G. Knepley     for (c = 0; c < coneSize; ++c) {
21770034214SMatthew G. Knepley       for (q = 0; q < numAdj || (adj[numAdj++] = cone[c],0); ++q) {
21870034214SMatthew G. Knepley         if (cone[c] == adj[q]) break;
21970034214SMatthew G. Knepley       }
22070034214SMatthew G. Knepley       if (numAdj > maxAdjSize) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid mesh exceeded adjacency allocation (%D)", maxAdjSize);
22170034214SMatthew G. Knepley     }
22270034214SMatthew G. Knepley   }
22370034214SMatthew G. Knepley   *adjSize = numAdj;
22470034214SMatthew G. Knepley   PetscFunctionReturn(0);
22570034214SMatthew G. Knepley }
22670034214SMatthew G. Knepley 
22770034214SMatthew G. Knepley #undef __FUNCT__
22870034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacency_Transitive_Internal"
22970034214SMatthew G. Knepley static PetscErrorCode DMPlexGetAdjacency_Transitive_Internal(DM dm, PetscInt p, PetscBool useClosure, PetscInt *adjSize, PetscInt adj[])
23070034214SMatthew G. Knepley {
23170034214SMatthew G. Knepley   PetscInt      *star = NULL;
23270034214SMatthew G. Knepley   PetscInt       numAdj = 0, maxAdjSize = *adjSize, starSize, s;
23370034214SMatthew G. Knepley   PetscErrorCode ierr;
23470034214SMatthew G. Knepley 
23570034214SMatthew G. Knepley   PetscFunctionBeginHot;
23670034214SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dm, p, useClosure, &starSize, &star);CHKERRQ(ierr);
23770034214SMatthew G. Knepley   for (s = 0; s < starSize*2; s += 2) {
23870034214SMatthew G. Knepley     const PetscInt *closure = NULL;
23970034214SMatthew G. Knepley     PetscInt        closureSize, c, q;
24070034214SMatthew G. Knepley 
24170034214SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, star[s], (PetscBool)!useClosure, &closureSize, (PetscInt**) &closure);CHKERRQ(ierr);
24270034214SMatthew G. Knepley     for (c = 0; c < closureSize*2; c += 2) {
24370034214SMatthew G. Knepley       for (q = 0; q < numAdj || (adj[numAdj++] = closure[c],0); ++q) {
24470034214SMatthew G. Knepley         if (closure[c] == adj[q]) break;
24570034214SMatthew G. Knepley       }
24670034214SMatthew G. Knepley       if (numAdj > maxAdjSize) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid mesh exceeded adjacency allocation (%D)", maxAdjSize);
24770034214SMatthew G. Knepley     }
24870034214SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, star[s], (PetscBool)!useClosure, &closureSize, (PetscInt**) &closure);CHKERRQ(ierr);
24970034214SMatthew G. Knepley   }
25070034214SMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dm, p, useClosure, &starSize, &star);CHKERRQ(ierr);
25170034214SMatthew G. Knepley   *adjSize = numAdj;
25270034214SMatthew G. Knepley   PetscFunctionReturn(0);
25370034214SMatthew G. Knepley }
25470034214SMatthew G. Knepley 
25570034214SMatthew G. Knepley #undef __FUNCT__
25670034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacency_Internal"
2575b317d89SToby Isaac PetscErrorCode DMPlexGetAdjacency_Internal(DM dm, PetscInt p, PetscBool useCone, PetscBool useTransitiveClosure, PetscBool useAnchors, PetscInt *adjSize, PetscInt *adj[])
25870034214SMatthew G. Knepley {
25979bad331SMatthew G. Knepley   static PetscInt asiz = 0;
2608b0b4c70SToby Isaac   PetscInt maxAnchors = 1;
2618b0b4c70SToby Isaac   PetscInt aStart = -1, aEnd = -1;
2628b0b4c70SToby Isaac   PetscInt maxAdjSize;
2638b0b4c70SToby Isaac   PetscSection aSec = NULL;
2648b0b4c70SToby Isaac   IS aIS = NULL;
2658b0b4c70SToby Isaac   const PetscInt *anchors;
26670034214SMatthew G. Knepley   PetscErrorCode  ierr;
26770034214SMatthew G. Knepley 
26870034214SMatthew G. Knepley   PetscFunctionBeginHot;
2695b317d89SToby Isaac   if (useAnchors) {
270a17985deSToby Isaac     ierr = DMPlexGetAnchors(dm,&aSec,&aIS);CHKERRQ(ierr);
2718b0b4c70SToby Isaac     if (aSec) {
2728b0b4c70SToby Isaac       ierr = PetscSectionGetMaxDof(aSec,&maxAnchors);CHKERRQ(ierr);
27324c766afSToby Isaac       maxAnchors = PetscMax(1,maxAnchors);
2748b0b4c70SToby Isaac       ierr = PetscSectionGetChart(aSec,&aStart,&aEnd);CHKERRQ(ierr);
2758b0b4c70SToby Isaac       ierr = ISGetIndices(aIS,&anchors);CHKERRQ(ierr);
2768b0b4c70SToby Isaac     }
2778b0b4c70SToby Isaac   }
27879bad331SMatthew G. Knepley   if (!*adj) {
27924c766afSToby Isaac     PetscInt depth, coneSeries, supportSeries, maxC, maxS, pStart, pEnd;
28079bad331SMatthew G. Knepley 
28124c766afSToby Isaac     ierr  = DMPlexGetChart(dm, &pStart,&pEnd);CHKERRQ(ierr);
28279bad331SMatthew G. Knepley     ierr  = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
28324c766afSToby Isaac     ierr  = DMPlexGetMaxSizes(dm, &maxC, &maxS);CHKERRQ(ierr);
28424c766afSToby Isaac     coneSeries    = (maxC > 1) ? ((PetscPowInt(maxC,depth+1)-1)/(maxC-1)) : depth+1;
28524c766afSToby Isaac     supportSeries = (maxS > 1) ? ((PetscPowInt(maxS,depth+1)-1)/(maxS-1)) : depth+1;
28624c766afSToby Isaac     asiz  = PetscMax(PetscPowInt(maxS,depth)*coneSeries,PetscPowInt(maxC,depth)*supportSeries);
2878b0b4c70SToby Isaac     asiz *= maxAnchors;
28824c766afSToby Isaac     asiz  = PetscMin(asiz,pEnd-pStart);
28979bad331SMatthew G. Knepley     ierr  = PetscMalloc1(asiz,adj);CHKERRQ(ierr);
29079bad331SMatthew G. Knepley   }
29179bad331SMatthew G. Knepley   if (*adjSize < 0) *adjSize = asiz;
2928b0b4c70SToby Isaac   maxAdjSize = *adjSize;
29370034214SMatthew G. Knepley   if (useTransitiveClosure) {
29479bad331SMatthew G. Knepley     ierr = DMPlexGetAdjacency_Transitive_Internal(dm, p, useCone, adjSize, *adj);CHKERRQ(ierr);
29570034214SMatthew G. Knepley   } else if (useCone) {
29679bad331SMatthew G. Knepley     ierr = DMPlexGetAdjacency_Cone_Internal(dm, p, adjSize, *adj);CHKERRQ(ierr);
29770034214SMatthew G. Knepley   } else {
29879bad331SMatthew G. Knepley     ierr = DMPlexGetAdjacency_Support_Internal(dm, p, adjSize, *adj);CHKERRQ(ierr);
29970034214SMatthew G. Knepley   }
3005b317d89SToby Isaac   if (useAnchors && aSec) {
3018b0b4c70SToby Isaac     PetscInt origSize = *adjSize;
3028b0b4c70SToby Isaac     PetscInt numAdj = origSize;
3038b0b4c70SToby Isaac     PetscInt i = 0, j;
3048b0b4c70SToby Isaac     PetscInt *orig = *adj;
3058b0b4c70SToby Isaac 
3068b0b4c70SToby Isaac     while (i < origSize) {
3078b0b4c70SToby Isaac       PetscInt p = orig[i];
3088b0b4c70SToby Isaac       PetscInt aDof = 0;
3098b0b4c70SToby Isaac 
3108b0b4c70SToby Isaac       if (p >= aStart && p < aEnd) {
3118b0b4c70SToby Isaac         ierr = PetscSectionGetDof(aSec,p,&aDof);CHKERRQ(ierr);
3128b0b4c70SToby Isaac       }
3138b0b4c70SToby Isaac       if (aDof) {
3148b0b4c70SToby Isaac         PetscInt aOff;
3158b0b4c70SToby Isaac         PetscInt s, q;
3168b0b4c70SToby Isaac 
3178b0b4c70SToby Isaac         for (j = i + 1; j < numAdj; j++) {
3188b0b4c70SToby Isaac           orig[j - 1] = orig[j];
3198b0b4c70SToby Isaac         }
3208b0b4c70SToby Isaac         origSize--;
3218b0b4c70SToby Isaac         numAdj--;
3228b0b4c70SToby Isaac         ierr = PetscSectionGetOffset(aSec,p,&aOff);CHKERRQ(ierr);
3238b0b4c70SToby Isaac         for (s = 0; s < aDof; ++s) {
3248b0b4c70SToby Isaac           for (q = 0; q < numAdj || (orig[numAdj++] = anchors[aOff+s],0); ++q) {
3258b0b4c70SToby Isaac             if (anchors[aOff+s] == orig[q]) break;
3268b0b4c70SToby Isaac           }
3278b0b4c70SToby Isaac           if (numAdj > maxAdjSize) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid mesh exceeded adjacency allocation (%D)", maxAdjSize);
3288b0b4c70SToby Isaac         }
3298b0b4c70SToby Isaac       }
3308b0b4c70SToby Isaac       else {
3318b0b4c70SToby Isaac         i++;
3328b0b4c70SToby Isaac       }
3338b0b4c70SToby Isaac     }
3348b0b4c70SToby Isaac     *adjSize = numAdj;
3358b0b4c70SToby Isaac     ierr = ISRestoreIndices(aIS,&anchors);CHKERRQ(ierr);
3368b0b4c70SToby Isaac   }
33770034214SMatthew G. Knepley   PetscFunctionReturn(0);
33870034214SMatthew G. Knepley }
33970034214SMatthew G. Knepley 
34070034214SMatthew G. Knepley #undef __FUNCT__
34170034214SMatthew G. Knepley #define __FUNCT__ "DMPlexGetAdjacency"
34270034214SMatthew G. Knepley /*@
34370034214SMatthew G. Knepley   DMPlexGetAdjacency - Return all points adjacent to the given point
34470034214SMatthew G. Knepley 
34570034214SMatthew G. Knepley   Input Parameters:
34670034214SMatthew G. Knepley + dm - The DM object
34770034214SMatthew G. Knepley . p  - The point
34870034214SMatthew G. Knepley . adjSize - The maximum size of adj if it is non-NULL, or PETSC_DETERMINE
34970034214SMatthew G. Knepley - adj - Either NULL so that the array is allocated, or an existing array with size adjSize
35070034214SMatthew G. Knepley 
35170034214SMatthew G. Knepley   Output Parameters:
35270034214SMatthew G. Knepley + adjSize - The number of adjacent points
35370034214SMatthew G. Knepley - adj - The adjacent points
35470034214SMatthew G. Knepley 
35570034214SMatthew G. Knepley   Level: advanced
35670034214SMatthew G. Knepley 
35770034214SMatthew G. Knepley   Notes: The user must PetscFree the adj array if it was not passed in.
35870034214SMatthew G. Knepley 
35970034214SMatthew G. Knepley .seealso: DMPlexSetAdjacencyUseCone(), DMPlexSetAdjacencyUseClosure(), DMPlexDistribute(), DMCreateMatrix(), DMPlexPreallocateOperator()
36070034214SMatthew G. Knepley @*/
36170034214SMatthew G. Knepley PetscErrorCode DMPlexGetAdjacency(DM dm, PetscInt p, PetscInt *adjSize, PetscInt *adj[])
36270034214SMatthew G. Knepley {
36370034214SMatthew G. Knepley   DM_Plex       *mesh = (DM_Plex *) dm->data;
36470034214SMatthew G. Knepley   PetscErrorCode ierr;
36570034214SMatthew G. Knepley 
36670034214SMatthew G. Knepley   PetscFunctionBeginHot;
36770034214SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
36870034214SMatthew G. Knepley   PetscValidPointer(adjSize,3);
36970034214SMatthew G. Knepley   PetscValidPointer(adj,4);
3705b317d89SToby Isaac   ierr = DMPlexGetAdjacency_Internal(dm, p, mesh->useCone, mesh->useClosure, mesh->useAnchors, adjSize, adj);CHKERRQ(ierr);
37170034214SMatthew G. Knepley   PetscFunctionReturn(0);
37270034214SMatthew G. Knepley }
373b0a623aaSMatthew G. Knepley #undef __FUNCT__
374b0a623aaSMatthew G. Knepley #define __FUNCT__ "DMPlexCreateTwoSidedProcessSF"
375b0a623aaSMatthew G. Knepley /*@
376b0a623aaSMatthew G. Knepley   DMPlexCreateTwoSidedProcessSF - Create an SF which just has process connectivity
377b0a623aaSMatthew G. Knepley 
378b0a623aaSMatthew G. Knepley   Collective on DM
379b0a623aaSMatthew G. Knepley 
380b0a623aaSMatthew G. Knepley   Input Parameters:
381b0a623aaSMatthew G. Knepley + dm      - The DM
382b0a623aaSMatthew G. Knepley - sfPoint - The PetscSF which encodes point connectivity
383b0a623aaSMatthew G. Knepley 
384b0a623aaSMatthew G. Knepley   Output Parameters:
385b0a623aaSMatthew G. Knepley + processRanks - A list of process neighbors, or NULL
386b0a623aaSMatthew G. Knepley - sfProcess    - An SF encoding the two-sided process connectivity, or NULL
387b0a623aaSMatthew G. Knepley 
388b0a623aaSMatthew G. Knepley   Level: developer
389b0a623aaSMatthew G. Knepley 
390b0a623aaSMatthew G. Knepley .seealso: PetscSFCreate(), DMPlexCreateProcessSF()
391b0a623aaSMatthew G. Knepley @*/
392b0a623aaSMatthew G. Knepley PetscErrorCode DMPlexCreateTwoSidedProcessSF(DM dm, PetscSF sfPoint, PetscSection rootRankSection, IS rootRanks, PetscSection leafRankSection, IS leafRanks, IS *processRanks, PetscSF *sfProcess)
393b0a623aaSMatthew G. Knepley {
394b0a623aaSMatthew G. Knepley   const PetscSFNode *remotePoints;
395b0a623aaSMatthew G. Knepley   PetscInt          *localPointsNew;
396b0a623aaSMatthew G. Knepley   PetscSFNode       *remotePointsNew;
397b0a623aaSMatthew G. Knepley   const PetscInt    *nranks;
398b0a623aaSMatthew G. Knepley   PetscInt          *ranksNew;
399b0a623aaSMatthew G. Knepley   PetscBT            neighbors;
400b0a623aaSMatthew G. Knepley   PetscInt           pStart, pEnd, p, numLeaves, l, numNeighbors, n;
401b0a623aaSMatthew G. Knepley   PetscMPIInt        numProcs, proc, rank;
402b0a623aaSMatthew G. Knepley   PetscErrorCode     ierr;
403b0a623aaSMatthew G. Knepley 
404b0a623aaSMatthew G. Knepley   PetscFunctionBegin;
405b0a623aaSMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
406b0a623aaSMatthew G. Knepley   PetscValidHeaderSpecific(sfPoint, PETSCSF_CLASSID, 2);
407b0a623aaSMatthew G. Knepley   if (processRanks) {PetscValidPointer(processRanks, 3);}
408b0a623aaSMatthew G. Knepley   if (sfProcess)    {PetscValidPointer(sfProcess, 4);}
409b0a623aaSMatthew G. Knepley   ierr = MPI_Comm_size(PetscObjectComm((PetscObject) dm), &numProcs);CHKERRQ(ierr);
410b0a623aaSMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRQ(ierr);
411b0a623aaSMatthew G. Knepley   ierr = PetscSFGetGraph(sfPoint, NULL, &numLeaves, NULL, &remotePoints);CHKERRQ(ierr);
412b0a623aaSMatthew G. Knepley   ierr = PetscBTCreate(numProcs, &neighbors);CHKERRQ(ierr);
413b0a623aaSMatthew G. Knepley   ierr = PetscBTMemzero(numProcs, neighbors);CHKERRQ(ierr);
414b0a623aaSMatthew G. Knepley   /* Compute root-to-leaf process connectivity */
415b0a623aaSMatthew G. Knepley   ierr = PetscSectionGetChart(rootRankSection, &pStart, &pEnd);CHKERRQ(ierr);
416b0a623aaSMatthew G. Knepley   ierr = ISGetIndices(rootRanks, &nranks);CHKERRQ(ierr);
417b0a623aaSMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
418b0a623aaSMatthew G. Knepley     PetscInt ndof, noff, n;
419b0a623aaSMatthew G. Knepley 
420b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetDof(rootRankSection, p, &ndof);CHKERRQ(ierr);
421b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetOffset(rootRankSection, p, &noff);CHKERRQ(ierr);
422b0a623aaSMatthew G. Knepley     for (n = 0; n < ndof; ++n) {ierr = PetscBTSet(neighbors, nranks[noff+n]);}
423b0a623aaSMatthew G. Knepley   }
424b0a623aaSMatthew G. Knepley   ierr = ISRestoreIndices(rootRanks, &nranks);CHKERRQ(ierr);
425b0a623aaSMatthew G. Knepley   /* Compute leaf-to-neighbor process connectivity */
426b0a623aaSMatthew G. Knepley   ierr = PetscSectionGetChart(leafRankSection, &pStart, &pEnd);CHKERRQ(ierr);
427b0a623aaSMatthew G. Knepley   ierr = ISGetIndices(leafRanks, &nranks);CHKERRQ(ierr);
428b0a623aaSMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
429b0a623aaSMatthew G. Knepley     PetscInt ndof, noff, n;
430b0a623aaSMatthew G. Knepley 
431b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetDof(leafRankSection, p, &ndof);CHKERRQ(ierr);
432b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetOffset(leafRankSection, p, &noff);CHKERRQ(ierr);
433b0a623aaSMatthew G. Knepley     for (n = 0; n < ndof; ++n) {ierr = PetscBTSet(neighbors, nranks[noff+n]);}
434b0a623aaSMatthew G. Knepley   }
435b0a623aaSMatthew G. Knepley   ierr = ISRestoreIndices(leafRanks, &nranks);CHKERRQ(ierr);
436b0a623aaSMatthew G. Knepley   /* Compute leaf-to-root process connectivity */
437b0a623aaSMatthew G. Knepley   for (l = 0; l < numLeaves; ++l) {PetscBTSet(neighbors, remotePoints[l].rank);}
438b0a623aaSMatthew G. Knepley   /* Calculate edges */
439b0a623aaSMatthew G. Knepley   PetscBTClear(neighbors, rank);
440b0a623aaSMatthew G. Knepley   for(proc = 0, numNeighbors = 0; proc < numProcs; ++proc) {if (PetscBTLookup(neighbors, proc)) ++numNeighbors;}
441b0a623aaSMatthew G. Knepley   ierr = PetscMalloc1(numNeighbors, &ranksNew);CHKERRQ(ierr);
442b0a623aaSMatthew G. Knepley   ierr = PetscMalloc1(numNeighbors, &localPointsNew);CHKERRQ(ierr);
443b0a623aaSMatthew G. Knepley   ierr = PetscMalloc1(numNeighbors, &remotePointsNew);CHKERRQ(ierr);
444b0a623aaSMatthew G. Knepley   for(proc = 0, n = 0; proc < numProcs; ++proc) {
445b0a623aaSMatthew G. Knepley     if (PetscBTLookup(neighbors, proc)) {
446b0a623aaSMatthew G. Knepley       ranksNew[n]              = proc;
447b0a623aaSMatthew G. Knepley       localPointsNew[n]        = proc;
448b0a623aaSMatthew G. Knepley       remotePointsNew[n].index = rank;
449b0a623aaSMatthew G. Knepley       remotePointsNew[n].rank  = proc;
450b0a623aaSMatthew G. Knepley       ++n;
451b0a623aaSMatthew G. Knepley     }
452b0a623aaSMatthew G. Knepley   }
453b0a623aaSMatthew G. Knepley   ierr = PetscBTDestroy(&neighbors);CHKERRQ(ierr);
454b0a623aaSMatthew G. Knepley   if (processRanks) {ierr = ISCreateGeneral(PetscObjectComm((PetscObject)dm), numNeighbors, ranksNew, PETSC_OWN_POINTER, processRanks);CHKERRQ(ierr);}
455b0a623aaSMatthew G. Knepley   else              {ierr = PetscFree(ranksNew);CHKERRQ(ierr);}
456b0a623aaSMatthew G. Knepley   if (sfProcess) {
457b0a623aaSMatthew G. Knepley     ierr = PetscSFCreate(PetscObjectComm((PetscObject)dm), sfProcess);CHKERRQ(ierr);
458b0a623aaSMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) *sfProcess, "Two-Sided Process SF");CHKERRQ(ierr);
459b0a623aaSMatthew G. Knepley     ierr = PetscSFSetFromOptions(*sfProcess);CHKERRQ(ierr);
460b0a623aaSMatthew G. Knepley     ierr = PetscSFSetGraph(*sfProcess, numProcs, numNeighbors, localPointsNew, PETSC_OWN_POINTER, remotePointsNew, PETSC_OWN_POINTER);CHKERRQ(ierr);
461b0a623aaSMatthew G. Knepley   }
462b0a623aaSMatthew G. Knepley   PetscFunctionReturn(0);
463b0a623aaSMatthew G. Knepley }
464b0a623aaSMatthew G. Knepley 
465b0a623aaSMatthew G. Knepley #undef __FUNCT__
466b0a623aaSMatthew G. Knepley #define __FUNCT__ "DMPlexDistributeOwnership"
467b0a623aaSMatthew G. Knepley /*@
468b0a623aaSMatthew G. Knepley   DMPlexDistributeOwnership - Compute owner information for shared points. This basically gets two-sided for an SF.
469b0a623aaSMatthew G. Knepley 
470b0a623aaSMatthew G. Knepley   Collective on DM
471b0a623aaSMatthew G. Knepley 
472b0a623aaSMatthew G. Knepley   Input Parameter:
473b0a623aaSMatthew G. Knepley . dm - The DM
474b0a623aaSMatthew G. Knepley 
475b0a623aaSMatthew G. Knepley   Output Parameters:
476b0a623aaSMatthew G. Knepley + rootSection - The number of leaves for a given root point
477b0a623aaSMatthew G. Knepley . rootrank    - The rank of each edge into the root point
478b0a623aaSMatthew G. Knepley . leafSection - The number of processes sharing a given leaf point
479b0a623aaSMatthew G. Knepley - leafrank    - The rank of each process sharing a leaf point
480b0a623aaSMatthew G. Knepley 
481b0a623aaSMatthew G. Knepley   Level: developer
482b0a623aaSMatthew G. Knepley 
483b0a623aaSMatthew G. Knepley .seealso: DMPlexCreateOverlap()
484b0a623aaSMatthew G. Knepley @*/
485b0a623aaSMatthew G. Knepley PetscErrorCode DMPlexDistributeOwnership(DM dm, PetscSection rootSection, IS *rootrank, PetscSection leafSection, IS *leafrank)
486b0a623aaSMatthew G. Knepley {
487b0a623aaSMatthew G. Knepley   MPI_Comm        comm;
488b0a623aaSMatthew G. Knepley   PetscSF         sfPoint;
489b0a623aaSMatthew G. Knepley   const PetscInt *rootdegree;
490b0a623aaSMatthew G. Knepley   PetscInt       *myrank, *remoterank;
491b0a623aaSMatthew G. Knepley   PetscInt        pStart, pEnd, p, nedges;
492b0a623aaSMatthew G. Knepley   PetscMPIInt     rank;
493b0a623aaSMatthew G. Knepley   PetscErrorCode  ierr;
494b0a623aaSMatthew G. Knepley 
495b0a623aaSMatthew G. Knepley   PetscFunctionBegin;
496b0a623aaSMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject) dm, &comm);CHKERRQ(ierr);
497b0a623aaSMatthew G. Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
498b0a623aaSMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
499b0a623aaSMatthew G. Knepley   ierr = DMGetPointSF(dm, &sfPoint);CHKERRQ(ierr);
500b0a623aaSMatthew G. Knepley   /* Compute number of leaves for each root */
501b0a623aaSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) rootSection, "Root Section");CHKERRQ(ierr);
502b0a623aaSMatthew G. Knepley   ierr = PetscSectionSetChart(rootSection, pStart, pEnd);CHKERRQ(ierr);
503b0a623aaSMatthew G. Knepley   ierr = PetscSFComputeDegreeBegin(sfPoint, &rootdegree);CHKERRQ(ierr);
504b0a623aaSMatthew G. Knepley   ierr = PetscSFComputeDegreeEnd(sfPoint, &rootdegree);CHKERRQ(ierr);
505b0a623aaSMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {ierr = PetscSectionSetDof(rootSection, p, rootdegree[p-pStart]);CHKERRQ(ierr);}
506b0a623aaSMatthew G. Knepley   ierr = PetscSectionSetUp(rootSection);CHKERRQ(ierr);
507b0a623aaSMatthew G. Knepley   /* Gather rank of each leaf to root */
508b0a623aaSMatthew G. Knepley   ierr = PetscSectionGetStorageSize(rootSection, &nedges);CHKERRQ(ierr);
509b0a623aaSMatthew G. Knepley   ierr = PetscMalloc1(pEnd-pStart, &myrank);CHKERRQ(ierr);
510b0a623aaSMatthew G. Knepley   ierr = PetscMalloc1(nedges,  &remoterank);CHKERRQ(ierr);
511b0a623aaSMatthew G. Knepley   for (p = 0; p < pEnd-pStart; ++p) myrank[p] = rank;
512b0a623aaSMatthew G. Knepley   ierr = PetscSFGatherBegin(sfPoint, MPIU_INT, myrank, remoterank);CHKERRQ(ierr);
513b0a623aaSMatthew G. Knepley   ierr = PetscSFGatherEnd(sfPoint, MPIU_INT, myrank, remoterank);CHKERRQ(ierr);
514b0a623aaSMatthew G. Knepley   ierr = PetscFree(myrank);CHKERRQ(ierr);
515b0a623aaSMatthew G. Knepley   ierr = ISCreateGeneral(comm, nedges, remoterank, PETSC_OWN_POINTER, rootrank);CHKERRQ(ierr);
516b0a623aaSMatthew G. Knepley   /* Distribute remote ranks to leaves */
517b0a623aaSMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) leafSection, "Leaf Section");CHKERRQ(ierr);
518b0a623aaSMatthew G. Knepley   ierr = DMPlexDistributeFieldIS(dm, sfPoint, rootSection, *rootrank, leafSection, leafrank);CHKERRQ(ierr);
519b0a623aaSMatthew G. Knepley   PetscFunctionReturn(0);
520b0a623aaSMatthew G. Knepley }
521b0a623aaSMatthew G. Knepley 
522b0a623aaSMatthew G. Knepley #undef __FUNCT__
523b0a623aaSMatthew G. Knepley #define __FUNCT__ "DMPlexCreateOverlap"
524278397a0SMatthew G. Knepley /*@C
525b0a623aaSMatthew G. Knepley   DMPlexCreateOverlap - Compute owner information for shared points. This basically gets two-sided for an SF.
526b0a623aaSMatthew G. Knepley 
527b0a623aaSMatthew G. Knepley   Collective on DM
528b0a623aaSMatthew G. Knepley 
529b0a623aaSMatthew G. Knepley   Input Parameters:
530b0a623aaSMatthew G. Knepley + dm          - The DM
531b0a623aaSMatthew G. Knepley . rootSection - The number of leaves for a given root point
532b0a623aaSMatthew G. Knepley . rootrank    - The rank of each edge into the root point
533b0a623aaSMatthew G. Knepley . leafSection - The number of processes sharing a given leaf point
534b0a623aaSMatthew G. Knepley - leafrank    - The rank of each process sharing a leaf point
535b0a623aaSMatthew G. Knepley 
536b0a623aaSMatthew G. Knepley   Output Parameters:
537b0a623aaSMatthew G. Knepley + ovRootSection - The number of new overlap points for each neighboring process
538b0a623aaSMatthew G. Knepley . ovRootPoints  - The new overlap points for each neighboring process
539b0a623aaSMatthew G. Knepley . ovLeafSection - The number of new overlap points from each neighboring process
540b0a623aaSMatthew G. Knepley - ovLeafPoints  - The new overlap points from each neighboring process
541b0a623aaSMatthew G. Knepley 
542b0a623aaSMatthew G. Knepley   Level: developer
543b0a623aaSMatthew G. Knepley 
544b0a623aaSMatthew G. Knepley .seealso: DMPlexDistributeOwnership()
545b0a623aaSMatthew G. Knepley @*/
546b0a623aaSMatthew G. Knepley PetscErrorCode DMPlexCreateOverlap(DM dm, PetscSection rootSection, IS rootrank, PetscSection leafSection, IS leafrank, PetscSection ovRootSection, PetscSFNode **ovRootPoints, PetscSection ovLeafSection, PetscSFNode **ovLeafPoints)
547b0a623aaSMatthew G. Knepley {
548b0a623aaSMatthew G. Knepley   DMLabel            ovAdjByRank; /* A DMLabel containing all points adjacent to shared points, separated by rank (value in label) */
549b0a623aaSMatthew G. Knepley   PetscSF            sfPoint, sfProc;
550b0a623aaSMatthew G. Knepley   IS                 valueIS;
551b0a623aaSMatthew G. Knepley   const PetscSFNode *remote;
552b0a623aaSMatthew G. Knepley   const PetscInt    *local;
553b0a623aaSMatthew G. Knepley   const PetscInt    *nrank, *rrank, *neighbors;
554b0a623aaSMatthew G. Knepley   PetscInt          *adj = NULL;
555b0a623aaSMatthew G. Knepley   PetscInt           pStart, pEnd, p, sStart, sEnd, nleaves, l, numNeighbors, n, ovSize;
556b0a623aaSMatthew G. Knepley   PetscMPIInt        rank, numProcs;
557b0a623aaSMatthew G. Knepley   PetscErrorCode     ierr;
558b0a623aaSMatthew G. Knepley 
559b0a623aaSMatthew G. Knepley   PetscFunctionBegin;
560b0a623aaSMatthew G. Knepley   ierr = MPI_Comm_size(PetscObjectComm((PetscObject) dm), &numProcs);CHKERRQ(ierr);
561b0a623aaSMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) dm), &rank);CHKERRQ(ierr);
562b0a623aaSMatthew G. Knepley   ierr = DMGetPointSF(dm, &sfPoint);CHKERRQ(ierr);
563b0a623aaSMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
564b0a623aaSMatthew G. Knepley   ierr = PetscSectionGetChart(leafSection, &sStart, &sEnd);CHKERRQ(ierr);
565b0a623aaSMatthew G. Knepley   ierr = PetscSFGetGraph(sfPoint, NULL, &nleaves, &local, &remote);CHKERRQ(ierr);
566b0a623aaSMatthew G. Knepley   ierr = DMLabelCreate("Overlap adjacency", &ovAdjByRank);CHKERRQ(ierr);
567b0a623aaSMatthew G. Knepley   /* Handle leaves: shared with the root point */
568b0a623aaSMatthew G. Knepley   for (l = 0; l < nleaves; ++l) {
569b0a623aaSMatthew G. Knepley     PetscInt adjSize = PETSC_DETERMINE, a;
570b0a623aaSMatthew G. Knepley 
571b0a623aaSMatthew G. Knepley     ierr = DMPlexGetAdjacency(dm, local[l], &adjSize, &adj);CHKERRQ(ierr);
572b0a623aaSMatthew G. Knepley     for (a = 0; a < adjSize; ++a) {ierr = DMLabelSetValue(ovAdjByRank, adj[a], remote[l].rank);CHKERRQ(ierr);}
573b0a623aaSMatthew G. Knepley   }
574b0a623aaSMatthew G. Knepley   ierr = ISGetIndices(rootrank, &rrank);CHKERRQ(ierr);
575b0a623aaSMatthew G. Knepley   ierr = ISGetIndices(leafrank, &nrank);CHKERRQ(ierr);
576b0a623aaSMatthew G. Knepley   /* Handle roots */
577b0a623aaSMatthew G. Knepley   for (p = pStart; p < pEnd; ++p) {
578b0a623aaSMatthew G. Knepley     PetscInt adjSize = PETSC_DETERMINE, neighbors = 0, noff, n, a;
579b0a623aaSMatthew G. Knepley 
580b0a623aaSMatthew G. Knepley     if ((p >= sStart) && (p < sEnd)) {
581b0a623aaSMatthew G. Knepley       /* Some leaves share a root with other leaves on different processes */
582b0a623aaSMatthew G. Knepley       ierr = PetscSectionGetDof(leafSection, p, &neighbors);CHKERRQ(ierr);
583b0a623aaSMatthew G. Knepley       if (neighbors) {
584b0a623aaSMatthew G. Knepley         ierr = PetscSectionGetOffset(leafSection, p, &noff);CHKERRQ(ierr);
585b0a623aaSMatthew G. Knepley         ierr = DMPlexGetAdjacency(dm, p, &adjSize, &adj);CHKERRQ(ierr);
586b0a623aaSMatthew G. Knepley         for (n = 0; n < neighbors; ++n) {
587b0a623aaSMatthew G. Knepley           const PetscInt remoteRank = nrank[noff+n];
588b0a623aaSMatthew G. Knepley 
589b0a623aaSMatthew G. Knepley           if (remoteRank == rank) continue;
590b0a623aaSMatthew G. Knepley           for (a = 0; a < adjSize; ++a) {ierr = DMLabelSetValue(ovAdjByRank, adj[a], remoteRank);CHKERRQ(ierr);}
591b0a623aaSMatthew G. Knepley         }
592b0a623aaSMatthew G. Knepley       }
593b0a623aaSMatthew G. Knepley     }
594b0a623aaSMatthew G. Knepley     /* Roots are shared with leaves */
595b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetDof(rootSection, p, &neighbors);CHKERRQ(ierr);
596b0a623aaSMatthew G. Knepley     if (!neighbors) continue;
597b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetOffset(rootSection, p, &noff);CHKERRQ(ierr);
598b0a623aaSMatthew G. Knepley     ierr = DMPlexGetAdjacency(dm, p, &adjSize, &adj);CHKERRQ(ierr);
599b0a623aaSMatthew G. Knepley     for (n = 0; n < neighbors; ++n) {
600b0a623aaSMatthew G. Knepley       const PetscInt remoteRank = rrank[noff+n];
601b0a623aaSMatthew G. Knepley 
602b0a623aaSMatthew G. Knepley       if (remoteRank == rank) continue;
603b0a623aaSMatthew G. Knepley       for (a = 0; a < adjSize; ++a) {ierr = DMLabelSetValue(ovAdjByRank, adj[a], remoteRank);CHKERRQ(ierr);}
604b0a623aaSMatthew G. Knepley     }
605b0a623aaSMatthew G. Knepley   }
606b0a623aaSMatthew G. Knepley   ierr = PetscFree(adj);CHKERRQ(ierr);
607b0a623aaSMatthew G. Knepley   ierr = ISRestoreIndices(rootrank, &rrank);CHKERRQ(ierr);
608b0a623aaSMatthew G. Knepley   ierr = ISRestoreIndices(leafrank, &nrank);CHKERRQ(ierr);
609b0a623aaSMatthew G. Knepley   {
610b0a623aaSMatthew G. Knepley     ierr = PetscViewerASCIISynchronizedAllow(PETSC_VIEWER_STDOUT_WORLD, PETSC_TRUE);CHKERRQ(ierr);
611b0a623aaSMatthew G. Knepley     ierr = DMLabelView(ovAdjByRank, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
612b0a623aaSMatthew G. Knepley   }
613b0a623aaSMatthew G. Knepley   /* Convert to (point, rank) and use actual owners */
614b0a623aaSMatthew G. Knepley   ierr = PetscSectionSetChart(ovRootSection, 0, numProcs);CHKERRQ(ierr);
615b0a623aaSMatthew G. Knepley   ierr = DMLabelGetValueIS(ovAdjByRank, &valueIS);CHKERRQ(ierr);
616b0a623aaSMatthew G. Knepley   ierr = ISGetLocalSize(valueIS, &numNeighbors);CHKERRQ(ierr);
617b0a623aaSMatthew G. Knepley   ierr = ISGetIndices(valueIS, &neighbors);CHKERRQ(ierr);
618b0a623aaSMatthew G. Knepley   for (n = 0; n < numNeighbors; ++n) {
619b0a623aaSMatthew G. Knepley     PetscInt numPoints;
620b0a623aaSMatthew G. Knepley 
621b0a623aaSMatthew G. Knepley     ierr = DMLabelGetStratumSize(ovAdjByRank, neighbors[n], &numPoints);CHKERRQ(ierr);
622b0a623aaSMatthew G. Knepley     ierr = PetscSectionAddDof(ovRootSection, neighbors[n], numPoints);CHKERRQ(ierr);
623b0a623aaSMatthew G. Knepley   }
624b0a623aaSMatthew G. Knepley   ierr = PetscSectionSetUp(ovRootSection);CHKERRQ(ierr);
625b0a623aaSMatthew G. Knepley   ierr = PetscSectionGetStorageSize(ovRootSection, &ovSize);CHKERRQ(ierr);
626b0a623aaSMatthew G. Knepley   ierr = PetscMalloc1(ovSize, ovRootPoints);CHKERRQ(ierr);
627b0a623aaSMatthew G. Knepley   ierr = PetscSFGetGraph(sfPoint, NULL, &nleaves, &local, &remote);CHKERRQ(ierr);
628b0a623aaSMatthew G. Knepley   for (n = 0; n < numNeighbors; ++n) {
629b0a623aaSMatthew G. Knepley     IS              pointIS;
630b0a623aaSMatthew G. Knepley     const PetscInt *points;
631b0a623aaSMatthew G. Knepley     PetscInt        off, numPoints, p;
632b0a623aaSMatthew G. Knepley 
633b0a623aaSMatthew G. Knepley     ierr = PetscSectionGetOffset(ovRootSection, neighbors[n], &off);CHKERRQ(ierr);
634b0a623aaSMatthew G. Knepley     ierr = DMLabelGetStratumIS(ovAdjByRank, neighbors[n], &pointIS);CHKERRQ(ierr);
635b0a623aaSMatthew G. Knepley     ierr = ISGetLocalSize(pointIS, &numPoints);CHKERRQ(ierr);
636b0a623aaSMatthew G. Knepley     ierr = ISGetIndices(pointIS, &points);CHKERRQ(ierr);
637b0a623aaSMatthew G. Knepley     for (p = 0; p < numPoints; ++p) {
638b0a623aaSMatthew G. Knepley       ierr = PetscFindInt(points[p], nleaves, local, &l);CHKERRQ(ierr);
639b0a623aaSMatthew G. Knepley       if (l >= 0) {(*ovRootPoints)[off+p] = remote[l];}
640b0a623aaSMatthew G. Knepley       else        {(*ovRootPoints)[off+p].index = points[p]; (*ovRootPoints)[off+p].rank = rank;}
641b0a623aaSMatthew G. Knepley     }
642b0a623aaSMatthew G. Knepley     ierr = ISRestoreIndices(pointIS, &points);CHKERRQ(ierr);
643b0a623aaSMatthew G. Knepley     ierr = ISDestroy(&pointIS);CHKERRQ(ierr);
644b0a623aaSMatthew G. Knepley   }
645b0a623aaSMatthew G. Knepley   ierr = ISRestoreIndices(valueIS, &neighbors);CHKERRQ(ierr);
646b0a623aaSMatthew G. Knepley   ierr = ISDestroy(&valueIS);CHKERRQ(ierr);
647b0a623aaSMatthew G. Knepley   ierr = DMLabelDestroy(&ovAdjByRank);CHKERRQ(ierr);
648b0a623aaSMatthew G. Knepley   /* Make process SF */
649b0a623aaSMatthew G. Knepley   ierr = DMPlexCreateTwoSidedProcessSF(dm, sfPoint, rootSection, rootrank, leafSection, leafrank, NULL, &sfProc);CHKERRQ(ierr);
650b0a623aaSMatthew G. Knepley   {
651b0a623aaSMatthew G. Knepley     ierr = PetscSFView(sfProc, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
652b0a623aaSMatthew G. Knepley   }
653b0a623aaSMatthew G. Knepley   /* Communicate overlap */
654b0a623aaSMatthew G. Knepley   ierr = DMPlexDistributeData(dm, sfProc, ovRootSection, MPIU_2INT, (void *) *ovRootPoints, ovLeafSection, (void **) ovLeafPoints);CHKERRQ(ierr);
655b0a623aaSMatthew G. Knepley   ierr = PetscSFDestroy(&sfProc);CHKERRQ(ierr);
656b0a623aaSMatthew G. Knepley   PetscFunctionReturn(0);
657b0a623aaSMatthew G. Knepley }
65870034214SMatthew G. Knepley 
65970034214SMatthew G. Knepley #undef __FUNCT__
66070034214SMatthew G. Knepley #define __FUNCT__ "DMPlexDistributeField"
66170034214SMatthew G. Knepley /*@
66270034214SMatthew G. Knepley   DMPlexDistributeField - Distribute field data to match a given PetscSF, usually the SF from mesh distribution
66370034214SMatthew G. Knepley 
66470034214SMatthew G. Knepley   Collective on DM
66570034214SMatthew G. Knepley 
66670034214SMatthew G. Knepley   Input Parameters:
66770034214SMatthew G. Knepley + dm - The DMPlex object
66870034214SMatthew G. Knepley . pointSF - The PetscSF describing the communication pattern
66970034214SMatthew G. Knepley . originalSection - The PetscSection for existing data layout
67070034214SMatthew G. Knepley - originalVec - The existing data
67170034214SMatthew G. Knepley 
67270034214SMatthew G. Knepley   Output Parameters:
67370034214SMatthew G. Knepley + newSection - The PetscSF describing the new data layout
67470034214SMatthew G. Knepley - newVec - The new data
67570034214SMatthew G. Knepley 
67670034214SMatthew G. Knepley   Level: developer
67770034214SMatthew G. Knepley 
6781e8fc25dSMatthew G. Knepley .seealso: DMPlexDistribute(), DMPlexDistributeFieldIS(), DMPlexDistributeData()
67970034214SMatthew G. Knepley @*/
68070034214SMatthew G. Knepley PetscErrorCode DMPlexDistributeField(DM dm, PetscSF pointSF, PetscSection originalSection, Vec originalVec, PetscSection newSection, Vec newVec)
68170034214SMatthew G. Knepley {
68270034214SMatthew G. Knepley   PetscSF        fieldSF;
68370034214SMatthew G. Knepley   PetscInt      *remoteOffsets, fieldSize;
68470034214SMatthew G. Knepley   PetscScalar   *originalValues, *newValues;
68570034214SMatthew G. Knepley   PetscErrorCode ierr;
68670034214SMatthew G. Knepley 
68770034214SMatthew G. Knepley   PetscFunctionBegin;
68870034214SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_DistributeField,dm,0,0,0);CHKERRQ(ierr);
68970034214SMatthew G. Knepley   ierr = PetscSFDistributeSection(pointSF, originalSection, &remoteOffsets, newSection);CHKERRQ(ierr);
69070034214SMatthew G. Knepley 
69170034214SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(newSection, &fieldSize);CHKERRQ(ierr);
69270034214SMatthew G. Knepley   ierr = VecSetSizes(newVec, fieldSize, PETSC_DETERMINE);CHKERRQ(ierr);
69370034214SMatthew G. Knepley   ierr = VecSetType(newVec,dm->vectype);CHKERRQ(ierr);
69470034214SMatthew G. Knepley 
69570034214SMatthew G. Knepley   ierr = VecGetArray(originalVec, &originalValues);CHKERRQ(ierr);
69670034214SMatthew G. Knepley   ierr = VecGetArray(newVec, &newValues);CHKERRQ(ierr);
69770034214SMatthew G. Knepley   ierr = PetscSFCreateSectionSF(pointSF, originalSection, remoteOffsets, newSection, &fieldSF);CHKERRQ(ierr);
69870034214SMatthew G. Knepley   ierr = PetscSFBcastBegin(fieldSF, MPIU_SCALAR, originalValues, newValues);CHKERRQ(ierr);
69970034214SMatthew G. Knepley   ierr = PetscSFBcastEnd(fieldSF, MPIU_SCALAR, originalValues, newValues);CHKERRQ(ierr);
70070034214SMatthew G. Knepley   ierr = PetscSFDestroy(&fieldSF);CHKERRQ(ierr);
70170034214SMatthew G. Knepley   ierr = VecRestoreArray(newVec, &newValues);CHKERRQ(ierr);
70270034214SMatthew G. Knepley   ierr = VecRestoreArray(originalVec, &originalValues);CHKERRQ(ierr);
70370034214SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_DistributeField,dm,0,0,0);CHKERRQ(ierr);
70470034214SMatthew G. Knepley   PetscFunctionReturn(0);
70570034214SMatthew G. Knepley }
70670034214SMatthew G. Knepley 
70770034214SMatthew G. Knepley #undef __FUNCT__
7081e8fc25dSMatthew G. Knepley #define __FUNCT__ "DMPlexDistributeFieldIS"
7091e8fc25dSMatthew G. Knepley /*@
7101e8fc25dSMatthew G. Knepley   DMPlexDistributeFieldIS - Distribute field data to match a given PetscSF, usually the SF from mesh distribution
7111e8fc25dSMatthew G. Knepley 
7121e8fc25dSMatthew G. Knepley   Collective on DM
7131e8fc25dSMatthew G. Knepley 
7141e8fc25dSMatthew G. Knepley   Input Parameters:
7151e8fc25dSMatthew G. Knepley + dm - The DMPlex object
7161e8fc25dSMatthew G. Knepley . pointSF - The PetscSF describing the communication pattern
7171e8fc25dSMatthew G. Knepley . originalSection - The PetscSection for existing data layout
7181e8fc25dSMatthew G. Knepley - originalIS - The existing data
7191e8fc25dSMatthew G. Knepley 
7201e8fc25dSMatthew G. Knepley   Output Parameters:
7211e8fc25dSMatthew G. Knepley + newSection - The PetscSF describing the new data layout
7221e8fc25dSMatthew G. Knepley - newIS - The new data
7231e8fc25dSMatthew G. Knepley 
7241e8fc25dSMatthew G. Knepley   Level: developer
7251e8fc25dSMatthew G. Knepley 
7261e8fc25dSMatthew G. Knepley .seealso: DMPlexDistribute(), DMPlexDistributeField(), DMPlexDistributeData()
7271e8fc25dSMatthew G. Knepley @*/
7281e8fc25dSMatthew G. Knepley PetscErrorCode DMPlexDistributeFieldIS(DM dm, PetscSF pointSF, PetscSection originalSection, IS originalIS, PetscSection newSection, IS *newIS)
7291e8fc25dSMatthew G. Knepley {
7301e8fc25dSMatthew G. Knepley   PetscSF         fieldSF;
7311e8fc25dSMatthew G. Knepley   PetscInt       *newValues, *remoteOffsets, fieldSize;
7321e8fc25dSMatthew G. Knepley   const PetscInt *originalValues;
7331e8fc25dSMatthew G. Knepley   PetscErrorCode  ierr;
7341e8fc25dSMatthew G. Knepley 
7351e8fc25dSMatthew G. Knepley   PetscFunctionBegin;
7361e8fc25dSMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_DistributeField,dm,0,0,0);CHKERRQ(ierr);
7371e8fc25dSMatthew G. Knepley   ierr = PetscSFDistributeSection(pointSF, originalSection, &remoteOffsets, newSection);CHKERRQ(ierr);
7381e8fc25dSMatthew G. Knepley 
7391e8fc25dSMatthew G. Knepley   ierr = PetscSectionGetStorageSize(newSection, &fieldSize);CHKERRQ(ierr);
7401e8fc25dSMatthew G. Knepley   ierr = PetscMalloc(fieldSize * sizeof(PetscInt), &newValues);CHKERRQ(ierr);
7411e8fc25dSMatthew G. Knepley 
7421e8fc25dSMatthew G. Knepley   ierr = ISGetIndices(originalIS, &originalValues);CHKERRQ(ierr);
7431e8fc25dSMatthew G. Knepley   ierr = PetscSFCreateSectionSF(pointSF, originalSection, remoteOffsets, newSection, &fieldSF);CHKERRQ(ierr);
7441e8fc25dSMatthew G. Knepley   ierr = PetscSFBcastBegin(fieldSF, MPIU_INT, originalValues, newValues);CHKERRQ(ierr);
7451e8fc25dSMatthew G. Knepley   ierr = PetscSFBcastEnd(fieldSF, MPIU_INT, originalValues, newValues);CHKERRQ(ierr);
7461e8fc25dSMatthew G. Knepley   ierr = PetscSFDestroy(&fieldSF);CHKERRQ(ierr);
7471e8fc25dSMatthew G. Knepley   ierr = ISRestoreIndices(originalIS, &originalValues);CHKERRQ(ierr);
7481e8fc25dSMatthew G. Knepley   ierr = ISCreateGeneral(PetscObjectComm((PetscObject) pointSF), fieldSize, newValues, PETSC_OWN_POINTER, newIS);CHKERRQ(ierr);
7491e8fc25dSMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_DistributeField,dm,0,0,0);CHKERRQ(ierr);
7501e8fc25dSMatthew G. Knepley   PetscFunctionReturn(0);
7511e8fc25dSMatthew G. Knepley }
7521e8fc25dSMatthew G. Knepley 
7531e8fc25dSMatthew G. Knepley #undef __FUNCT__
75470034214SMatthew G. Knepley #define __FUNCT__ "DMPlexDistributeData"
75570034214SMatthew G. Knepley /*@
75670034214SMatthew G. Knepley   DMPlexDistributeData - Distribute field data to match a given PetscSF, usually the SF from mesh distribution
75770034214SMatthew G. Knepley 
75870034214SMatthew G. Knepley   Collective on DM
75970034214SMatthew G. Knepley 
76070034214SMatthew G. Knepley   Input Parameters:
76170034214SMatthew G. Knepley + dm - The DMPlex object
76270034214SMatthew G. Knepley . pointSF - The PetscSF describing the communication pattern
76370034214SMatthew G. Knepley . originalSection - The PetscSection for existing data layout
76470034214SMatthew G. Knepley . datatype - The type of data
76570034214SMatthew G. Knepley - originalData - The existing data
76670034214SMatthew G. Knepley 
76770034214SMatthew G. Knepley   Output Parameters:
7681e8fc25dSMatthew G. Knepley + newSection - The PetscSection describing the new data layout
76970034214SMatthew G. Knepley - newData - The new data
77070034214SMatthew G. Knepley 
77170034214SMatthew G. Knepley   Level: developer
77270034214SMatthew G. Knepley 
77370034214SMatthew G. Knepley .seealso: DMPlexDistribute(), DMPlexDistributeField()
77470034214SMatthew G. Knepley @*/
77570034214SMatthew G. Knepley PetscErrorCode DMPlexDistributeData(DM dm, PetscSF pointSF, PetscSection originalSection, MPI_Datatype datatype, void *originalData, PetscSection newSection, void **newData)
77670034214SMatthew G. Knepley {
77770034214SMatthew G. Knepley   PetscSF        fieldSF;
77870034214SMatthew G. Knepley   PetscInt      *remoteOffsets, fieldSize;
77970034214SMatthew G. Knepley   PetscMPIInt    dataSize;
78070034214SMatthew G. Knepley   PetscErrorCode ierr;
78170034214SMatthew G. Knepley 
78270034214SMatthew G. Knepley   PetscFunctionBegin;
78370034214SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_DistributeData,dm,0,0,0);CHKERRQ(ierr);
78470034214SMatthew G. Knepley   ierr = PetscSFDistributeSection(pointSF, originalSection, &remoteOffsets, newSection);CHKERRQ(ierr);
78570034214SMatthew G. Knepley 
78670034214SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(newSection, &fieldSize);CHKERRQ(ierr);
78770034214SMatthew G. Knepley   ierr = MPI_Type_size(datatype, &dataSize);CHKERRQ(ierr);
78870034214SMatthew G. Knepley   ierr = PetscMalloc(fieldSize * dataSize, newData);CHKERRQ(ierr);
78970034214SMatthew G. Knepley 
79070034214SMatthew G. Knepley   ierr = PetscSFCreateSectionSF(pointSF, originalSection, remoteOffsets, newSection, &fieldSF);CHKERRQ(ierr);
79170034214SMatthew G. Knepley   ierr = PetscSFBcastBegin(fieldSF, datatype, originalData, *newData);CHKERRQ(ierr);
79270034214SMatthew G. Knepley   ierr = PetscSFBcastEnd(fieldSF, datatype, originalData, *newData);CHKERRQ(ierr);
79370034214SMatthew G. Knepley   ierr = PetscSFDestroy(&fieldSF);CHKERRQ(ierr);
79470034214SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_DistributeData,dm,0,0,0);CHKERRQ(ierr);
79570034214SMatthew G. Knepley   PetscFunctionReturn(0);
79670034214SMatthew G. Knepley }
79770034214SMatthew G. Knepley 
79870034214SMatthew G. Knepley #undef __FUNCT__
799cc71bff1SMichael Lange #define __FUNCT__ "DMPlexDistributeCones"
800cc71bff1SMichael Lange PetscErrorCode DMPlexDistributeCones(DM dm, PetscSF migrationSF, ISLocalToGlobalMapping renumbering, DM dmParallel)
801cc71bff1SMichael Lange {
802cc71bff1SMichael Lange   DM_Plex               *pmesh   = (DM_Plex*) (dmParallel)->data;
803cc71bff1SMichael Lange   MPI_Comm               comm;
804cc71bff1SMichael Lange   PetscSF                coneSF;
805cc71bff1SMichael Lange   PetscSection           originalConeSection, newConeSection;
806cc71bff1SMichael Lange   PetscInt              *remoteOffsets, *cones, *newCones, newConesSize;
807cc71bff1SMichael Lange   PetscBool              flg;
808cc71bff1SMichael Lange   PetscErrorCode         ierr;
809cc71bff1SMichael Lange 
810cc71bff1SMichael Lange   PetscFunctionBegin;
811cc71bff1SMichael Lange   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
812cc71bff1SMichael Lange   PetscValidPointer(dmParallel,4);
813cc71bff1SMichael Lange   ierr = PetscLogEventBegin(DMPLEX_DistributeCones,dm,0,0,0);CHKERRQ(ierr);
814cc71bff1SMichael Lange 
815cc71bff1SMichael Lange   /* Distribute cone section */
816cc71bff1SMichael Lange   ierr = PetscObjectGetComm((PetscObject)dm, &comm);CHKERRQ(ierr);
817cc71bff1SMichael Lange   ierr = DMPlexGetConeSection(dm, &originalConeSection);CHKERRQ(ierr);
818cc71bff1SMichael Lange   ierr = DMPlexGetConeSection(dmParallel, &newConeSection);CHKERRQ(ierr);
819cc71bff1SMichael Lange   ierr = PetscSFDistributeSection(migrationSF, originalConeSection, &remoteOffsets, newConeSection);CHKERRQ(ierr);
820cc71bff1SMichael Lange   ierr = DMSetUp(dmParallel);CHKERRQ(ierr);
821cc71bff1SMichael Lange   {
822cc71bff1SMichael Lange     PetscInt pStart, pEnd, p;
823cc71bff1SMichael Lange 
824cc71bff1SMichael Lange     ierr = PetscSectionGetChart(newConeSection, &pStart, &pEnd);CHKERRQ(ierr);
825cc71bff1SMichael Lange     for (p = pStart; p < pEnd; ++p) {
826cc71bff1SMichael Lange       PetscInt coneSize;
827cc71bff1SMichael Lange       ierr               = PetscSectionGetDof(newConeSection, p, &coneSize);CHKERRQ(ierr);
828cc71bff1SMichael Lange       pmesh->maxConeSize = PetscMax(pmesh->maxConeSize, coneSize);
829cc71bff1SMichael Lange     }
830cc71bff1SMichael Lange   }
831cc71bff1SMichael Lange   /* Communicate and renumber cones */
832cc71bff1SMichael Lange   ierr = PetscSFCreateSectionSF(migrationSF, originalConeSection, remoteOffsets, newConeSection, &coneSF);CHKERRQ(ierr);
833cc71bff1SMichael Lange   ierr = DMPlexGetCones(dm, &cones);CHKERRQ(ierr);
834cc71bff1SMichael Lange   ierr = DMPlexGetCones(dmParallel, &newCones);CHKERRQ(ierr);
835cc71bff1SMichael Lange   ierr = PetscSFBcastBegin(coneSF, MPIU_INT, cones, newCones);CHKERRQ(ierr);
836cc71bff1SMichael Lange   ierr = PetscSFBcastEnd(coneSF, MPIU_INT, cones, newCones);CHKERRQ(ierr);
837cc71bff1SMichael Lange   ierr = PetscSectionGetStorageSize(newConeSection, &newConesSize);CHKERRQ(ierr);
838cc71bff1SMichael Lange   ierr = ISGlobalToLocalMappingApplyBlock(renumbering, IS_GTOLM_MASK, newConesSize, newCones, NULL, newCones);CHKERRQ(ierr);
839cc71bff1SMichael Lange   ierr = PetscOptionsHasName(((PetscObject) dm)->prefix, "-cones_view", &flg);CHKERRQ(ierr);
840cc71bff1SMichael Lange   if (flg) {
841cc71bff1SMichael Lange     ierr = PetscPrintf(comm, "Serial Cone Section:\n");CHKERRQ(ierr);
842cc71bff1SMichael Lange     ierr = PetscSectionView(originalConeSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
843cc71bff1SMichael Lange     ierr = PetscPrintf(comm, "Parallel Cone Section:\n");CHKERRQ(ierr);
844cc71bff1SMichael Lange     ierr = PetscSectionView(newConeSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
845cc71bff1SMichael Lange     ierr = PetscSFView(coneSF, NULL);CHKERRQ(ierr);
846cc71bff1SMichael Lange   }
847cc71bff1SMichael Lange   ierr = DMPlexGetConeOrientations(dm, &cones);CHKERRQ(ierr);
848cc71bff1SMichael Lange   ierr = DMPlexGetConeOrientations(dmParallel, &newCones);CHKERRQ(ierr);
849cc71bff1SMichael Lange   ierr = PetscSFBcastBegin(coneSF, MPIU_INT, cones, newCones);CHKERRQ(ierr);
850cc71bff1SMichael Lange   ierr = PetscSFBcastEnd(coneSF, MPIU_INT, cones, newCones);CHKERRQ(ierr);
851cc71bff1SMichael Lange   ierr = PetscSFDestroy(&coneSF);CHKERRQ(ierr);
852cc71bff1SMichael Lange   ierr = PetscLogEventEnd(DMPLEX_DistributeCones,dm,0,0,0);CHKERRQ(ierr);
853cc71bff1SMichael Lange   /* Create supports and stratify sieve */
854cc71bff1SMichael Lange   {
855cc71bff1SMichael Lange     PetscInt pStart, pEnd;
856cc71bff1SMichael Lange 
857cc71bff1SMichael Lange     ierr = PetscSectionGetChart(pmesh->coneSection, &pStart, &pEnd);CHKERRQ(ierr);
858cc71bff1SMichael Lange     ierr = PetscSectionSetChart(pmesh->supportSection, pStart, pEnd);CHKERRQ(ierr);
859cc71bff1SMichael Lange   }
860cc71bff1SMichael Lange   ierr = DMPlexSymmetrize(dmParallel);CHKERRQ(ierr);
861cc71bff1SMichael Lange   ierr = DMPlexStratify(dmParallel);CHKERRQ(ierr);
862cc71bff1SMichael Lange   PetscFunctionReturn(0);
863cc71bff1SMichael Lange }
864cc71bff1SMichael Lange 
865cc71bff1SMichael Lange #undef __FUNCT__
866*4eca1733SMichael Lange #define __FUNCT__ "DMPlexDistributeSF"
867*4eca1733SMichael Lange PetscErrorCode DMPlexDistributeSF(DM dm, PetscSF migrationSF, PetscSection partSection, IS part, PetscSection origPartSection, IS origPart, DM dmParallel)
868*4eca1733SMichael Lange {
869*4eca1733SMichael Lange   DM_Plex               *mesh  = (DM_Plex*) dm->data;
870*4eca1733SMichael Lange   DM_Plex               *pmesh = (DM_Plex*) (dmParallel)->data;
871*4eca1733SMichael Lange   PetscMPIInt            rank, numProcs;
872*4eca1733SMichael Lange   MPI_Comm               comm;
873*4eca1733SMichael Lange   PetscErrorCode         ierr;
874*4eca1733SMichael Lange 
875*4eca1733SMichael Lange   PetscFunctionBegin;
876*4eca1733SMichael Lange   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
877*4eca1733SMichael Lange   PetscValidPointer(dmParallel,7);
878*4eca1733SMichael Lange 
879*4eca1733SMichael Lange   /* Create point SF for parallel mesh */
880*4eca1733SMichael Lange   ierr = PetscLogEventBegin(DMPLEX_DistributeSF,dm,0,0,0);CHKERRQ(ierr);
881*4eca1733SMichael Lange   ierr = PetscObjectGetComm((PetscObject)dm, &comm);CHKERRQ(ierr);
882*4eca1733SMichael Lange   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
883*4eca1733SMichael Lange   ierr = MPI_Comm_size(comm, &numProcs);CHKERRQ(ierr);
884*4eca1733SMichael Lange   {
885*4eca1733SMichael Lange     const PetscInt *leaves;
886*4eca1733SMichael Lange     PetscSFNode    *remotePoints, *rowners, *lowners;
887*4eca1733SMichael Lange     PetscInt        numRoots, numLeaves, numGhostPoints = 0, p, gp, *ghostPoints;
888*4eca1733SMichael Lange     PetscInt        pStart, pEnd;
889*4eca1733SMichael Lange 
890*4eca1733SMichael Lange     ierr = DMPlexGetChart(dmParallel, &pStart, &pEnd);CHKERRQ(ierr);
891*4eca1733SMichael Lange     ierr = PetscSFGetGraph(migrationSF, &numRoots, &numLeaves, &leaves, NULL);CHKERRQ(ierr);
892*4eca1733SMichael Lange     ierr = PetscMalloc2(numRoots,&rowners,numLeaves,&lowners);CHKERRQ(ierr);
893*4eca1733SMichael Lange     for (p=0; p<numRoots; p++) {
894*4eca1733SMichael Lange       rowners[p].rank  = -1;
895*4eca1733SMichael Lange       rowners[p].index = -1;
896*4eca1733SMichael Lange     }
897*4eca1733SMichael Lange     if (origPart) {
898*4eca1733SMichael Lange       /* Make sure points in the original partition are not assigned to other procs */
899*4eca1733SMichael Lange       const PetscInt *origPoints;
900*4eca1733SMichael Lange 
901*4eca1733SMichael Lange       ierr = ISGetIndices(origPart, &origPoints);CHKERRQ(ierr);
902*4eca1733SMichael Lange       for (p = 0; p < numProcs; ++p) {
903*4eca1733SMichael Lange         PetscInt dof, off, d;
904*4eca1733SMichael Lange 
905*4eca1733SMichael Lange         ierr = PetscSectionGetDof(origPartSection, p, &dof);CHKERRQ(ierr);
906*4eca1733SMichael Lange         ierr = PetscSectionGetOffset(origPartSection, p, &off);CHKERRQ(ierr);
907*4eca1733SMichael Lange         for (d = off; d < off+dof; ++d) {
908*4eca1733SMichael Lange           rowners[origPoints[d]].rank = p;
909*4eca1733SMichael Lange         }
910*4eca1733SMichael Lange       }
911*4eca1733SMichael Lange       ierr = ISRestoreIndices(origPart, &origPoints);CHKERRQ(ierr);
912*4eca1733SMichael Lange     }
913*4eca1733SMichael Lange     ierr = PetscSFBcastBegin(migrationSF, MPIU_2INT, rowners, lowners);CHKERRQ(ierr);
914*4eca1733SMichael Lange     ierr = PetscSFBcastEnd(migrationSF, MPIU_2INT, rowners, lowners);CHKERRQ(ierr);
915*4eca1733SMichael Lange     for (p = 0; p < numLeaves; ++p) {
916*4eca1733SMichael Lange       if (lowners[p].rank < 0 || lowners[p].rank == rank) { /* Either put in a bid or we know we own it */
917*4eca1733SMichael Lange         lowners[p].rank  = rank;
918*4eca1733SMichael Lange         lowners[p].index = leaves ? leaves[p] : p;
919*4eca1733SMichael Lange       } else if (lowners[p].rank >= 0) { /* Point already claimed so flag so that MAXLOC does not listen to us */
920*4eca1733SMichael Lange         lowners[p].rank  = -2;
921*4eca1733SMichael Lange         lowners[p].index = -2;
922*4eca1733SMichael Lange       }
923*4eca1733SMichael Lange     }
924*4eca1733SMichael Lange     for (p=0; p<numRoots; p++) { /* Root must not participate in the rediction, flag so that MAXLOC does not use */
925*4eca1733SMichael Lange       rowners[p].rank  = -3;
926*4eca1733SMichael Lange       rowners[p].index = -3;
927*4eca1733SMichael Lange     }
928*4eca1733SMichael Lange     ierr = PetscSFReduceBegin(migrationSF, MPIU_2INT, lowners, rowners, MPI_MAXLOC);CHKERRQ(ierr);
929*4eca1733SMichael Lange     ierr = PetscSFReduceEnd(migrationSF, MPIU_2INT, lowners, rowners, MPI_MAXLOC);CHKERRQ(ierr);
930*4eca1733SMichael Lange     ierr = PetscSFBcastBegin(migrationSF, MPIU_2INT, rowners, lowners);CHKERRQ(ierr);
931*4eca1733SMichael Lange     ierr = PetscSFBcastEnd(migrationSF, MPIU_2INT, rowners, lowners);CHKERRQ(ierr);
932*4eca1733SMichael Lange     for (p = 0; p < numLeaves; ++p) {
933*4eca1733SMichael Lange       if (lowners[p].rank < 0 || lowners[p].index < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Cell partition corrupt: point not claimed");
934*4eca1733SMichael Lange       if (lowners[p].rank != rank) ++numGhostPoints;
935*4eca1733SMichael Lange     }
936*4eca1733SMichael Lange     ierr = PetscMalloc1(numGhostPoints,    &ghostPoints);CHKERRQ(ierr);
937*4eca1733SMichael Lange     ierr = PetscMalloc1(numGhostPoints, &remotePoints);CHKERRQ(ierr);
938*4eca1733SMichael Lange     for (p = 0, gp = 0; p < numLeaves; ++p) {
939*4eca1733SMichael Lange       if (lowners[p].rank != rank) {
940*4eca1733SMichael Lange         ghostPoints[gp]        = leaves ? leaves[p] : p;
941*4eca1733SMichael Lange         remotePoints[gp].rank  = lowners[p].rank;
942*4eca1733SMichael Lange         remotePoints[gp].index = lowners[p].index;
943*4eca1733SMichael Lange         ++gp;
944*4eca1733SMichael Lange       }
945*4eca1733SMichael Lange     }
946*4eca1733SMichael Lange     ierr = PetscFree2(rowners,lowners);CHKERRQ(ierr);
947*4eca1733SMichael Lange     ierr = PetscSFSetGraph((dmParallel)->sf, pEnd - pStart, numGhostPoints, ghostPoints, PETSC_OWN_POINTER, remotePoints, PETSC_OWN_POINTER);CHKERRQ(ierr);
948*4eca1733SMichael Lange     ierr = PetscSFSetFromOptions((dmParallel)->sf);CHKERRQ(ierr);
949*4eca1733SMichael Lange   }
950*4eca1733SMichael Lange   pmesh->useCone    = mesh->useCone;
951*4eca1733SMichael Lange   pmesh->useClosure = mesh->useClosure;
952*4eca1733SMichael Lange   ierr = PetscLogEventEnd(DMPLEX_DistributeSF,dm,0,0,0);CHKERRQ(ierr);
953*4eca1733SMichael Lange   PetscFunctionReturn(0);
954*4eca1733SMichael Lange }
955*4eca1733SMichael Lange 
956*4eca1733SMichael Lange #undef __FUNCT__
95770034214SMatthew G. Knepley #define __FUNCT__ "DMPlexDistribute"
95870034214SMatthew G. Knepley /*@C
95970034214SMatthew G. Knepley   DMPlexDistribute - Distributes the mesh and any associated sections.
96070034214SMatthew G. Knepley 
96170034214SMatthew G. Knepley   Not Collective
96270034214SMatthew G. Knepley 
96370034214SMatthew G. Knepley   Input Parameter:
96470034214SMatthew G. Knepley + dm  - The original DMPlex object
96570034214SMatthew G. Knepley . partitioner - The partitioning package, or NULL for the default
96670034214SMatthew G. Knepley - overlap - The overlap of partitions, 0 is the default
96770034214SMatthew G. Knepley 
96870034214SMatthew G. Knepley   Output Parameter:
96970034214SMatthew G. Knepley + sf - The PetscSF used for point distribution
97070034214SMatthew G. Knepley - parallelMesh - The distributed DMPlex object, or NULL
97170034214SMatthew G. Knepley 
972a9c22940SMatthew G. Knepley   Note: If the mesh was not distributed, the return value is NULL.
973a9c22940SMatthew G. Knepley 
974a9c22940SMatthew G. Knepley   The user can control the definition of adjacency for the mesh using DMPlexGetAdjacencyUseCone() and
975a9c22940SMatthew G. Knepley   DMPlexSetAdjacencyUseClosure(). They should choose the combination appropriate for the function
976a9c22940SMatthew G. Knepley   representation on the mesh.
97770034214SMatthew G. Knepley 
97870034214SMatthew G. Knepley   Level: intermediate
97970034214SMatthew G. Knepley 
98070034214SMatthew G. Knepley .keywords: mesh, elements
981a9c22940SMatthew G. Knepley .seealso: DMPlexCreate(), DMPlexDistributeByFace(), DMPlexSetAdjacencyUseCone(), DMPlexSetAdjacencyUseClosure()
98270034214SMatthew G. Knepley @*/
98370034214SMatthew G. Knepley PetscErrorCode DMPlexDistribute(DM dm, const char partitioner[], PetscInt overlap, PetscSF *sf, DM *dmParallel)
98470034214SMatthew G. Knepley {
98570034214SMatthew G. Knepley   DM_Plex               *mesh   = (DM_Plex*) dm->data, *pmesh;
98670034214SMatthew G. Knepley   MPI_Comm               comm;
98770034214SMatthew G. Knepley   PetscInt               dim, numRemoteRanks;
988*4eca1733SMichael Lange   IS                     origCellPart=NULL,        origPart=NULL,        cellPart,        part;
989*4eca1733SMichael Lange   PetscSection           origCellPartSection=NULL, origPartSection=NULL, cellPartSection, partSection;
99070034214SMatthew G. Knepley   PetscSFNode           *remoteRanks;
991cc71bff1SMichael Lange   PetscSF                partSF, pointSF;
99270034214SMatthew G. Knepley   ISLocalToGlobalMapping renumbering;
99370034214SMatthew G. Knepley   PetscBool              flg;
99470034214SMatthew G. Knepley   PetscMPIInt            rank, numProcs, p;
99570034214SMatthew G. Knepley   PetscErrorCode         ierr;
99670034214SMatthew G. Knepley 
99770034214SMatthew G. Knepley   PetscFunctionBegin;
99870034214SMatthew G. Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
99970034214SMatthew G. Knepley   if (sf) PetscValidPointer(sf,4);
100070034214SMatthew G. Knepley   PetscValidPointer(dmParallel,5);
100170034214SMatthew G. Knepley 
100270034214SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_Distribute,dm,0,0,0);CHKERRQ(ierr);
100370034214SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
100470034214SMatthew G. Knepley   ierr = MPI_Comm_rank(comm, &rank);CHKERRQ(ierr);
100570034214SMatthew G. Knepley   ierr = MPI_Comm_size(comm, &numProcs);CHKERRQ(ierr);
100670034214SMatthew G. Knepley 
100770034214SMatthew G. Knepley   *dmParallel = NULL;
100870034214SMatthew G. Knepley   if (numProcs == 1) PetscFunctionReturn(0);
100970034214SMatthew G. Knepley 
1010c73cfb54SMatthew G. Knepley   ierr = DMGetDimension(dm, &dim);CHKERRQ(ierr);
101170034214SMatthew G. Knepley   /* Create cell partition - We need to rewrite to use IS, use the MatPartition stuff */
101277623264SMatthew G. Knepley   ierr = PetscLogEventBegin(PETSCPARTITIONER_Partition,dm,0,0,0);CHKERRQ(ierr);
101377623264SMatthew G. Knepley   if (overlap > 1) SETERRQ(comm, PETSC_ERR_SUP, "Overlap > 1 not yet implemented");
101477623264SMatthew G. Knepley   ierr = PetscSectionCreate(comm, &cellPartSection);CHKERRQ(ierr);
101577623264SMatthew G. Knepley   ierr = PetscSectionCreate(comm, &origCellPartSection);CHKERRQ(ierr);
101677623264SMatthew G. Knepley   ierr = PetscPartitionerPartition(mesh->partitioner, dm, overlap > 0 ? PETSC_TRUE : PETSC_FALSE, cellPartSection, &cellPart, origCellPartSection, &origCellPart);CHKERRQ(ierr);
101770034214SMatthew G. Knepley   /* Create SF assuming a serial partition for all processes: Could check for IS length here */
101870034214SMatthew G. Knepley   if (!rank) numRemoteRanks = numProcs;
101970034214SMatthew G. Knepley   else       numRemoteRanks = 0;
102070034214SMatthew G. Knepley   ierr = PetscMalloc1(numRemoteRanks, &remoteRanks);CHKERRQ(ierr);
102170034214SMatthew G. Knepley   for (p = 0; p < numRemoteRanks; ++p) {
102270034214SMatthew G. Knepley     remoteRanks[p].rank  = p;
102370034214SMatthew G. Knepley     remoteRanks[p].index = 0;
102470034214SMatthew G. Knepley   }
102570034214SMatthew G. Knepley   ierr = PetscSFCreate(comm, &partSF);CHKERRQ(ierr);
102670034214SMatthew G. Knepley   ierr = PetscSFSetGraph(partSF, 1, numRemoteRanks, NULL, PETSC_OWN_POINTER, remoteRanks, PETSC_OWN_POINTER);CHKERRQ(ierr);
102770034214SMatthew G. Knepley   ierr = PetscOptionsHasName(((PetscObject) dm)->prefix, "-partition_view", &flg);CHKERRQ(ierr);
102870034214SMatthew G. Knepley   if (flg) {
102970034214SMatthew G. Knepley     ierr = PetscPrintf(comm, "Cell Partition:\n");CHKERRQ(ierr);
103070034214SMatthew G. Knepley     ierr = PetscSectionView(cellPartSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
103170034214SMatthew G. Knepley     ierr = ISView(cellPart, NULL);CHKERRQ(ierr);
103270034214SMatthew G. Knepley     if (origCellPart) {
103370034214SMatthew G. Knepley       ierr = PetscPrintf(comm, "Original Cell Partition:\n");CHKERRQ(ierr);
103470034214SMatthew G. Knepley       ierr = PetscSectionView(origCellPartSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
103570034214SMatthew G. Knepley       ierr = ISView(origCellPart, NULL);CHKERRQ(ierr);
103670034214SMatthew G. Knepley     }
103770034214SMatthew G. Knepley     ierr = PetscSFView(partSF, NULL);CHKERRQ(ierr);
103870034214SMatthew G. Knepley   }
103970034214SMatthew G. Knepley   /* Close the partition over the mesh */
104070034214SMatthew G. Knepley   ierr = DMPlexCreatePartitionClosure(dm, cellPartSection, cellPart, &partSection, &part);CHKERRQ(ierr);
104170034214SMatthew G. Knepley   /* Create new mesh */
104270034214SMatthew G. Knepley   ierr  = DMPlexCreate(comm, dmParallel);CHKERRQ(ierr);
1043c73cfb54SMatthew G. Knepley   ierr  = DMSetDimension(*dmParallel, dim);CHKERRQ(ierr);
104470034214SMatthew G. Knepley   ierr  = PetscObjectSetName((PetscObject) *dmParallel, "Parallel Mesh");CHKERRQ(ierr);
104570034214SMatthew G. Knepley   pmesh = (DM_Plex*) (*dmParallel)->data;
1046*4eca1733SMichael Lange   pmesh->useAnchors = mesh->useAnchors;
1047*4eca1733SMichael Lange 
104870034214SMatthew G. Knepley   /* Distribute sieve points and the global point numbering (replaces creating remote bases) */
104970034214SMatthew G. Knepley   ierr = PetscSFConvertPartition(partSF, partSection, part, &renumbering, &pointSF);CHKERRQ(ierr);
105070034214SMatthew G. Knepley   if (flg) {
105170034214SMatthew G. Knepley     ierr = PetscPrintf(comm, "Point Partition:\n");CHKERRQ(ierr);
105270034214SMatthew G. Knepley     ierr = PetscSectionView(partSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
105370034214SMatthew G. Knepley     ierr = ISView(part, NULL);CHKERRQ(ierr);
105470034214SMatthew G. Knepley     ierr = PetscSFView(pointSF, NULL);CHKERRQ(ierr);
105570034214SMatthew G. Knepley     ierr = PetscPrintf(comm, "Point Renumbering after partition:\n");CHKERRQ(ierr);
105670034214SMatthew G. Knepley     ierr = ISLocalToGlobalMappingView(renumbering, NULL);CHKERRQ(ierr);
105770034214SMatthew G. Knepley   }
105877623264SMatthew G. Knepley   ierr = PetscLogEventEnd(PETSCPARTITIONER_Partition,dm,0,0,0);CHKERRQ(ierr);
105970034214SMatthew G. Knepley 
1060cc71bff1SMichael Lange   ierr = DMPlexDistributeCones(dm, pointSF, renumbering, *dmParallel);CHKERRQ(ierr);
106170034214SMatthew G. Knepley   if (origCellPart) {
106270034214SMatthew G. Knepley     ierr = DMPlexCreatePartitionClosure(dm, origCellPartSection, origCellPart, &origPartSection, &origPart);CHKERRQ(ierr);
1063*4eca1733SMichael Lange   }
1064*4eca1733SMichael Lange   ierr = DMPlexDistributeSF(dm, pointSF, partSection, part, origPartSection, origPart, *dmParallel);CHKERRQ(ierr);
106570034214SMatthew G. Knepley 
1066bf5244c7SMatthew G. Knepley   /* Distribute Coordinates */
1067bf5244c7SMatthew G. Knepley   {
1068bf5244c7SMatthew G. Knepley     PetscSection     originalCoordSection, newCoordSection;
1069bf5244c7SMatthew G. Knepley     Vec              originalCoordinates, newCoordinates;
1070bf5244c7SMatthew G. Knepley     PetscInt         bs;
1071bf5244c7SMatthew G. Knepley     const char      *name;
1072bf5244c7SMatthew G. Knepley     const PetscReal *maxCell, *L;
1073bf5244c7SMatthew G. Knepley 
1074bf5244c7SMatthew G. Knepley     ierr = DMGetCoordinateSection(dm, &originalCoordSection);CHKERRQ(ierr);
1075bf5244c7SMatthew G. Knepley     ierr = DMGetCoordinateSection(*dmParallel, &newCoordSection);CHKERRQ(ierr);
1076bf5244c7SMatthew G. Knepley     ierr = DMGetCoordinatesLocal(dm, &originalCoordinates);CHKERRQ(ierr);
10771c57f3caSMatthew G. Knepley     if (originalCoordinates) {
1078bf5244c7SMatthew G. Knepley       ierr = VecCreate(comm, &newCoordinates);CHKERRQ(ierr);
1079bf5244c7SMatthew G. Knepley       ierr = PetscObjectGetName((PetscObject) originalCoordinates, &name);CHKERRQ(ierr);
1080bf5244c7SMatthew G. Knepley       ierr = PetscObjectSetName((PetscObject) newCoordinates, name);CHKERRQ(ierr);
1081bf5244c7SMatthew G. Knepley 
1082bf5244c7SMatthew G. Knepley       ierr = DMPlexDistributeField(dm, pointSF, originalCoordSection, originalCoordinates, newCoordSection, newCoordinates);CHKERRQ(ierr);
1083bf5244c7SMatthew G. Knepley       ierr = DMSetCoordinatesLocal(*dmParallel, newCoordinates);CHKERRQ(ierr);
1084bf5244c7SMatthew G. Knepley       ierr = VecGetBlockSize(originalCoordinates, &bs);CHKERRQ(ierr);
1085bf5244c7SMatthew G. Knepley       ierr = VecSetBlockSize(newCoordinates, bs);CHKERRQ(ierr);
1086bf5244c7SMatthew G. Knepley       ierr = VecDestroy(&newCoordinates);CHKERRQ(ierr);
10871c57f3caSMatthew G. Knepley     }
1088bf5244c7SMatthew G. Knepley     ierr = DMGetPeriodicity(dm, &maxCell, &L);CHKERRQ(ierr);
1089bf5244c7SMatthew G. Knepley     if (L) {ierr = DMSetPeriodicity(*dmParallel, maxCell, L);CHKERRQ(ierr);}
1090bf5244c7SMatthew G. Knepley   }
1091bf5244c7SMatthew G. Knepley   /* Distribute labels */
1092bf5244c7SMatthew G. Knepley   ierr = PetscLogEventBegin(DMPLEX_DistributeLabels,dm,0,0,0);CHKERRQ(ierr);
1093bf5244c7SMatthew G. Knepley   {
1094bf5244c7SMatthew G. Knepley     DMLabel  next      = mesh->labels, newNext = pmesh->labels;
1095bf5244c7SMatthew G. Knepley     PetscInt numLabels = 0, l;
1096bf5244c7SMatthew G. Knepley 
1097bf5244c7SMatthew G. Knepley     /* Bcast number of labels */
1098bf5244c7SMatthew G. Knepley     while (next) {++numLabels; next = next->next;}
1099bf5244c7SMatthew G. Knepley     ierr = MPI_Bcast(&numLabels, 1, MPIU_INT, 0, comm);CHKERRQ(ierr);
1100bf5244c7SMatthew G. Knepley     next = mesh->labels;
1101bf5244c7SMatthew G. Knepley     for (l = 0; l < numLabels; ++l) {
1102bf5244c7SMatthew G. Knepley       DMLabel   labelNew;
1103bf5244c7SMatthew G. Knepley       PetscBool isdepth;
1104bf5244c7SMatthew G. Knepley 
1105bf5244c7SMatthew G. Knepley       /* Skip "depth" because it is recreated */
1106bf5244c7SMatthew G. Knepley       if (!rank) {ierr = PetscStrcmp(next->name, "depth", &isdepth);CHKERRQ(ierr);}
1107bf5244c7SMatthew G. Knepley       ierr = MPI_Bcast(&isdepth, 1, MPIU_BOOL, 0, comm);CHKERRQ(ierr);
1108bf5244c7SMatthew G. Knepley       if (isdepth) {if (!rank) next = next->next; continue;}
1109bf5244c7SMatthew G. Knepley       ierr = DMLabelDistribute(next, partSection, part, renumbering, &labelNew);CHKERRQ(ierr);
1110bf5244c7SMatthew G. Knepley       /* Insert into list */
1111bf5244c7SMatthew G. Knepley       if (newNext) newNext->next = labelNew;
1112bf5244c7SMatthew G. Knepley       else         pmesh->labels = labelNew;
1113bf5244c7SMatthew G. Knepley       newNext = labelNew;
1114bf5244c7SMatthew G. Knepley       if (!rank) next = next->next;
1115bf5244c7SMatthew G. Knepley     }
1116bf5244c7SMatthew G. Knepley   }
1117bf5244c7SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_DistributeLabels,dm,0,0,0);CHKERRQ(ierr);
1118bf5244c7SMatthew G. Knepley   /* Setup hybrid structure */
1119bf5244c7SMatthew G. Knepley   {
1120bf5244c7SMatthew G. Knepley     const PetscInt *gpoints;
1121bf5244c7SMatthew G. Knepley     PetscInt        depth, n, d;
1122bf5244c7SMatthew G. Knepley 
1123bf5244c7SMatthew G. Knepley     for (d = 0; d <= dim; ++d) {pmesh->hybridPointMax[d] = mesh->hybridPointMax[d];}
1124bf5244c7SMatthew G. Knepley     ierr = MPI_Bcast(pmesh->hybridPointMax, dim+1, MPIU_INT, 0, comm);CHKERRQ(ierr);
1125bf5244c7SMatthew G. Knepley     ierr = ISLocalToGlobalMappingGetSize(renumbering, &n);CHKERRQ(ierr);
1126bf5244c7SMatthew G. Knepley     ierr = ISLocalToGlobalMappingGetIndices(renumbering, &gpoints);CHKERRQ(ierr);
1127bf5244c7SMatthew G. Knepley     ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
1128bf5244c7SMatthew G. Knepley     for (d = 0; d <= dim; ++d) {
1129bf5244c7SMatthew G. Knepley       PetscInt pmax = pmesh->hybridPointMax[d], newmax = 0, pEnd, stratum[2], p;
1130bf5244c7SMatthew G. Knepley 
1131bf5244c7SMatthew G. Knepley       if (pmax < 0) continue;
1132bf5244c7SMatthew G. Knepley       ierr = DMPlexGetDepthStratum(dm, d > depth ? depth : d, &stratum[0], &stratum[1]);CHKERRQ(ierr);
1133bf5244c7SMatthew G. Knepley       ierr = DMPlexGetDepthStratum(*dmParallel, d, NULL, &pEnd);CHKERRQ(ierr);
1134bf5244c7SMatthew G. Knepley       ierr = MPI_Bcast(stratum, 2, MPIU_INT, 0, comm);CHKERRQ(ierr);
1135bf5244c7SMatthew G. Knepley       for (p = 0; p < n; ++p) {
1136bf5244c7SMatthew G. Knepley         const PetscInt point = gpoints[p];
1137bf5244c7SMatthew G. Knepley 
1138bf5244c7SMatthew G. Knepley         if ((point >= stratum[0]) && (point < stratum[1]) && (point >= pmax)) ++newmax;
1139bf5244c7SMatthew G. Knepley       }
1140bf5244c7SMatthew G. Knepley       if (newmax > 0) pmesh->hybridPointMax[d] = pEnd - newmax;
1141bf5244c7SMatthew G. Knepley       else            pmesh->hybridPointMax[d] = -1;
1142bf5244c7SMatthew G. Knepley     }
1143bf5244c7SMatthew G. Knepley     ierr = ISLocalToGlobalMappingRestoreIndices(renumbering, &gpoints);CHKERRQ(ierr);
1144bf5244c7SMatthew G. Knepley   }
1145c389ea9fSToby Isaac   /* Set up tree */
1146c389ea9fSToby Isaac   {
1147c389ea9fSToby Isaac     DM              refTree;
1148c389ea9fSToby Isaac     PetscSection    origParentSection, newParentSection;
1149c389ea9fSToby Isaac     PetscInt        *origParents, *origChildIDs;
1150c389ea9fSToby Isaac 
1151c389ea9fSToby Isaac     ierr = DMPlexGetReferenceTree(dm,&refTree);CHKERRQ(ierr);
1152c389ea9fSToby Isaac     ierr = DMPlexSetReferenceTree(*dmParallel,refTree);CHKERRQ(ierr);
1153c389ea9fSToby Isaac     ierr = DMPlexGetTree(dm,&origParentSection,&origParents,&origChildIDs,NULL,NULL);CHKERRQ(ierr);
1154c389ea9fSToby Isaac     if (origParentSection) {
1155c389ea9fSToby Isaac       PetscInt        pStart, pEnd;
1156c389ea9fSToby Isaac       PetscInt        *newParents, *newChildIDs;
1157c389ea9fSToby Isaac       PetscInt        *remoteOffsetsParents, newParentSize;
1158c389ea9fSToby Isaac       PetscSF         parentSF;
1159c389ea9fSToby Isaac 
1160c389ea9fSToby Isaac       ierr = DMPlexGetChart(*dmParallel, &pStart, &pEnd);CHKERRQ(ierr);
1161c389ea9fSToby Isaac       ierr = PetscSectionCreate(PetscObjectComm((PetscObject)*dmParallel),&newParentSection);CHKERRQ(ierr);
1162c389ea9fSToby Isaac       ierr = PetscSectionSetChart(newParentSection,pStart,pEnd);CHKERRQ(ierr);
1163c389ea9fSToby Isaac       ierr = PetscSFDistributeSection(pointSF, origParentSection, &remoteOffsetsParents, newParentSection);CHKERRQ(ierr);
1164c389ea9fSToby Isaac       ierr = PetscSFCreateSectionSF(pointSF, origParentSection, remoteOffsetsParents, newParentSection, &parentSF);CHKERRQ(ierr);
1165c389ea9fSToby Isaac       ierr = PetscSectionGetStorageSize(newParentSection,&newParentSize);CHKERRQ(ierr);
1166c389ea9fSToby Isaac       ierr = PetscMalloc2(newParentSize,&newParents,newParentSize,&newChildIDs);CHKERRQ(ierr);
1167c389ea9fSToby Isaac       ierr = PetscSFBcastBegin(parentSF, MPIU_INT, origParents, newParents);CHKERRQ(ierr);
1168c389ea9fSToby Isaac       ierr = PetscSFBcastEnd(parentSF, MPIU_INT, origParents, newParents);CHKERRQ(ierr);
1169c389ea9fSToby Isaac       ierr = PetscSFBcastBegin(parentSF, MPIU_INT, origChildIDs, newChildIDs);CHKERRQ(ierr);
1170c389ea9fSToby Isaac       ierr = PetscSFBcastEnd(parentSF, MPIU_INT, origChildIDs, newChildIDs);CHKERRQ(ierr);
1171c389ea9fSToby Isaac       ierr = ISGlobalToLocalMappingApplyBlock(renumbering,IS_GTOLM_MASK, newParentSize, newParents, NULL, newParents);CHKERRQ(ierr);
1172c389ea9fSToby Isaac       ierr = PetscOptionsHasName(((PetscObject) dm)->prefix, "-parents_view", &flg);CHKERRQ(ierr);
1173c389ea9fSToby Isaac       if (flg) {
1174c389ea9fSToby Isaac         ierr = PetscPrintf(comm, "Serial Parent Section: \n");CHKERRQ(ierr);
1175c389ea9fSToby Isaac         ierr = PetscSectionView(origParentSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
1176c389ea9fSToby Isaac         ierr = PetscPrintf(comm, "Parallel Parent Section: \n");CHKERRQ(ierr);
1177c389ea9fSToby Isaac         ierr = PetscSectionView(newParentSection, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
1178c389ea9fSToby Isaac         ierr = PetscSFView(parentSF, NULL);CHKERRQ(ierr);
1179c389ea9fSToby Isaac       }
1180c389ea9fSToby Isaac       ierr = DMPlexSetTree(*dmParallel,newParentSection,newParents,newChildIDs);CHKERRQ(ierr);
1181c389ea9fSToby Isaac       ierr = PetscSectionDestroy(&newParentSection);CHKERRQ(ierr);
1182c389ea9fSToby Isaac       ierr = PetscFree2(newParents,newChildIDs);CHKERRQ(ierr);
1183c389ea9fSToby Isaac       ierr = PetscSFDestroy(&parentSF);CHKERRQ(ierr);
1184c389ea9fSToby Isaac     }
1185c389ea9fSToby Isaac   }
1186bf5244c7SMatthew G. Knepley   /* Cleanup Partition */
1187bf5244c7SMatthew G. Knepley   ierr = ISLocalToGlobalMappingDestroy(&renumbering);CHKERRQ(ierr);
1188bf5244c7SMatthew G. Knepley   ierr = PetscSFDestroy(&partSF);CHKERRQ(ierr);
1189bf5244c7SMatthew G. Knepley   ierr = PetscSectionDestroy(&partSection);CHKERRQ(ierr);
1190bf5244c7SMatthew G. Knepley   ierr = ISDestroy(&part);CHKERRQ(ierr);
1191*4eca1733SMichael Lange   ierr = PetscSectionDestroy(&cellPartSection);CHKERRQ(ierr);
1192*4eca1733SMichael Lange   ierr = ISDestroy(&cellPart);CHKERRQ(ierr);
1193*4eca1733SMichael Lange   if (origCellPart) {
1194*4eca1733SMichael Lange     ierr = PetscSectionDestroy(&origPartSection);CHKERRQ(ierr);
1195*4eca1733SMichael Lange     ierr = ISDestroy(&origPart);CHKERRQ(ierr);
1196*4eca1733SMichael Lange     ierr = PetscSectionDestroy(&origCellPartSection);CHKERRQ(ierr);
1197*4eca1733SMichael Lange     ierr = ISDestroy(&origCellPart);CHKERRQ(ierr);
1198*4eca1733SMichael Lange   }
119986719b60SMatthew G. Knepley   /* Copy BC */
120086719b60SMatthew G. Knepley   ierr = DMPlexCopyBoundary(dm, *dmParallel);CHKERRQ(ierr);
120170034214SMatthew G. Knepley   /* Cleanup */
120270034214SMatthew G. Knepley   if (sf) {*sf = pointSF;}
120370034214SMatthew G. Knepley   else    {ierr = PetscSFDestroy(&pointSF);CHKERRQ(ierr);}
120470034214SMatthew G. Knepley   ierr = DMSetFromOptions(*dmParallel);CHKERRQ(ierr);
120570034214SMatthew G. Knepley   ierr = PetscLogEventEnd(DMPLEX_Distribute,dm,0,0,0);CHKERRQ(ierr);
120670034214SMatthew G. Knepley   PetscFunctionReturn(0);
120770034214SMatthew G. Knepley }
1208