xref: /petsc/src/dm/impls/plex/plexpreallocate.c (revision e7b800429ccbd876f22ebb836997598f58c4f124)
1cb1e1211SMatthew G Knepley #include <petsc-private/dmpleximpl.h>   /*I      "petscdmplex.h"   I*/
2cb1e1211SMatthew G Knepley #include <petsc-private/isimpl.h>
3cb1e1211SMatthew G Knepley 
4cb1e1211SMatthew G Knepley #undef __FUNCT__
5cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexGetAdjacency_Internal"
6cb1e1211SMatthew G Knepley static PetscErrorCode DMPlexGetAdjacency_Internal(DM dm, PetscInt p, PetscBool useClosure, const PetscInt *tmpClosure, PetscInt *adjSize, PetscInt adj[])
7cb1e1211SMatthew G Knepley {
8cb1e1211SMatthew G Knepley   const PetscInt *star  = tmpClosure;
9cb1e1211SMatthew G Knepley   PetscInt        numAdj = 0, maxAdjSize = *adjSize, starSize, s;
10cb1e1211SMatthew G Knepley   PetscErrorCode  ierr;
11cb1e1211SMatthew G Knepley 
12cb1e1211SMatthew G Knepley   PetscFunctionBegin;
13cb1e1211SMatthew G Knepley   ierr = DMPlexGetTransitiveClosure(dm, p, useClosure, &starSize, (PetscInt**) &star);CHKERRQ(ierr);
14cb1e1211SMatthew G Knepley   for (s = 2; s < starSize*2; s += 2) {
15cb1e1211SMatthew G Knepley     const PetscInt *closure = NULL;
16cb1e1211SMatthew G Knepley     PetscInt        closureSize, c, q;
17cb1e1211SMatthew G Knepley 
18cb1e1211SMatthew G Knepley     ierr = DMPlexGetTransitiveClosure(dm, star[s], (PetscBool)!useClosure, &closureSize, (PetscInt**) &closure);CHKERRQ(ierr);
19cb1e1211SMatthew G Knepley     for (c = 0; c < closureSize*2; c += 2) {
20cb1e1211SMatthew G Knepley       for (q = 0; q < numAdj || (adj[numAdj++] = closure[c],0); ++q) {
21cb1e1211SMatthew G Knepley         if (closure[c] == adj[q]) break;
22cb1e1211SMatthew G Knepley       }
23cb1e1211SMatthew G Knepley       if (numAdj > maxAdjSize) SETERRQ1(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid mesh exceeded adjacency allocation (%D)", maxAdjSize);
24cb1e1211SMatthew G Knepley     }
25cb1e1211SMatthew G Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, star[s], (PetscBool)!useClosure, &closureSize, (PetscInt**) &closure);CHKERRQ(ierr);
26cb1e1211SMatthew G Knepley   }
27cb1e1211SMatthew G Knepley   *adjSize = numAdj;
28cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
29cb1e1211SMatthew G Knepley }
30cb1e1211SMatthew G Knepley 
31cb1e1211SMatthew G Knepley #undef __FUNCT__
32cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexSetPreallocationCenterDimension"
33cb1e1211SMatthew G Knepley PetscErrorCode DMPlexSetPreallocationCenterDimension(DM dm, PetscInt preallocCenterDim)
34cb1e1211SMatthew G Knepley {
35cb1e1211SMatthew G Knepley   DM_Plex *mesh = (DM_Plex*) dm->data;
36cb1e1211SMatthew G Knepley 
37cb1e1211SMatthew G Knepley   PetscFunctionBegin;
38cb1e1211SMatthew G Knepley   PetscValidHeaderSpecific(dm, DM_CLASSID, 1);
39cb1e1211SMatthew G Knepley   mesh->preallocCenterDim = preallocCenterDim;
40cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
41cb1e1211SMatthew G Knepley }
42cb1e1211SMatthew G Knepley 
43cb1e1211SMatthew G Knepley #undef __FUNCT__
44cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexPreallocateOperator"
45cb1e1211SMatthew G Knepley PetscErrorCode DMPlexPreallocateOperator(DM dm, PetscInt bs, PetscSection section, PetscSection sectionGlobal, PetscInt dnz[], PetscInt onz[], PetscInt dnzu[], PetscInt onzu[], Mat A, PetscBool fillMatrix)
46cb1e1211SMatthew G Knepley {
47cb1e1211SMatthew G Knepley   DM_Plex           *mesh = (DM_Plex*) dm->data;
48cb1e1211SMatthew G Knepley   MPI_Comm           comm;
49cb1e1211SMatthew G Knepley   PetscSF            sf, sfDof, sfAdj;
50cb1e1211SMatthew G Knepley   PetscSection       leafSectionAdj, rootSectionAdj, sectionAdj;
51cb1e1211SMatthew G Knepley   PetscInt           nleaves, l, p;
52cb1e1211SMatthew G Knepley   const PetscInt    *leaves;
53cb1e1211SMatthew G Knepley   const PetscSFNode *remotes;
54cb1e1211SMatthew G Knepley   PetscInt           dim, pStart, pEnd, numDof, globalOffStart, globalOffEnd, numCols;
55cb1e1211SMatthew G Knepley   PetscInt          *tmpClosure, *tmpAdj, *adj, *rootAdj, *cols, *remoteOffsets;
56cb1e1211SMatthew G Knepley   PetscInt           depth, maxConeSize, maxSupportSize, maxClosureSize, maxAdjSize, adjSize;
57cb1e1211SMatthew G Knepley   PetscLayout        rLayout;
58cb1e1211SMatthew G Knepley   PetscInt           locRows, rStart, rEnd, r;
59cb1e1211SMatthew G Knepley   PetscMPIInt        size;
60cb1e1211SMatthew G Knepley   PetscBool          useClosure, debug = PETSC_FALSE;
61cb1e1211SMatthew G Knepley   PetscErrorCode     ierr;
62cb1e1211SMatthew G Knepley 
63cb1e1211SMatthew G Knepley   PetscFunctionBegin;
64cb1e1211SMatthew G Knepley   ierr = PetscObjectGetComm((PetscObject)dm,&comm);CHKERRQ(ierr);
65cb1e1211SMatthew G Knepley   ierr = PetscOptionsGetBool(NULL, "-dm_view_preallocation", &debug, NULL);CHKERRQ(ierr);
66cb1e1211SMatthew G Knepley   ierr = MPI_Comm_size(comm, &size);CHKERRQ(ierr);
67cb1e1211SMatthew G Knepley   ierr = DMPlexGetDimension(dm, &dim);CHKERRQ(ierr);
68cb1e1211SMatthew G Knepley   ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
69cb1e1211SMatthew G Knepley   /* Create dof SF based on point SF */
70cb1e1211SMatthew G Knepley   if (debug) {
71cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Input Section for Preallocation:\n");CHKERRQ(ierr);
72cb1e1211SMatthew G Knepley     ierr = PetscSectionView(section, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
73cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Input Global Section for Preallocation:\n");CHKERRQ(ierr);
74cb1e1211SMatthew G Knepley     ierr = PetscSectionView(sectionGlobal, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
75cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Input SF for Preallocation:\n");CHKERRQ(ierr);
76cb1e1211SMatthew G Knepley     ierr = PetscSFView(sf, NULL);CHKERRQ(ierr);
77cb1e1211SMatthew G Knepley   }
78cb1e1211SMatthew G Knepley   ierr = PetscSFCreateRemoteOffsets(sf, section, section, &remoteOffsets);CHKERRQ(ierr);
79cb1e1211SMatthew G Knepley   ierr = PetscSFCreateSectionSF(sf, section, remoteOffsets, section, &sfDof);CHKERRQ(ierr);
80cb1e1211SMatthew G Knepley   if (debug) {
81cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Dof SF for Preallocation:\n");CHKERRQ(ierr);
82cb1e1211SMatthew G Knepley     ierr = PetscSFView(sfDof, NULL);CHKERRQ(ierr);
83cb1e1211SMatthew G Knepley   }
84cb1e1211SMatthew G Knepley   /* Create section for dof adjacency (dof ==> # adj dof) */
85cb1e1211SMatthew G Knepley   /*   FEM:   Two points p and q are adjacent if q \in closure(star(p)), preallocCenterDim = dim   */
86cb1e1211SMatthew G Knepley   /*   FVM:   Two points p and q are adjacent if q \in star(cone(p)),    preallocCenterDim = dim-1 */
87cb1e1211SMatthew G Knepley   /*   FVM++: Two points p and q are adjacent if q \in star(closure(p)), preallocCenterDim = 0     */
88cb1e1211SMatthew G Knepley   if (mesh->preallocCenterDim == dim) {
89cb1e1211SMatthew G Knepley     useClosure = PETSC_FALSE;
90cb1e1211SMatthew G Knepley   } else if (mesh->preallocCenterDim == 0) {
91cb1e1211SMatthew G Knepley     useClosure = PETSC_TRUE;
92cb1e1211SMatthew G Knepley   } else SETERRQ1(comm, PETSC_ERR_ARG_OUTOFRANGE, "Do not support preallocation with center points of dimension %d", mesh->preallocCenterDim);
93cb1e1211SMatthew G Knepley 
94cb1e1211SMatthew G Knepley   ierr = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
95cb1e1211SMatthew G Knepley   ierr = PetscSectionGetStorageSize(section, &numDof);CHKERRQ(ierr);
96cb1e1211SMatthew G Knepley   ierr = PetscSectionCreate(comm, &leafSectionAdj);CHKERRQ(ierr);
97cb1e1211SMatthew G Knepley   ierr = PetscSectionSetChart(leafSectionAdj, 0, numDof);CHKERRQ(ierr);
98cb1e1211SMatthew G Knepley   ierr = PetscSectionCreate(comm, &rootSectionAdj);CHKERRQ(ierr);
99cb1e1211SMatthew G Knepley   ierr = PetscSectionSetChart(rootSectionAdj, 0, numDof);CHKERRQ(ierr);
100cb1e1211SMatthew G Knepley   /*   Fill in the ghost dofs on the interface */
101cb1e1211SMatthew G Knepley   ierr = PetscSFGetGraph(sf, NULL, &nleaves, &leaves, &remotes);CHKERRQ(ierr);
102cb1e1211SMatthew G Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
103cb1e1211SMatthew G Knepley   ierr = DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize);CHKERRQ(ierr);
104cb1e1211SMatthew G Knepley 
105*e7b80042SMatthew G. Knepley   maxClosureSize = 2*PetscMax(PetscPowInt(mesh->maxConeSize,depth+1),PetscPowInt(mesh->maxSupportSize,depth+1));
106*e7b80042SMatthew G. Knepley   maxAdjSize     = PetscPowInt(mesh->maxConeSize,depth+1) * PetscPowInt(mesh->maxSupportSize,depth+1) + 1;
107cb1e1211SMatthew G Knepley 
108cb1e1211SMatthew G Knepley   ierr = PetscMalloc2(maxClosureSize,PetscInt,&tmpClosure,maxAdjSize,PetscInt,&tmpAdj);CHKERRQ(ierr);
109cb1e1211SMatthew G Knepley 
110cb1e1211SMatthew G Knepley   /*
111cb1e1211SMatthew G Knepley    ** The bootstrapping process involves six rounds with similar structure of visiting neighbors of each point.
112cb1e1211SMatthew G Knepley     1. Visit unowned points on interface, count adjacencies placing in leafSectionAdj
113cb1e1211SMatthew G Knepley        Reduce those counts to rootSectionAdj (now redundantly counting some interface points)
114cb1e1211SMatthew G Knepley     2. Visit owned points on interface, count adjacencies placing in rootSectionAdj
115cb1e1211SMatthew G Knepley        Create sfAdj connecting rootSectionAdj and leafSectionAdj
116cb1e1211SMatthew G Knepley     3. Visit unowned points on interface, write adjacencies to adj
117cb1e1211SMatthew G Knepley        Gather adj to rootAdj (note that there is redundancy in rootAdj when multiple procs find the same adjacencies)
118cb1e1211SMatthew G Knepley     4. Visit owned points on interface, write adjacencies to rootAdj
119cb1e1211SMatthew G Knepley        Remove redundancy in rootAdj
120cb1e1211SMatthew G Knepley    ** The last two traversals use transitive closure
121cb1e1211SMatthew G Knepley     5. Visit all owned points in the subdomain, count dofs for each point (sectionAdj)
122cb1e1211SMatthew G Knepley        Allocate memory addressed by sectionAdj (cols)
123cb1e1211SMatthew G Knepley     6. Visit all owned points in the subdomain, insert dof adjacencies into cols
124cb1e1211SMatthew G Knepley    ** Knowing all the column adjacencies, check ownership and sum into dnz and onz
125cb1e1211SMatthew G Knepley   */
126cb1e1211SMatthew G Knepley 
127cb1e1211SMatthew G Knepley   for (l = 0; l < nleaves; ++l) {
128cb1e1211SMatthew G Knepley     PetscInt dof, off, d, q;
129cb1e1211SMatthew G Knepley     PetscInt p = leaves[l], numAdj = maxAdjSize;
130cb1e1211SMatthew G Knepley 
131cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
132cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
133cb1e1211SMatthew G Knepley     ierr = DMPlexGetAdjacency_Internal(dm, p, useClosure, tmpClosure, &numAdj, tmpAdj);CHKERRQ(ierr);
134cb1e1211SMatthew G Knepley     for (q = 0; q < numAdj; ++q) {
135cb1e1211SMatthew G Knepley       const PetscInt padj = tmpAdj[q];
136cb1e1211SMatthew G Knepley       PetscInt ndof, ncdof;
137cb1e1211SMatthew G Knepley 
138cb1e1211SMatthew G Knepley       if ((padj < pStart) || (padj >= pEnd)) continue;
139cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(section, padj, &ndof);CHKERRQ(ierr);
140cb1e1211SMatthew G Knepley       ierr = PetscSectionGetConstraintDof(section, padj, &ncdof);CHKERRQ(ierr);
141cb1e1211SMatthew G Knepley       for (d = off; d < off+dof; ++d) {
142cb1e1211SMatthew G Knepley         ierr = PetscSectionAddDof(leafSectionAdj, d, ndof-ncdof);CHKERRQ(ierr);
143cb1e1211SMatthew G Knepley       }
144cb1e1211SMatthew G Knepley     }
145cb1e1211SMatthew G Knepley   }
146cb1e1211SMatthew G Knepley   ierr = PetscSectionSetUp(leafSectionAdj);CHKERRQ(ierr);
147cb1e1211SMatthew G Knepley   if (debug) {
148cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Adjacency Section for Preallocation on Leaves:\n");CHKERRQ(ierr);
149cb1e1211SMatthew G Knepley     ierr = PetscSectionView(leafSectionAdj, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
150cb1e1211SMatthew G Knepley   }
151cb1e1211SMatthew G Knepley   /* Get maximum remote adjacency sizes for owned dofs on interface (roots) */
152cb1e1211SMatthew G Knepley   if (size > 1) {
153cb1e1211SMatthew G Knepley     ierr = PetscSFReduceBegin(sfDof, MPIU_INT, leafSectionAdj->atlasDof, rootSectionAdj->atlasDof, MPI_SUM);CHKERRQ(ierr);
154cb1e1211SMatthew G Knepley     ierr = PetscSFReduceEnd(sfDof, MPIU_INT, leafSectionAdj->atlasDof, rootSectionAdj->atlasDof, MPI_SUM);CHKERRQ(ierr);
155cb1e1211SMatthew G Knepley   }
156cb1e1211SMatthew G Knepley   if (debug) {
157cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Adjancency Section for Preallocation on Roots:\n");CHKERRQ(ierr);
158cb1e1211SMatthew G Knepley     ierr = PetscSectionView(rootSectionAdj, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
159cb1e1211SMatthew G Knepley   }
160cb1e1211SMatthew G Knepley   /* Add in local adjacency sizes for owned dofs on interface (roots) */
161cb1e1211SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
162cb1e1211SMatthew G Knepley     PetscInt numAdj = maxAdjSize, adof, dof, off, d, q;
163cb1e1211SMatthew G Knepley 
164cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
165cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
166cb1e1211SMatthew G Knepley     if (!dof) continue;
167cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(rootSectionAdj, off, &adof);CHKERRQ(ierr);
168cb1e1211SMatthew G Knepley     if (adof <= 0) continue;
169cb1e1211SMatthew G Knepley     ierr = DMPlexGetAdjacency_Internal(dm, p, useClosure, tmpClosure, &numAdj, tmpAdj);CHKERRQ(ierr);
170cb1e1211SMatthew G Knepley     for (q = 0; q < numAdj; ++q) {
171cb1e1211SMatthew G Knepley       const PetscInt padj = tmpAdj[q];
172cb1e1211SMatthew G Knepley       PetscInt ndof, ncdof;
173cb1e1211SMatthew G Knepley 
174cb1e1211SMatthew G Knepley       if ((padj < pStart) || (padj >= pEnd)) continue;
175cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(section, padj, &ndof);CHKERRQ(ierr);
176cb1e1211SMatthew G Knepley       ierr = PetscSectionGetConstraintDof(section, padj, &ncdof);CHKERRQ(ierr);
177cb1e1211SMatthew G Knepley       for (d = off; d < off+dof; ++d) {
178cb1e1211SMatthew G Knepley         ierr = PetscSectionAddDof(rootSectionAdj, d, ndof-ncdof);CHKERRQ(ierr);
179cb1e1211SMatthew G Knepley       }
180cb1e1211SMatthew G Knepley     }
181cb1e1211SMatthew G Knepley   }
182cb1e1211SMatthew G Knepley   ierr = PetscSectionSetUp(rootSectionAdj);CHKERRQ(ierr);
183cb1e1211SMatthew G Knepley   if (debug) {
184cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Adjancency Section for Preallocation on Roots after local additions:\n");CHKERRQ(ierr);
185cb1e1211SMatthew G Knepley     ierr = PetscSectionView(rootSectionAdj, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
186cb1e1211SMatthew G Knepley   }
187cb1e1211SMatthew G Knepley   /* Create adj SF based on dof SF */
188cb1e1211SMatthew G Knepley   ierr = PetscSFCreateRemoteOffsets(sfDof, rootSectionAdj, leafSectionAdj, &remoteOffsets);CHKERRQ(ierr);
189cb1e1211SMatthew G Knepley   ierr = PetscSFCreateSectionSF(sfDof, rootSectionAdj, remoteOffsets, leafSectionAdj, &sfAdj);CHKERRQ(ierr);
190cb1e1211SMatthew G Knepley   if (debug) {
191cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Adjacency SF for Preallocation:\n");CHKERRQ(ierr);
192cb1e1211SMatthew G Knepley     ierr = PetscSFView(sfAdj, NULL);CHKERRQ(ierr);
193cb1e1211SMatthew G Knepley   }
194cb1e1211SMatthew G Knepley   ierr = PetscSFDestroy(&sfDof);CHKERRQ(ierr);
195cb1e1211SMatthew G Knepley   /* Create leaf adjacency */
196cb1e1211SMatthew G Knepley   ierr = PetscSectionSetUp(leafSectionAdj);CHKERRQ(ierr);
197cb1e1211SMatthew G Knepley   ierr = PetscSectionGetStorageSize(leafSectionAdj, &adjSize);CHKERRQ(ierr);
198cb1e1211SMatthew G Knepley   ierr = PetscMalloc(adjSize * sizeof(PetscInt), &adj);CHKERRQ(ierr);
199cb1e1211SMatthew G Knepley   ierr = PetscMemzero(adj, adjSize * sizeof(PetscInt));CHKERRQ(ierr);
200cb1e1211SMatthew G Knepley   for (l = 0; l < nleaves; ++l) {
201cb1e1211SMatthew G Knepley     PetscInt dof, off, d, q;
202cb1e1211SMatthew G Knepley     PetscInt p = leaves[l], numAdj = maxAdjSize;
203cb1e1211SMatthew G Knepley 
204cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
205cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
206cb1e1211SMatthew G Knepley     ierr = DMPlexGetAdjacency_Internal(dm, p, useClosure, tmpClosure, &numAdj, tmpAdj);CHKERRQ(ierr);
207cb1e1211SMatthew G Knepley     for (d = off; d < off+dof; ++d) {
208cb1e1211SMatthew G Knepley       PetscInt aoff, i = 0;
209cb1e1211SMatthew G Knepley 
210cb1e1211SMatthew G Knepley       ierr = PetscSectionGetOffset(leafSectionAdj, d, &aoff);CHKERRQ(ierr);
211cb1e1211SMatthew G Knepley       for (q = 0; q < numAdj; ++q) {
212cb1e1211SMatthew G Knepley         const PetscInt padj = tmpAdj[q];
213cb1e1211SMatthew G Knepley         PetscInt ndof, ncdof, ngoff, nd;
214cb1e1211SMatthew G Knepley 
215cb1e1211SMatthew G Knepley         if ((padj < pStart) || (padj >= pEnd)) continue;
216cb1e1211SMatthew G Knepley         ierr = PetscSectionGetDof(section, padj, &ndof);CHKERRQ(ierr);
217cb1e1211SMatthew G Knepley         ierr = PetscSectionGetConstraintDof(section, padj, &ncdof);CHKERRQ(ierr);
218cb1e1211SMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, padj, &ngoff);CHKERRQ(ierr);
219cb1e1211SMatthew G Knepley         for (nd = 0; nd < ndof-ncdof; ++nd) {
220cb1e1211SMatthew G Knepley           adj[aoff+i] = (ngoff < 0 ? -(ngoff+1) : ngoff) + nd;
221cb1e1211SMatthew G Knepley           ++i;
222cb1e1211SMatthew G Knepley         }
223cb1e1211SMatthew G Knepley       }
224cb1e1211SMatthew G Knepley     }
225cb1e1211SMatthew G Knepley   }
226cb1e1211SMatthew G Knepley   /* Debugging */
227cb1e1211SMatthew G Knepley   if (debug) {
228cb1e1211SMatthew G Knepley     IS tmp;
229cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Leaf adjacency indices\n");CHKERRQ(ierr);
230cb1e1211SMatthew G Knepley     ierr = ISCreateGeneral(comm, adjSize, adj, PETSC_USE_POINTER, &tmp);CHKERRQ(ierr);
231cb1e1211SMatthew G Knepley     ierr = ISView(tmp, NULL);CHKERRQ(ierr);
232cb1e1211SMatthew G Knepley   }
233cb1e1211SMatthew G Knepley   /* Gather adjacenct indices to root */
234cb1e1211SMatthew G Knepley   ierr = PetscSectionGetStorageSize(rootSectionAdj, &adjSize);CHKERRQ(ierr);
235cb1e1211SMatthew G Knepley   ierr = PetscMalloc(adjSize * sizeof(PetscInt), &rootAdj);CHKERRQ(ierr);
236cb1e1211SMatthew G Knepley   for (r = 0; r < adjSize; ++r) rootAdj[r] = -1;
237cb1e1211SMatthew G Knepley   if (size > 1) {
238cb1e1211SMatthew G Knepley     ierr = PetscSFGatherBegin(sfAdj, MPIU_INT, adj, rootAdj);CHKERRQ(ierr);
239cb1e1211SMatthew G Knepley     ierr = PetscSFGatherEnd(sfAdj, MPIU_INT, adj, rootAdj);CHKERRQ(ierr);
240cb1e1211SMatthew G Knepley   }
241cb1e1211SMatthew G Knepley   ierr = PetscSFDestroy(&sfAdj);CHKERRQ(ierr);
242cb1e1211SMatthew G Knepley   ierr = PetscFree(adj);CHKERRQ(ierr);
243cb1e1211SMatthew G Knepley   /* Debugging */
244cb1e1211SMatthew G Knepley   if (debug) {
245cb1e1211SMatthew G Knepley     IS tmp;
246cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Root adjacency indices after gather\n");CHKERRQ(ierr);
247cb1e1211SMatthew G Knepley     ierr = ISCreateGeneral(comm, adjSize, rootAdj, PETSC_USE_POINTER, &tmp);CHKERRQ(ierr);
248cb1e1211SMatthew G Knepley     ierr = ISView(tmp, NULL);CHKERRQ(ierr);
249cb1e1211SMatthew G Knepley   }
250cb1e1211SMatthew G Knepley   /* Add in local adjacency indices for owned dofs on interface (roots) */
251cb1e1211SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
252cb1e1211SMatthew G Knepley     PetscInt numAdj = maxAdjSize, adof, dof, off, d, q;
253cb1e1211SMatthew G Knepley 
254cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
255cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
256cb1e1211SMatthew G Knepley     if (!dof) continue;
257cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(rootSectionAdj, off, &adof);CHKERRQ(ierr);
258cb1e1211SMatthew G Knepley     if (adof <= 0) continue;
259cb1e1211SMatthew G Knepley     ierr = DMPlexGetAdjacency_Internal(dm, p, useClosure, tmpClosure, &numAdj, tmpAdj);CHKERRQ(ierr);
260cb1e1211SMatthew G Knepley     for (d = off; d < off+dof; ++d) {
261cb1e1211SMatthew G Knepley       PetscInt adof, aoff, i;
262cb1e1211SMatthew G Knepley 
263cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(rootSectionAdj, d, &adof);CHKERRQ(ierr);
264cb1e1211SMatthew G Knepley       ierr = PetscSectionGetOffset(rootSectionAdj, d, &aoff);CHKERRQ(ierr);
265cb1e1211SMatthew G Knepley       i    = adof-1;
266cb1e1211SMatthew G Knepley       for (q = 0; q < numAdj; ++q) {
267cb1e1211SMatthew G Knepley         const PetscInt padj = tmpAdj[q];
268cb1e1211SMatthew G Knepley         PetscInt ndof, ncdof, ngoff, nd;
269cb1e1211SMatthew G Knepley 
270cb1e1211SMatthew G Knepley         if ((padj < pStart) || (padj >= pEnd)) continue;
271cb1e1211SMatthew G Knepley         ierr = PetscSectionGetDof(section, padj, &ndof);CHKERRQ(ierr);
272cb1e1211SMatthew G Knepley         ierr = PetscSectionGetConstraintDof(section, padj, &ncdof);CHKERRQ(ierr);
273cb1e1211SMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, padj, &ngoff);CHKERRQ(ierr);
274cb1e1211SMatthew G Knepley         for (nd = 0; nd < ndof-ncdof; ++nd) {
275cb1e1211SMatthew G Knepley           rootAdj[aoff+i] = ngoff < 0 ? -(ngoff+1)+nd : ngoff+nd;
276cb1e1211SMatthew G Knepley           --i;
277cb1e1211SMatthew G Knepley         }
278cb1e1211SMatthew G Knepley       }
279cb1e1211SMatthew G Knepley     }
280cb1e1211SMatthew G Knepley   }
281cb1e1211SMatthew G Knepley   /* Debugging */
282cb1e1211SMatthew G Knepley   if (debug) {
283cb1e1211SMatthew G Knepley     IS tmp;
284cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Root adjacency indices\n");CHKERRQ(ierr);
285cb1e1211SMatthew G Knepley     ierr = ISCreateGeneral(comm, adjSize, rootAdj, PETSC_USE_POINTER, &tmp);CHKERRQ(ierr);
286cb1e1211SMatthew G Knepley     ierr = ISView(tmp, NULL);CHKERRQ(ierr);
287cb1e1211SMatthew G Knepley   }
288cb1e1211SMatthew G Knepley   /* Compress indices */
289cb1e1211SMatthew G Knepley   ierr = PetscSectionSetUp(rootSectionAdj);CHKERRQ(ierr);
290cb1e1211SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
291cb1e1211SMatthew G Knepley     PetscInt dof, cdof, off, d;
292cb1e1211SMatthew G Knepley     PetscInt adof, aoff;
293cb1e1211SMatthew G Knepley 
294cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
295cb1e1211SMatthew G Knepley     ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr);
296cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
297cb1e1211SMatthew G Knepley     if (!dof) continue;
298cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(rootSectionAdj, off, &adof);CHKERRQ(ierr);
299cb1e1211SMatthew G Knepley     if (adof <= 0) continue;
300cb1e1211SMatthew G Knepley     for (d = off; d < off+dof-cdof; ++d) {
301cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(rootSectionAdj, d, &adof);CHKERRQ(ierr);
302cb1e1211SMatthew G Knepley       ierr = PetscSectionGetOffset(rootSectionAdj, d, &aoff);CHKERRQ(ierr);
303cb1e1211SMatthew G Knepley       ierr = PetscSortRemoveDupsInt(&adof, &rootAdj[aoff]);CHKERRQ(ierr);
304cb1e1211SMatthew G Knepley       ierr = PetscSectionSetDof(rootSectionAdj, d, adof);CHKERRQ(ierr);
305cb1e1211SMatthew G Knepley     }
306cb1e1211SMatthew G Knepley   }
307cb1e1211SMatthew G Knepley   /* Debugging */
308cb1e1211SMatthew G Knepley   if (debug) {
309cb1e1211SMatthew G Knepley     IS tmp;
310cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Adjancency Section for Preallocation on Roots after compression:\n");CHKERRQ(ierr);
311cb1e1211SMatthew G Knepley     ierr = PetscSectionView(rootSectionAdj, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
312cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Root adjacency indices after compression\n");CHKERRQ(ierr);
313cb1e1211SMatthew G Knepley     ierr = ISCreateGeneral(comm, adjSize, rootAdj, PETSC_USE_POINTER, &tmp);CHKERRQ(ierr);
314cb1e1211SMatthew G Knepley     ierr = ISView(tmp, NULL);CHKERRQ(ierr);
315cb1e1211SMatthew G Knepley   }
316cb1e1211SMatthew G Knepley   /* Build adjacency section: Maps global indices to sets of adjacent global indices */
317cb1e1211SMatthew G Knepley   ierr = PetscSectionGetOffsetRange(sectionGlobal, &globalOffStart, &globalOffEnd);CHKERRQ(ierr);
318cb1e1211SMatthew G Knepley   ierr = PetscSectionCreate(comm, &sectionAdj);CHKERRQ(ierr);
319cb1e1211SMatthew G Knepley   ierr = PetscSectionSetChart(sectionAdj, globalOffStart, globalOffEnd);CHKERRQ(ierr);
320cb1e1211SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
321cb1e1211SMatthew G Knepley     PetscInt  numAdj = maxAdjSize, dof, cdof, off, goff, d, q;
322cb1e1211SMatthew G Knepley     PetscBool found  = PETSC_TRUE;
323cb1e1211SMatthew G Knepley 
324cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
325cb1e1211SMatthew G Knepley     ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr);
326cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
327cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(sectionGlobal, p, &goff);CHKERRQ(ierr);
328cb1e1211SMatthew G Knepley     for (d = 0; d < dof-cdof; ++d) {
329cb1e1211SMatthew G Knepley       PetscInt ldof, rdof;
330cb1e1211SMatthew G Knepley 
331cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(leafSectionAdj, off+d, &ldof);CHKERRQ(ierr);
332cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(rootSectionAdj, off+d, &rdof);CHKERRQ(ierr);
333cb1e1211SMatthew G Knepley       if (ldof > 0) {
334cb1e1211SMatthew G Knepley         /* We do not own this point */
335cb1e1211SMatthew G Knepley       } else if (rdof > 0) {
336cb1e1211SMatthew G Knepley         ierr = PetscSectionSetDof(sectionAdj, goff+d, rdof);CHKERRQ(ierr);
337cb1e1211SMatthew G Knepley       } else {
338cb1e1211SMatthew G Knepley         found = PETSC_FALSE;
339cb1e1211SMatthew G Knepley       }
340cb1e1211SMatthew G Knepley     }
341cb1e1211SMatthew G Knepley     if (found) continue;
342cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
343cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(sectionGlobal, p, &goff);CHKERRQ(ierr);
344cb1e1211SMatthew G Knepley     ierr = DMPlexGetAdjacency_Internal(dm, p, useClosure, tmpClosure, &numAdj, tmpAdj);CHKERRQ(ierr);
345cb1e1211SMatthew G Knepley     for (q = 0; q < numAdj; ++q) {
346cb1e1211SMatthew G Knepley       const PetscInt padj = tmpAdj[q];
347cb1e1211SMatthew G Knepley       PetscInt ndof, ncdof, noff;
348cb1e1211SMatthew G Knepley 
349cb1e1211SMatthew G Knepley       if ((padj < pStart) || (padj >= pEnd)) continue;
350cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(section, padj, &ndof);CHKERRQ(ierr);
351cb1e1211SMatthew G Knepley       ierr = PetscSectionGetConstraintDof(section, padj, &ncdof);CHKERRQ(ierr);
352cb1e1211SMatthew G Knepley       ierr = PetscSectionGetOffset(section, padj, &noff);CHKERRQ(ierr);
353cb1e1211SMatthew G Knepley       for (d = goff; d < goff+dof-cdof; ++d) {
354cb1e1211SMatthew G Knepley         ierr = PetscSectionAddDof(sectionAdj, d, ndof-ncdof);CHKERRQ(ierr);
355cb1e1211SMatthew G Knepley       }
356cb1e1211SMatthew G Knepley     }
357cb1e1211SMatthew G Knepley   }
358cb1e1211SMatthew G Knepley   ierr = PetscSectionSetUp(sectionAdj);CHKERRQ(ierr);
359cb1e1211SMatthew G Knepley   if (debug) {
360cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Adjacency Section for Preallocation:\n");CHKERRQ(ierr);
361cb1e1211SMatthew G Knepley     ierr = PetscSectionView(sectionAdj, PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
362cb1e1211SMatthew G Knepley   }
363cb1e1211SMatthew G Knepley   /* Get adjacent indices */
364cb1e1211SMatthew G Knepley   ierr = PetscSectionGetStorageSize(sectionAdj, &numCols);CHKERRQ(ierr);
365cb1e1211SMatthew G Knepley   ierr = PetscMalloc(numCols * sizeof(PetscInt), &cols);CHKERRQ(ierr);
366cb1e1211SMatthew G Knepley   for (p = pStart; p < pEnd; ++p) {
367cb1e1211SMatthew G Knepley     PetscInt  numAdj = maxAdjSize, dof, cdof, off, goff, d, q;
368cb1e1211SMatthew G Knepley     PetscBool found  = PETSC_TRUE;
369cb1e1211SMatthew G Knepley 
370cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(section, p, &dof);CHKERRQ(ierr);
371cb1e1211SMatthew G Knepley     ierr = PetscSectionGetConstraintDof(section, p, &cdof);CHKERRQ(ierr);
372cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(section, p, &off);CHKERRQ(ierr);
373cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(sectionGlobal, p, &goff);CHKERRQ(ierr);
374cb1e1211SMatthew G Knepley     for (d = 0; d < dof-cdof; ++d) {
375cb1e1211SMatthew G Knepley       PetscInt ldof, rdof;
376cb1e1211SMatthew G Knepley 
377cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(leafSectionAdj, off+d, &ldof);CHKERRQ(ierr);
378cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(rootSectionAdj, off+d, &rdof);CHKERRQ(ierr);
379cb1e1211SMatthew G Knepley       if (ldof > 0) {
380cb1e1211SMatthew G Knepley         /* We do not own this point */
381cb1e1211SMatthew G Knepley       } else if (rdof > 0) {
382cb1e1211SMatthew G Knepley         PetscInt aoff, roff;
383cb1e1211SMatthew G Knepley 
384cb1e1211SMatthew G Knepley         ierr = PetscSectionGetOffset(sectionAdj, goff+d, &aoff);CHKERRQ(ierr);
385cb1e1211SMatthew G Knepley         ierr = PetscSectionGetOffset(rootSectionAdj, off+d, &roff);CHKERRQ(ierr);
386cb1e1211SMatthew G Knepley         ierr = PetscMemcpy(&cols[aoff], &rootAdj[roff], rdof * sizeof(PetscInt));CHKERRQ(ierr);
387cb1e1211SMatthew G Knepley       } else {
388cb1e1211SMatthew G Knepley         found = PETSC_FALSE;
389cb1e1211SMatthew G Knepley       }
390cb1e1211SMatthew G Knepley     }
391cb1e1211SMatthew G Knepley     if (found) continue;
392cb1e1211SMatthew G Knepley     ierr = DMPlexGetAdjacency_Internal(dm, p, useClosure, tmpClosure, &numAdj, tmpAdj);CHKERRQ(ierr);
393cb1e1211SMatthew G Knepley     for (d = goff; d < goff+dof-cdof; ++d) {
394cb1e1211SMatthew G Knepley       PetscInt adof, aoff, i = 0;
395cb1e1211SMatthew G Knepley 
396cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(sectionAdj, d, &adof);CHKERRQ(ierr);
397cb1e1211SMatthew G Knepley       ierr = PetscSectionGetOffset(sectionAdj, d, &aoff);CHKERRQ(ierr);
398cb1e1211SMatthew G Knepley       for (q = 0; q < numAdj; ++q) {
399cb1e1211SMatthew G Knepley         const PetscInt  padj = tmpAdj[q];
400cb1e1211SMatthew G Knepley         PetscInt        ndof, ncdof, ngoff, nd;
401cb1e1211SMatthew G Knepley         const PetscInt *ncind;
402cb1e1211SMatthew G Knepley 
403cb1e1211SMatthew G Knepley         /* Adjacent points may not be in the section chart */
404cb1e1211SMatthew G Knepley         if ((padj < pStart) || (padj >= pEnd)) continue;
405cb1e1211SMatthew G Knepley         ierr = PetscSectionGetDof(section, padj, &ndof);CHKERRQ(ierr);
406cb1e1211SMatthew G Knepley         ierr = PetscSectionGetConstraintDof(section, padj, &ncdof);CHKERRQ(ierr);
407cb1e1211SMatthew G Knepley         ierr = PetscSectionGetConstraintIndices(section, padj, &ncind);CHKERRQ(ierr);
408cb1e1211SMatthew G Knepley         ierr = PetscSectionGetOffset(sectionGlobal, padj, &ngoff);CHKERRQ(ierr);
409cb1e1211SMatthew G Knepley         for (nd = 0; nd < ndof-ncdof; ++nd, ++i) {
410cb1e1211SMatthew G Knepley           cols[aoff+i] = ngoff < 0 ? -(ngoff+1)+nd : ngoff+nd;
411cb1e1211SMatthew G Knepley         }
412cb1e1211SMatthew G Knepley       }
413cb1e1211SMatthew G Knepley       if (i != adof) SETERRQ4(PETSC_COMM_SELF, PETSC_ERR_PLIB, "Invalid number of entries %D != %D for dof %D (point %D)", i, adof, d, p);
414cb1e1211SMatthew G Knepley     }
415cb1e1211SMatthew G Knepley   }
416cb1e1211SMatthew G Knepley   ierr = PetscSectionDestroy(&leafSectionAdj);CHKERRQ(ierr);
417cb1e1211SMatthew G Knepley   ierr = PetscSectionDestroy(&rootSectionAdj);CHKERRQ(ierr);
418cb1e1211SMatthew G Knepley   ierr = PetscFree(rootAdj);CHKERRQ(ierr);
419cb1e1211SMatthew G Knepley   ierr = PetscFree2(tmpClosure, tmpAdj);CHKERRQ(ierr);
420cb1e1211SMatthew G Knepley   /* Debugging */
421cb1e1211SMatthew G Knepley   if (debug) {
422cb1e1211SMatthew G Knepley     IS tmp;
423cb1e1211SMatthew G Knepley     ierr = PetscPrintf(comm, "Column indices\n");CHKERRQ(ierr);
424cb1e1211SMatthew G Knepley     ierr = ISCreateGeneral(comm, numCols, cols, PETSC_USE_POINTER, &tmp);CHKERRQ(ierr);
425cb1e1211SMatthew G Knepley     ierr = ISView(tmp, NULL);CHKERRQ(ierr);
426cb1e1211SMatthew G Knepley   }
427cb1e1211SMatthew G Knepley   /* Create allocation vectors from adjacency graph */
428cb1e1211SMatthew G Knepley   ierr = MatGetLocalSize(A, &locRows, NULL);CHKERRQ(ierr);
429cb1e1211SMatthew G Knepley   ierr = PetscLayoutCreate(PetscObjectComm((PetscObject)A), &rLayout);CHKERRQ(ierr);
430cb1e1211SMatthew G Knepley   ierr = PetscLayoutSetLocalSize(rLayout, locRows);CHKERRQ(ierr);
431cb1e1211SMatthew G Knepley   ierr = PetscLayoutSetBlockSize(rLayout, 1);CHKERRQ(ierr);
432cb1e1211SMatthew G Knepley   ierr = PetscLayoutSetUp(rLayout);CHKERRQ(ierr);
433cb1e1211SMatthew G Knepley   ierr = PetscLayoutGetRange(rLayout, &rStart, &rEnd);CHKERRQ(ierr);
434cb1e1211SMatthew G Knepley   ierr = PetscLayoutDestroy(&rLayout);CHKERRQ(ierr);
435cb1e1211SMatthew G Knepley   /* Only loop over blocks of rows */
436cb1e1211SMatthew G Knepley   if (rStart%bs || rEnd%bs) SETERRQ3(PetscObjectComm((PetscObject)A), PETSC_ERR_ARG_WRONG, "Invalid layout [%d, %d) for matrix, must be divisible by block size %d", rStart, rEnd, bs);
437cb1e1211SMatthew G Knepley   for (r = rStart/bs; r < rEnd/bs; ++r) {
438cb1e1211SMatthew G Knepley     const PetscInt row = r*bs;
439cb1e1211SMatthew G Knepley     PetscInt       numCols, cStart, c;
440cb1e1211SMatthew G Knepley 
441cb1e1211SMatthew G Knepley     ierr = PetscSectionGetDof(sectionAdj, row, &numCols);CHKERRQ(ierr);
442cb1e1211SMatthew G Knepley     ierr = PetscSectionGetOffset(sectionAdj, row, &cStart);CHKERRQ(ierr);
443cb1e1211SMatthew G Knepley     for (c = cStart; c < cStart+numCols; ++c) {
444cb1e1211SMatthew G Knepley       if ((cols[c] >= rStart*bs) && (cols[c] < rEnd*bs)) {
445cb1e1211SMatthew G Knepley         ++dnz[r-rStart];
446cb1e1211SMatthew G Knepley         if (cols[c] >= row) ++dnzu[r-rStart];
447cb1e1211SMatthew G Knepley       } else {
448cb1e1211SMatthew G Knepley         ++onz[r-rStart];
449cb1e1211SMatthew G Knepley         if (cols[c] >= row) ++onzu[r-rStart];
450cb1e1211SMatthew G Knepley       }
451cb1e1211SMatthew G Knepley     }
452cb1e1211SMatthew G Knepley   }
453cb1e1211SMatthew G Knepley   if (bs > 1) {
454cb1e1211SMatthew G Knepley     for (r = 0; r < locRows/bs; ++r) {
455cb1e1211SMatthew G Knepley       dnz[r]  /= bs;
456cb1e1211SMatthew G Knepley       onz[r]  /= bs;
457cb1e1211SMatthew G Knepley       dnzu[r] /= bs;
458cb1e1211SMatthew G Knepley       onzu[r] /= bs;
459cb1e1211SMatthew G Knepley     }
460cb1e1211SMatthew G Knepley   }
461cb1e1211SMatthew G Knepley   /* Set matrix pattern */
462cb1e1211SMatthew G Knepley   ierr = MatXAIJSetPreallocation(A, bs, dnz, onz, dnzu, onzu);CHKERRQ(ierr);
463cb1e1211SMatthew G Knepley   ierr = MatSetOption(A, MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
464cb1e1211SMatthew G Knepley   /* Fill matrix with zeros */
465cb1e1211SMatthew G Knepley   if (fillMatrix) {
466cb1e1211SMatthew G Knepley     PetscScalar *values;
467cb1e1211SMatthew G Knepley     PetscInt     maxRowLen = 0;
468cb1e1211SMatthew G Knepley 
469cb1e1211SMatthew G Knepley     for (r = rStart; r < rEnd; ++r) {
470cb1e1211SMatthew G Knepley       PetscInt len;
471cb1e1211SMatthew G Knepley 
472cb1e1211SMatthew G Knepley       ierr      = PetscSectionGetDof(sectionAdj, r, &len);CHKERRQ(ierr);
473cb1e1211SMatthew G Knepley       maxRowLen = PetscMax(maxRowLen, len);
474cb1e1211SMatthew G Knepley     }
475cb1e1211SMatthew G Knepley     ierr = PetscMalloc(maxRowLen * sizeof(PetscScalar), &values);CHKERRQ(ierr);
476cb1e1211SMatthew G Knepley     ierr = PetscMemzero(values, maxRowLen * sizeof(PetscScalar));CHKERRQ(ierr);
477cb1e1211SMatthew G Knepley     for (r = rStart; r < rEnd; ++r) {
478cb1e1211SMatthew G Knepley       PetscInt numCols, cStart;
479cb1e1211SMatthew G Knepley 
480cb1e1211SMatthew G Knepley       ierr = PetscSectionGetDof(sectionAdj, r, &numCols);CHKERRQ(ierr);
481cb1e1211SMatthew G Knepley       ierr = PetscSectionGetOffset(sectionAdj, r, &cStart);CHKERRQ(ierr);
482cb1e1211SMatthew G Knepley       ierr = MatSetValues(A, 1, &r, numCols, &cols[cStart], values, INSERT_VALUES);CHKERRQ(ierr);
483cb1e1211SMatthew G Knepley     }
484cb1e1211SMatthew G Knepley     ierr = PetscFree(values);CHKERRQ(ierr);
485cb1e1211SMatthew G Knepley     ierr = MatAssemblyBegin(A, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
486cb1e1211SMatthew G Knepley     ierr = MatAssemblyEnd(A, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
487cb1e1211SMatthew G Knepley   }
488cb1e1211SMatthew G Knepley   ierr = PetscSectionDestroy(&sectionAdj);CHKERRQ(ierr);
489cb1e1211SMatthew G Knepley   ierr = PetscFree(cols);CHKERRQ(ierr);
490cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
491cb1e1211SMatthew G Knepley }
492cb1e1211SMatthew G Knepley 
493cb1e1211SMatthew G Knepley #if 0
494cb1e1211SMatthew G Knepley #undef __FUNCT__
495cb1e1211SMatthew G Knepley #define __FUNCT__ "DMPlexPreallocateOperator_2"
496cb1e1211SMatthew G Knepley PetscErrorCode DMPlexPreallocateOperator_2(DM dm, PetscInt bs, PetscSection section, PetscSection sectionGlobal, PetscInt dnz[], PetscInt onz[], PetscInt dnzu[], PetscInt onzu[], Mat A, PetscBool fillMatrix)
497cb1e1211SMatthew G Knepley {
498cb1e1211SMatthew G Knepley   PetscInt       *tmpClosure,*tmpAdj,*visits;
499cb1e1211SMatthew G Knepley   PetscInt        c,cStart,cEnd,pStart,pEnd;
500cb1e1211SMatthew G Knepley   PetscErrorCode  ierr;
501cb1e1211SMatthew G Knepley 
502cb1e1211SMatthew G Knepley   PetscFunctionBegin;
503cb1e1211SMatthew G Knepley   ierr = DMPlexGetDimension(dm, &dim);CHKERRQ(ierr);
504cb1e1211SMatthew G Knepley   ierr = DMPlexGetDepth(dm, &depth);CHKERRQ(ierr);
505cb1e1211SMatthew G Knepley   ierr = DMPlexGetMaxSizes(dm, &maxConeSize, &maxSupportSize);CHKERRQ(ierr);
506cb1e1211SMatthew G Knepley 
507*e7b80042SMatthew G. Knepley   maxClosureSize = 2*PetscMax(PetscPowInt(mesh->maxConeSize,depth+1),PetscPowInt(mesh->maxSupportSize,depth+1));
508cb1e1211SMatthew G Knepley 
509cb1e1211SMatthew G Knepley   ierr    = PetscSectionGetChart(section, &pStart, &pEnd);CHKERRQ(ierr);
510cb1e1211SMatthew G Knepley   npoints = pEnd - pStart;
511cb1e1211SMatthew G Knepley 
512cb1e1211SMatthew G Knepley   ierr = PetscMalloc3(maxClosureSize,PetscInt,&tmpClosure,npoints,PetscInt,&lvisits,npoints,PetscInt,&visits);CHKERRQ(ierr);
513cb1e1211SMatthew G Knepley   ierr = PetscMemzero(lvisits,(pEnd-pStart)*sizeof(PetscInt));CHKERRQ(ierr);
514cb1e1211SMatthew G Knepley   ierr = PetscMemzero(visits,(pEnd-pStart)*sizeof(PetscInt));CHKERRQ(ierr);
515cb1e1211SMatthew G Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
516cb1e1211SMatthew G Knepley   for (c=cStart; c<cEnd; c++) {
517cb1e1211SMatthew G Knepley     PetscInt *support = tmpClosure;
518cb1e1211SMatthew G Knepley     ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_FALSE, &supportSize, (PetscInt**)&support);CHKERRQ(ierr);
519cb1e1211SMatthew G Knepley     for (p=0; p<supportSize; p++) lvisits[support[p]]++;
520cb1e1211SMatthew G Knepley   }
521cb1e1211SMatthew G Knepley   ierr = PetscSFReduceBegin(sf,MPIU_INT,lvisits,visits,MPI_SUM);CHKERRQ(ierr);
522cb1e1211SMatthew G Knepley   ierr = PetscSFReduceEnd  (sf,MPIU_INT,lvisits,visits,MPI_SUM);CHKERRQ(ierr);
523cb1e1211SMatthew G Knepley   ierr = PetscSFBcastBegin(sf,MPIU_INT,visits,lvisits);CHKERRQ(ierr);
524cb1e1211SMatthew G Knepley   ierr = PetscSFBcastEnd  (sf,MPIU_INT,visits,lvisits);CHKERRQ(ierr);
525cb1e1211SMatthew G Knepley 
526cb1e1211SMatthew G Knepley   ierr = PetscSFGetRanks();CHKERRQ(ierr);
527cb1e1211SMatthew G Knepley 
528cb1e1211SMatthew G Knepley 
529cb1e1211SMatthew G Knepley   ierr = PetscMalloc2(maxClosureSize*maxClosureSize,PetscInt,&cellmat,npoints,PetscInt,&owner);CHKERRQ(ierr);
530cb1e1211SMatthew G Knepley   for (c=cStart; c<cEnd; c++) {
531cb1e1211SMatthew G Knepley     ierr = PetscMemzero(cellmat,maxClosureSize*maxClosureSize*sizeof(PetscInt));CHKERRQ(ierr);
532cb1e1211SMatthew G Knepley     /*
533cb1e1211SMatthew G Knepley      Depth-first walk of transitive closure.
534cb1e1211SMatthew G Knepley      At each leaf frame f of transitive closure that we see, add 1/visits[f] to each pair (p,q) not marked as done in cellmat.
535cb1e1211SMatthew G Knepley      This contribution is added to dnz if owning ranks of p and q match, to onz otherwise.
536cb1e1211SMatthew G Knepley      */
537cb1e1211SMatthew G Knepley   }
538cb1e1211SMatthew G Knepley 
539cb1e1211SMatthew G Knepley   ierr = PetscSFReduceBegin(sf,MPIU_INT,ldnz,dnz,MPI_SUM);CHKERRQ(ierr);
540cb1e1211SMatthew G Knepley   ierr = PetscSFReduceEnd  (sf,MPIU_INT,lonz,onz,MPI_SUM);CHKERRQ(ierr);
541cb1e1211SMatthew G Knepley   PetscFunctionReturn(0);
542cb1e1211SMatthew G Knepley }
543cb1e1211SMatthew G Knepley #endif
544