xref: /petsc/src/dm/interface/dmi.c (revision 58b7e2c12831107add2e7d2083637d9d213c57af)
1af0996ceSBarry Smith #include <petsc/private/dmimpl.h> /*I      "petscdm.h"     I*/
22764a2aaSMatthew G. Knepley #include <petscds.h>
311689aebSJed Brown 
45b8243e1SJed Brown // Greatest common divisor of two nonnegative integers
5d71ae5a4SJacob Faibussowitsch PetscInt PetscGCD(PetscInt a, PetscInt b)
6d71ae5a4SJacob Faibussowitsch {
75b8243e1SJed Brown   while (b != 0) {
85b8243e1SJed Brown     PetscInt tmp = b;
95b8243e1SJed Brown     b            = a % b;
105b8243e1SJed Brown     a            = tmp;
115b8243e1SJed Brown   }
125b8243e1SJed Brown   return a;
135b8243e1SJed Brown }
145b8243e1SJed Brown 
15d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateGlobalVector_Section_Private(DM dm, Vec *vec)
16d71ae5a4SJacob Faibussowitsch {
1711689aebSJed Brown   PetscSection gSection;
18cc30b04dSMatthew G Knepley   PetscInt     localSize, bs, blockSize = -1, pStart, pEnd, p;
195d1c0279SHong Zhang   PetscInt     in[2], out[2];
2011689aebSJed Brown 
2111689aebSJed Brown   PetscFunctionBegin;
229566063dSJacob Faibussowitsch   PetscCall(DMGetGlobalSection(dm, &gSection));
239566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetChart(gSection, &pStart, &pEnd));
2411689aebSJed Brown   for (p = pStart; p < pEnd; ++p) {
2511689aebSJed Brown     PetscInt dof, cdof;
2611689aebSJed Brown 
279566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetDof(gSection, p, &dof));
289566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetConstraintDof(gSection, p, &cdof));
290680ce0aSHong Zhang 
305b8243e1SJed Brown     if (dof - cdof > 0) {
315b8243e1SJed Brown       if (blockSize < 0) {
320680ce0aSHong Zhang         /* set blockSize */
330680ce0aSHong Zhang         blockSize = dof - cdof;
345b8243e1SJed Brown       } else {
355b8243e1SJed Brown         blockSize = PetscGCD(dof - cdof, blockSize);
3611689aebSJed Brown       }
3711689aebSJed Brown     }
380680ce0aSHong Zhang   }
395d1c0279SHong Zhang 
401690c2aeSBarry Smith   // You cannot negate PETSC_INT_MIN
411690c2aeSBarry Smith   in[0] = blockSize < 0 ? -PETSC_INT_MAX : -blockSize;
425d1c0279SHong Zhang   in[1] = blockSize;
43462c564dSBarry Smith   PetscCallMPI(MPIU_Allreduce(in, out, 2, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)dm)));
445d1c0279SHong Zhang   /* -out[0] = min(blockSize), out[1] = max(blockSize) */
455d1c0279SHong Zhang   if (-out[0] == out[1]) {
465d1c0279SHong Zhang     bs = out[1];
475d1c0279SHong Zhang   } else bs = 1;
485d1c0279SHong Zhang 
495d1c0279SHong Zhang   if (bs < 0) { /* Everyone was empty */
505d1c0279SHong Zhang     blockSize = 1;
515d1c0279SHong Zhang     bs        = 1;
525d1c0279SHong Zhang   }
535d1c0279SHong Zhang 
549566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetConstrainedStorageSize(gSection, &localSize));
557a8be351SBarry Smith   PetscCheck(localSize % blockSize == 0, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Mismatch between blocksize %" PetscInt_FMT " and local storage size %" PetscInt_FMT, blockSize, localSize);
569566063dSJacob Faibussowitsch   PetscCall(VecCreate(PetscObjectComm((PetscObject)dm), vec));
579566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(*vec, localSize, PETSC_DETERMINE));
589566063dSJacob Faibussowitsch   PetscCall(VecSetBlockSize(*vec, bs));
599566063dSJacob Faibussowitsch   PetscCall(VecSetType(*vec, dm->vectype));
609566063dSJacob Faibussowitsch   PetscCall(VecSetDM(*vec, dm));
619566063dSJacob Faibussowitsch   /* PetscCall(VecSetLocalToGlobalMapping(*vec, dm->ltogmap)); */
623ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
6311689aebSJed Brown }
6411689aebSJed Brown 
65d71ae5a4SJacob Faibussowitsch PetscErrorCode DMCreateLocalVector_Section_Private(DM dm, Vec *vec)
66d71ae5a4SJacob Faibussowitsch {
67fad22124SMatthew G Knepley   PetscSection section;
6811689aebSJed Brown   PetscInt     localSize, blockSize = -1, pStart, pEnd, p;
6911689aebSJed Brown 
7011689aebSJed Brown   PetscFunctionBegin;
719566063dSJacob Faibussowitsch   PetscCall(DMGetLocalSection(dm, &section));
729566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetChart(section, &pStart, &pEnd));
7311689aebSJed Brown   for (p = pStart; p < pEnd; ++p) {
7411689aebSJed Brown     PetscInt dof;
7511689aebSJed Brown 
769566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetDof(section, p, &dof));
7711689aebSJed Brown     if ((blockSize < 0) && (dof > 0)) blockSize = dof;
785b8243e1SJed Brown     if (dof > 0) blockSize = PetscGCD(dof, blockSize);
7911689aebSJed Brown   }
809566063dSJacob Faibussowitsch   PetscCall(PetscSectionGetStorageSize(section, &localSize));
819566063dSJacob Faibussowitsch   PetscCall(VecCreate(PETSC_COMM_SELF, vec));
829566063dSJacob Faibussowitsch   PetscCall(VecSetSizes(*vec, localSize, localSize));
83*58b7e2c1SStefano Zampini   PetscCall(VecSetBlockSize(*vec, PetscAbs(blockSize)));
849566063dSJacob Faibussowitsch   PetscCall(VecSetType(*vec, dm->vectype));
859566063dSJacob Faibussowitsch   PetscCall(VecSetDM(*vec, dm));
863ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
8711689aebSJed Brown }
884d9407bcSMatthew G. Knepley 
89dd072f5fSMatthew G. Knepley static PetscErrorCode PetscSectionSelectFields_Private(PetscSection s, PetscSection gs, PetscInt numFields, const PetscInt fields[], const PetscInt numComps[], const PetscInt comps[], IS *is)
90d71ae5a4SJacob Faibussowitsch {
914d9407bcSMatthew G. Knepley   PetscInt *subIndices;
92a5e5a98fSStefano Zampini   PetscInt  mbs, bs = 0, bsLocal[2], bsMinMax[2];
93dd072f5fSMatthew G. Knepley   PetscInt  pStart, pEnd, Nc, subSize = 0, subOff = 0;
944d9407bcSMatthew G. Knepley 
954d9407bcSMatthew G. Knepley   PetscFunctionBegin;
969e47a1b0SMatthew G. Knepley   PetscCall(PetscSectionGetChart(gs, &pStart, &pEnd));
97dd072f5fSMatthew G. Knepley   if (numComps) {
98dd072f5fSMatthew G. Knepley     for (PetscInt f = 0, off = 0; f < numFields; ++f) {
993a544194SStefano Zampini       PetscInt Nc;
1003a544194SStefano Zampini 
101dd072f5fSMatthew G. Knepley       if (numComps[f] < 0) continue;
102dd072f5fSMatthew G. Knepley       PetscCall(PetscSectionGetFieldComponents(s, f, &Nc));
103dd072f5fSMatthew G. Knepley       PetscCheck(numComps[f] <= Nc, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field %" PetscInt_FMT ": Number of selected components %" PetscInt_FMT " > %" PetscInt_FMT " number of field components", f, numComps[f], Nc);
104dd072f5fSMatthew G. Knepley       for (PetscInt c = 0; c < numComps[f]; ++c, ++off) PetscCheck(comps[off] < Nc, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Field %" PetscInt_FMT ": component %" PetscInt_FMT " not in [0, %" PetscInt_FMT ")", f, comps[off], Nc);
105dd072f5fSMatthew G. Knepley       bs += numComps[f];
1069e47a1b0SMatthew G. Knepley     }
107dd072f5fSMatthew G. Knepley   } else {
1089e47a1b0SMatthew G. Knepley     for (PetscInt f = 0; f < numFields; ++f) {
1099e47a1b0SMatthew G. Knepley       PetscInt Nc;
1109e47a1b0SMatthew G. Knepley 
1119e47a1b0SMatthew G. Knepley       PetscCall(PetscSectionGetFieldComponents(s, fields[f], &Nc));
1123a544194SStefano Zampini       bs += Nc;
1133a544194SStefano Zampini     }
114dd072f5fSMatthew G. Knepley   }
115a5e5a98fSStefano Zampini   mbs = -1; /* multiple of block size not set */
1169e47a1b0SMatthew G. Knepley   for (PetscInt p = pStart; p < pEnd; ++p) {
117b9eca265Ssarens     PetscInt gdof, pSubSize = 0;
1184d9407bcSMatthew G. Knepley 
1199e47a1b0SMatthew G. Knepley     PetscCall(PetscSectionGetDof(gs, p, &gdof));
1204d9407bcSMatthew G. Knepley     if (gdof > 0) {
121dd072f5fSMatthew G. Knepley       PetscInt off = 0;
1224d9407bcSMatthew G. Knepley 
123dd072f5fSMatthew G. Knepley       for (PetscInt f = 0; f < numFields; ++f) {
124dd072f5fSMatthew G. Knepley         PetscInt fdof, fcdof, sfdof, sfcdof = 0;
125dd072f5fSMatthew G. Knepley 
126dd072f5fSMatthew G. Knepley         PetscCall(PetscSectionGetFieldComponents(s, f, &Nc));
1279e47a1b0SMatthew G. Knepley         PetscCall(PetscSectionGetFieldDof(s, p, fields[f], &fdof));
1289e47a1b0SMatthew G. Knepley         PetscCall(PetscSectionGetFieldConstraintDof(s, p, fields[f], &fcdof));
129dd072f5fSMatthew G. Knepley         if (numComps && numComps[f] >= 0) {
130dd072f5fSMatthew G. Knepley           const PetscInt *ind;
131dd072f5fSMatthew G. Knepley 
132dd072f5fSMatthew G. Knepley           // Assume sets of dofs on points are of size Nc
133dd072f5fSMatthew G. Knepley           PetscCheck(!(fdof % Nc), PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "Number of components %" PetscInt_FMT " should evenly divide the dofs %" PetscInt_FMT " on point %" PetscInt_FMT, Nc, fdof, p);
134dd072f5fSMatthew G. Knepley           sfdof = (fdof / Nc) * numComps[f];
135dd072f5fSMatthew G. Knepley           PetscCall(PetscSectionGetFieldConstraintIndices(s, p, fields[f], &ind));
136dd072f5fSMatthew G. Knepley           for (PetscInt i = 0; i < (fdof / Nc); ++i) {
137dd072f5fSMatthew G. Knepley             for (PetscInt c = 0, fcc = 0; c < Nc; ++c) {
138dd072f5fSMatthew G. Knepley               if (c == comps[off + fcc]) {
139dd072f5fSMatthew G. Knepley                 ++fcc;
140dd072f5fSMatthew G. Knepley                 ++sfcdof;
141dd072f5fSMatthew G. Knepley               }
142dd072f5fSMatthew G. Knepley             }
143dd072f5fSMatthew G. Knepley           }
144dd072f5fSMatthew G. Knepley           pSubSize += sfdof - sfcdof;
145dd072f5fSMatthew G. Knepley           off += numComps[f];
146dd072f5fSMatthew G. Knepley         } else {
147b9eca265Ssarens           pSubSize += fdof - fcdof;
148b9eca265Ssarens         }
149dd072f5fSMatthew G. Knepley       }
150b9eca265Ssarens       subSize += pSubSize;
151a5e5a98fSStefano Zampini       if (pSubSize && pSubSize % bs) {
152a5e5a98fSStefano Zampini         // Layout does not admit a pointwise block size -> set mbs to 0
153a5e5a98fSStefano Zampini         mbs = 0;
154a5e5a98fSStefano Zampini       } else if (pSubSize) {
155a5e5a98fSStefano Zampini         if (mbs == -1) mbs = pSubSize / bs;
156a5e5a98fSStefano Zampini         else mbs = PetscMin(mbs, pSubSize / bs);
1574d9407bcSMatthew G. Knepley       }
1584d9407bcSMatthew G. Knepley     }
1594d9407bcSMatthew G. Knepley   }
160a5e5a98fSStefano Zampini 
1619e47a1b0SMatthew G. Knepley   // Must have same blocksize on all procs (some might have no points)
162a5e5a98fSStefano Zampini   bsLocal[0] = mbs < 0 ? PETSC_INT_MAX : mbs;
163a5e5a98fSStefano Zampini   bsLocal[1] = mbs;
1649e47a1b0SMatthew G. Knepley   PetscCall(PetscGlobalMinMaxInt(PetscObjectComm((PetscObject)gs), bsLocal, bsMinMax));
165a5e5a98fSStefano Zampini   if (bsMinMax[0] != bsMinMax[1]) { /* different multiple of block size -> set bs to 1 */
1669371c9d4SSatish Balay     bs = 1;
167a5e5a98fSStefano Zampini   } else { /* same multiple */
168a5e5a98fSStefano Zampini     mbs = bsMinMax[0];
169a5e5a98fSStefano Zampini     bs *= mbs;
1709371c9d4SSatish Balay   }
1719566063dSJacob Faibussowitsch   PetscCall(PetscMalloc1(subSize, &subIndices));
1729e47a1b0SMatthew G. Knepley   for (PetscInt p = pStart; p < pEnd; ++p) {
1734d9407bcSMatthew G. Knepley     PetscInt gdof, goff;
1744d9407bcSMatthew G. Knepley 
1759e47a1b0SMatthew G. Knepley     PetscCall(PetscSectionGetDof(gs, p, &gdof));
1764d9407bcSMatthew G. Knepley     if (gdof > 0) {
177dd072f5fSMatthew G. Knepley       PetscInt off = 0;
178dd072f5fSMatthew G. Knepley 
1799e47a1b0SMatthew G. Knepley       PetscCall(PetscSectionGetOffset(gs, p, &goff));
1809e47a1b0SMatthew G. Knepley       for (PetscInt f = 0; f < numFields; ++f) {
1819e47a1b0SMatthew G. Knepley         PetscInt fdof, fcdof, poff = 0;
1824d9407bcSMatthew G. Knepley 
1834d9407bcSMatthew G. Knepley         /* Can get rid of this loop by storing field information in the global section */
1849e47a1b0SMatthew G. Knepley         for (PetscInt f2 = 0; f2 < fields[f]; ++f2) {
1859e47a1b0SMatthew G. Knepley           PetscCall(PetscSectionGetFieldDof(s, p, f2, &fdof));
1869e47a1b0SMatthew G. Knepley           PetscCall(PetscSectionGetFieldConstraintDof(s, p, f2, &fcdof));
1874d9407bcSMatthew G. Knepley           poff += fdof - fcdof;
1884d9407bcSMatthew G. Knepley         }
1899e47a1b0SMatthew G. Knepley         PetscCall(PetscSectionGetFieldDof(s, p, fields[f], &fdof));
1909e47a1b0SMatthew G. Knepley         PetscCall(PetscSectionGetFieldConstraintDof(s, p, fields[f], &fcdof));
191dd072f5fSMatthew G. Knepley 
192dd072f5fSMatthew G. Knepley         if (numComps && numComps[f] >= 0) {
193dd072f5fSMatthew G. Knepley           const PetscInt *ind;
194dd072f5fSMatthew G. Knepley 
195dd072f5fSMatthew G. Knepley           // Assume sets of dofs on points are of size Nc
196dd072f5fSMatthew G. Knepley           PetscCall(PetscSectionGetFieldConstraintIndices(s, p, fields[f], &ind));
197dd072f5fSMatthew G. Knepley           for (PetscInt i = 0, fcoff = 0, pfoff = 0; i < (fdof / Nc); ++i) {
198dd072f5fSMatthew G. Knepley             for (PetscInt c = 0, fcc = 0; c < Nc; ++c) {
199dd072f5fSMatthew G. Knepley               const PetscInt k = i * Nc + c;
200dd072f5fSMatthew G. Knepley 
201dd072f5fSMatthew G. Knepley               if (ind[fcoff] == k) {
202dd072f5fSMatthew G. Knepley                 ++fcoff;
203dd072f5fSMatthew G. Knepley                 continue;
204dd072f5fSMatthew G. Knepley               }
205dd072f5fSMatthew G. Knepley               if (c == comps[off + fcc]) {
206dd072f5fSMatthew G. Knepley                 ++fcc;
207dd072f5fSMatthew G. Knepley                 subIndices[subOff++] = goff + poff + pfoff;
208dd072f5fSMatthew G. Knepley               }
209dd072f5fSMatthew G. Knepley               ++pfoff;
210dd072f5fSMatthew G. Knepley             }
211dd072f5fSMatthew G. Knepley           }
212dd072f5fSMatthew G. Knepley           off += numComps[f];
213dd072f5fSMatthew G. Knepley         } else {
2149e47a1b0SMatthew G. Knepley           for (PetscInt fc = 0; fc < fdof - fcdof; ++fc, ++subOff) subIndices[subOff] = goff + poff + fc;
2154d9407bcSMatthew G. Knepley         }
2164d9407bcSMatthew G. Knepley       }
2174d9407bcSMatthew G. Knepley     }
218dd072f5fSMatthew G. Knepley   }
2199e47a1b0SMatthew G. Knepley   PetscCheck(subSize == subOff, PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "The offset array size %" PetscInt_FMT " != %" PetscInt_FMT " the number of indices", subSize, subOff);
2209e47a1b0SMatthew G. Knepley   PetscCall(ISCreateGeneral(PetscObjectComm((PetscObject)gs), subSize, subIndices, PETSC_OWN_POINTER, is));
221627349f5SMatthew G. Knepley   if (bs > 1) {
2229e47a1b0SMatthew G. Knepley     // We need to check that the block size does not come from non-contiguous fields
2239e47a1b0SMatthew G. Knepley     PetscInt set = 1, rset = 1;
2249e47a1b0SMatthew G. Knepley     for (PetscInt i = 0; i < subSize; i += bs) {
2259e47a1b0SMatthew G. Knepley       for (PetscInt j = 0; j < bs; ++j) {
2269371c9d4SSatish Balay         if (subIndices[i + j] != subIndices[i] + j) {
2279371c9d4SSatish Balay           set = 0;
2289371c9d4SSatish Balay           break;
2299371c9d4SSatish Balay         }
230627349f5SMatthew G. Knepley       }
231627349f5SMatthew G. Knepley     }
232462c564dSBarry Smith     PetscCallMPI(MPIU_Allreduce(&set, &rset, 1, MPIU_INT, MPI_PROD, PetscObjectComm((PetscObject)gs)));
23388206212SAlexis Marboeuf     if (rset) PetscCall(ISSetBlockSize(*is, bs));
234627349f5SMatthew G. Knepley   }
2359e47a1b0SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
2364d9407bcSMatthew G. Knepley }
2379e47a1b0SMatthew G. Knepley 
238dd072f5fSMatthew G. Knepley static PetscErrorCode DMSelectFields_Private(DM dm, PetscSection section, PetscInt numFields, const PetscInt fields[], const PetscInt numComps[], const PetscInt comps[], IS *is, DM *subdm)
2399e47a1b0SMatthew G. Knepley {
2404d9407bcSMatthew G. Knepley   PetscSection subsection;
2414d9407bcSMatthew G. Knepley   PetscBool    haveNull = PETSC_FALSE;
2429e47a1b0SMatthew G. Knepley   PetscInt     nf = 0, of = 0;
2434d9407bcSMatthew G. Knepley 
2449e47a1b0SMatthew G. Knepley   PetscFunctionBegin;
245dd072f5fSMatthew G. Knepley   if (numComps) {
246dd072f5fSMatthew G. Knepley     const PetscInt field = fields[0];
247dd072f5fSMatthew G. Knepley 
248dd072f5fSMatthew G. Knepley     PetscCheck(numFields == 1, PETSC_COMM_SELF, PETSC_ERR_SUP, "We only support a single field for component selection right now");
249dd072f5fSMatthew G. Knepley     PetscCall(PetscSectionCreateComponentSubsection(section, numComps[field], comps, &subsection));
2509566063dSJacob Faibussowitsch     PetscCall(DMSetLocalSection(*subdm, subsection));
2519566063dSJacob Faibussowitsch     PetscCall(PetscSectionDestroy(&subsection));
252dd072f5fSMatthew G. Knepley     (*subdm)->nullspaceConstructors[field] = dm->nullspaceConstructors[field];
253e5e52638SMatthew G. Knepley     if (dm->probs) {
2549e47a1b0SMatthew G. Knepley       PetscFV  fv, fvNew;
255dd072f5fSMatthew G. Knepley       PetscInt fnum[1] = {field};
2560f21e855SMatthew G. Knepley 
2579e47a1b0SMatthew G. Knepley       PetscCall(DMSetNumFields(*subdm, 1));
258dd072f5fSMatthew G. Knepley       PetscCall(DMGetField(dm, field, NULL, (PetscObject *)&fv));
2599e47a1b0SMatthew G. Knepley       PetscCall(PetscFVClone(fv, &fvNew));
260dd072f5fSMatthew G. Knepley       PetscCall(PetscFVSetNumComponents(fvNew, numComps[0]));
2619e47a1b0SMatthew G. Knepley       PetscCall(DMSetField(*subdm, 0, NULL, (PetscObject)fvNew));
2629e47a1b0SMatthew G. Knepley       PetscCall(PetscFVDestroy(&fvNew));
2639566063dSJacob Faibussowitsch       PetscCall(DMCreateDS(*subdm));
264dd072f5fSMatthew G. Knepley       if (numComps[0] == 1 && is) {
2650f21e855SMatthew G. Knepley         PetscObject disc, space, pmat;
2664d9407bcSMatthew G. Knepley 
267dd072f5fSMatthew G. Knepley         PetscCall(DMGetField(*subdm, field, NULL, &disc));
2689566063dSJacob Faibussowitsch         PetscCall(PetscObjectQuery(disc, "nullspace", &space));
2699566063dSJacob Faibussowitsch         if (space) PetscCall(PetscObjectCompose((PetscObject)*is, "nullspace", space));
2709566063dSJacob Faibussowitsch         PetscCall(PetscObjectQuery(disc, "nearnullspace", &space));
2719566063dSJacob Faibussowitsch         if (space) PetscCall(PetscObjectCompose((PetscObject)*is, "nearnullspace", space));
2729566063dSJacob Faibussowitsch         PetscCall(PetscObjectQuery(disc, "pmat", &pmat));
2739566063dSJacob Faibussowitsch         if (pmat) PetscCall(PetscObjectCompose((PetscObject)*is, "pmat", pmat));
2744d9407bcSMatthew G. Knepley       }
275dd072f5fSMatthew G. Knepley       PetscCall(PetscDSCopyConstants(dm->probs[field].ds, (*subdm)->probs[0].ds));
276dd072f5fSMatthew G. Knepley       PetscCall(PetscDSCopyBoundary(dm->probs[field].ds, 1, fnum, (*subdm)->probs[0].ds));
277dd072f5fSMatthew G. Knepley       PetscCall(PetscDSSelectEquations(dm->probs[field].ds, 1, fnum, (*subdm)->probs[0].ds));
2789e47a1b0SMatthew G. Knepley     }
2799e47a1b0SMatthew G. Knepley     if ((*subdm)->nullspaceConstructors[0] && is) {
2809e47a1b0SMatthew G. Knepley       MatNullSpace nullSpace;
2819e47a1b0SMatthew G. Knepley 
2829e47a1b0SMatthew G. Knepley       PetscCall((*(*subdm)->nullspaceConstructors[0])(*subdm, 0, 0, &nullSpace));
2839e47a1b0SMatthew G. Knepley       PetscCall(PetscObjectCompose((PetscObject)*is, "nullspace", (PetscObject)nullSpace));
2849e47a1b0SMatthew G. Knepley       PetscCall(MatNullSpaceDestroy(&nullSpace));
2859e47a1b0SMatthew G. Knepley     }
2869e47a1b0SMatthew G. Knepley     if (dm->coarseMesh) PetscCall(DMCreateSubDM(dm->coarseMesh, numFields, fields, NULL, &(*subdm)->coarseMesh));
2879e47a1b0SMatthew G. Knepley     PetscFunctionReturn(PETSC_SUCCESS);
2889e47a1b0SMatthew G. Knepley   }
2899e47a1b0SMatthew G. Knepley   PetscCall(PetscSectionCreateSubsection(section, numFields, fields, &subsection));
2909e47a1b0SMatthew G. Knepley   PetscCall(DMSetLocalSection(*subdm, subsection));
2919e47a1b0SMatthew G. Knepley   PetscCall(PetscSectionDestroy(&subsection));
2929e47a1b0SMatthew G. Knepley   for (PetscInt f = 0; f < numFields; ++f) {
2939e47a1b0SMatthew G. Knepley     (*subdm)->nullspaceConstructors[f] = dm->nullspaceConstructors[fields[f]];
2949e47a1b0SMatthew G. Knepley     if ((*subdm)->nullspaceConstructors[f]) {
2959e47a1b0SMatthew G. Knepley       haveNull = PETSC_TRUE;
2969e47a1b0SMatthew G. Knepley       nf       = f;
2979e47a1b0SMatthew G. Knepley       of       = fields[f];
2989e47a1b0SMatthew G. Knepley     }
2999e47a1b0SMatthew G. Knepley   }
3009e47a1b0SMatthew G. Knepley   if (dm->probs) {
3019e47a1b0SMatthew G. Knepley     PetscCall(DMSetNumFields(*subdm, numFields));
3029e47a1b0SMatthew G. Knepley     for (PetscInt f = 0; f < numFields; ++f) {
3039e47a1b0SMatthew G. Knepley       PetscObject disc;
3049e47a1b0SMatthew G. Knepley 
3059e47a1b0SMatthew G. Knepley       PetscCall(DMGetField(dm, fields[f], NULL, &disc));
3069e47a1b0SMatthew G. Knepley       PetscCall(DMSetField(*subdm, f, NULL, disc));
3079e47a1b0SMatthew G. Knepley     }
3089e47a1b0SMatthew G. Knepley     // TODO: if only FV, then cut down the components
3099e47a1b0SMatthew G. Knepley     PetscCall(DMCreateDS(*subdm));
3109e47a1b0SMatthew G. Knepley     if (numFields == 1 && is) {
3119e47a1b0SMatthew G. Knepley       PetscObject disc, space, pmat;
3129e47a1b0SMatthew G. Knepley 
3139e47a1b0SMatthew G. Knepley       PetscCall(DMGetField(*subdm, 0, NULL, &disc));
3149e47a1b0SMatthew G. Knepley       PetscCall(PetscObjectQuery(disc, "nullspace", &space));
3159e47a1b0SMatthew G. Knepley       if (space) PetscCall(PetscObjectCompose((PetscObject)*is, "nullspace", space));
3169e47a1b0SMatthew G. Knepley       PetscCall(PetscObjectQuery(disc, "nearnullspace", &space));
3179e47a1b0SMatthew G. Knepley       if (space) PetscCall(PetscObjectCompose((PetscObject)*is, "nearnullspace", space));
3189e47a1b0SMatthew G. Knepley       PetscCall(PetscObjectQuery(disc, "pmat", &pmat));
3199e47a1b0SMatthew G. Knepley       if (pmat) PetscCall(PetscObjectCompose((PetscObject)*is, "pmat", pmat));
3209e47a1b0SMatthew G. Knepley     }
3219e47a1b0SMatthew G. Knepley     // Check if DSes record their DM fields
322e21d936aSMatthew G. Knepley     if (dm->probs[0].fields) {
3239310035eSMatthew G. Knepley       PetscInt d, e;
3249310035eSMatthew G. Knepley 
3259310035eSMatthew G. Knepley       for (d = 0, e = 0; d < dm->Nds && e < (*subdm)->Nds; ++d) {
3269310035eSMatthew G. Knepley         const PetscInt  Nf = dm->probs[d].ds->Nf;
3279310035eSMatthew G. Knepley         const PetscInt *fld;
3289310035eSMatthew G. Knepley         PetscInt        f, g;
3299310035eSMatthew G. Knepley 
3309566063dSJacob Faibussowitsch         PetscCall(ISGetIndices(dm->probs[d].fields, &fld));
3319310035eSMatthew G. Knepley         for (f = 0; f < Nf; ++f) {
3329371c9d4SSatish Balay           for (g = 0; g < numFields; ++g)
3339371c9d4SSatish Balay             if (fld[f] == fields[g]) break;
3349310035eSMatthew G. Knepley           if (g < numFields) break;
3359310035eSMatthew G. Knepley         }
3369566063dSJacob Faibussowitsch         PetscCall(ISRestoreIndices(dm->probs[d].fields, &fld));
3379310035eSMatthew G. Knepley         if (f == Nf) continue;
3389566063dSJacob Faibussowitsch         PetscCall(PetscDSCopyConstants(dm->probs[d].ds, (*subdm)->probs[e].ds));
3399566063dSJacob Faibussowitsch         PetscCall(PetscDSCopyBoundary(dm->probs[d].ds, numFields, fields, (*subdm)->probs[e].ds));
3409e47a1b0SMatthew G. Knepley         // Translate DM fields to DS fields
3419310035eSMatthew G. Knepley         {
342e21d936aSMatthew G. Knepley           IS              infields, dsfields;
34374a61aaaSMatthew G. Knepley           const PetscInt *fld, *ofld;
34474a61aaaSMatthew G. Knepley           PetscInt       *fidx;
3459e47a1b0SMatthew G. Knepley           PetscInt        onf, nf;
346e21d936aSMatthew G. Knepley 
3479566063dSJacob Faibussowitsch           PetscCall(ISCreateGeneral(PETSC_COMM_SELF, numFields, fields, PETSC_USE_POINTER, &infields));
3489566063dSJacob Faibussowitsch           PetscCall(ISIntersect(infields, dm->probs[d].fields, &dsfields));
3499566063dSJacob Faibussowitsch           PetscCall(ISDestroy(&infields));
3509566063dSJacob Faibussowitsch           PetscCall(ISGetLocalSize(dsfields, &nf));
3517a8be351SBarry Smith           PetscCheck(nf, PETSC_COMM_SELF, PETSC_ERR_PLIB, "DS cannot be supported on 0 fields");
3529566063dSJacob Faibussowitsch           PetscCall(ISGetIndices(dsfields, &fld));
3539566063dSJacob Faibussowitsch           PetscCall(ISGetLocalSize(dm->probs[d].fields, &onf));
3549566063dSJacob Faibussowitsch           PetscCall(ISGetIndices(dm->probs[d].fields, &ofld));
3559566063dSJacob Faibussowitsch           PetscCall(PetscMalloc1(nf, &fidx));
3569e47a1b0SMatthew G. Knepley           for (PetscInt f = 0, g = 0; f < onf && g < nf; ++f) {
35774a61aaaSMatthew G. Knepley             if (ofld[f] == fld[g]) fidx[g++] = f;
35874a61aaaSMatthew G. Knepley           }
3599566063dSJacob Faibussowitsch           PetscCall(ISRestoreIndices(dm->probs[d].fields, &ofld));
3609566063dSJacob Faibussowitsch           PetscCall(ISRestoreIndices(dsfields, &fld));
3619566063dSJacob Faibussowitsch           PetscCall(ISDestroy(&dsfields));
362bb4b53efSMatthew G. Knepley           PetscCall(PetscDSSelectDiscretizations(dm->probs[0].ds, nf, fidx, PETSC_DETERMINE, PETSC_DETERMINE, (*subdm)->probs[0].ds));
3639566063dSJacob Faibussowitsch           PetscCall(PetscDSSelectEquations(dm->probs[0].ds, nf, fidx, (*subdm)->probs[0].ds));
3649566063dSJacob Faibussowitsch           PetscCall(PetscFree(fidx));
3659310035eSMatthew G. Knepley         }
3669310035eSMatthew G. Knepley         ++e;
3679310035eSMatthew G. Knepley       }
368e21d936aSMatthew G. Knepley     } else {
3699566063dSJacob Faibussowitsch       PetscCall(PetscDSCopyConstants(dm->probs[0].ds, (*subdm)->probs[0].ds));
3709566063dSJacob Faibussowitsch       PetscCall(PetscDSCopyBoundary(dm->probs[0].ds, PETSC_DETERMINE, NULL, (*subdm)->probs[0].ds));
371bb4b53efSMatthew G. Knepley       PetscCall(PetscDSSelectDiscretizations(dm->probs[0].ds, numFields, fields, PETSC_DETERMINE, PETSC_DETERMINE, (*subdm)->probs[0].ds));
3729566063dSJacob Faibussowitsch       PetscCall(PetscDSSelectEquations(dm->probs[0].ds, numFields, fields, (*subdm)->probs[0].ds));
373d5af271aSMatthew G. Knepley     }
374e21d936aSMatthew G. Knepley   }
3758cda7954SMatthew G. Knepley   if (haveNull && is) {
3768cda7954SMatthew G. Knepley     MatNullSpace nullSpace;
3778cda7954SMatthew G. Knepley 
3789566063dSJacob Faibussowitsch     PetscCall((*(*subdm)->nullspaceConstructors[nf])(*subdm, of, nf, &nullSpace));
3799566063dSJacob Faibussowitsch     PetscCall(PetscObjectCompose((PetscObject)*is, "nullspace", (PetscObject)nullSpace));
3809566063dSJacob Faibussowitsch     PetscCall(MatNullSpaceDestroy(&nullSpace));
3818cda7954SMatthew G. Knepley   }
38248a46eb9SPierre Jolivet   if (dm->coarseMesh) PetscCall(DMCreateSubDM(dm->coarseMesh, numFields, fields, NULL, &(*subdm)->coarseMesh));
3839e47a1b0SMatthew G. Knepley   PetscFunctionReturn(PETSC_SUCCESS);
3844d9407bcSMatthew G. Knepley }
3859e47a1b0SMatthew G. Knepley 
3865d83a8b1SBarry Smith /*@
3879e47a1b0SMatthew G. Knepley   DMCreateSectionSubDM - Returns an `IS` and `subDM` containing a `PetscSection` that encapsulates a subproblem defined by a subset of the fields in a `PetscSection` in the `DM`.
3889e47a1b0SMatthew G. Knepley 
3899e47a1b0SMatthew G. Knepley   Not Collective
3909e47a1b0SMatthew G. Knepley 
3919e47a1b0SMatthew G. Knepley   Input Parameters:
3929e47a1b0SMatthew G. Knepley + dm        - The `DM` object
3939e47a1b0SMatthew G. Knepley . numFields - The number of fields to incorporate into `subdm`
394dd072f5fSMatthew G. Knepley . fields    - The field numbers of the selected fields
395dd072f5fSMatthew G. Knepley . numComps  - The number of components from each field to incorporate into `subdm`, or PETSC_DECIDE for all components
396dd072f5fSMatthew G. Knepley - comps     - The component numbers of the selected fields (omitted for PTESC_DECIDE fields)
3979e47a1b0SMatthew G. Knepley 
3989e47a1b0SMatthew G. Knepley   Output Parameters:
3999e47a1b0SMatthew G. Knepley + is    - The global indices for the subproblem or `NULL`
4009e47a1b0SMatthew G. Knepley - subdm - The `DM` for the subproblem, which must already have be cloned from `dm` or `NULL`
4019e47a1b0SMatthew G. Knepley 
4029e47a1b0SMatthew G. Knepley   Level: intermediate
4039e47a1b0SMatthew G. Knepley 
4049e47a1b0SMatthew G. Knepley   Notes:
4059e47a1b0SMatthew G. Knepley   If `is` and `subdm` are both `NULL` this does nothing
4069e47a1b0SMatthew G. Knepley 
4079e47a1b0SMatthew G. Knepley .seealso: `DMCreateSubDM()`, `DMGetLocalSection()`, `DMPlexSetMigrationSF()`, `DMView()`
4089e47a1b0SMatthew G. Knepley @*/
409dd072f5fSMatthew G. Knepley PetscErrorCode DMCreateSectionSubDM(DM dm, PetscInt numFields, const PetscInt fields[], const PetscInt numComps[], const PetscInt comps[], IS *is, DM *subdm)
4109e47a1b0SMatthew G. Knepley {
4119e47a1b0SMatthew G. Knepley   PetscSection section, sectionGlobal;
4129e47a1b0SMatthew G. Knepley   PetscInt     Nf;
4139e47a1b0SMatthew G. Knepley 
4149e47a1b0SMatthew G. Knepley   PetscFunctionBegin;
4159e47a1b0SMatthew G. Knepley   if (!numFields) PetscFunctionReturn(PETSC_SUCCESS);
4169e47a1b0SMatthew G. Knepley   PetscCall(DMGetLocalSection(dm, &section));
4179e47a1b0SMatthew G. Knepley   PetscCall(DMGetGlobalSection(dm, &sectionGlobal));
4189e47a1b0SMatthew G. Knepley   PetscCheck(section, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Must set default section for DM before splitting fields");
4199e47a1b0SMatthew G. Knepley   PetscCheck(sectionGlobal, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Must set default global section for DM before splitting fields");
4209e47a1b0SMatthew G. Knepley   PetscCall(PetscSectionGetNumFields(section, &Nf));
4219e47a1b0SMatthew G. Knepley   PetscCheck(numFields <= Nf, PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "Number of requested fields %" PetscInt_FMT " greater than number of DM fields %" PetscInt_FMT, numFields, Nf);
4229e47a1b0SMatthew G. Knepley 
423dd072f5fSMatthew G. Knepley   if (is) PetscCall(PetscSectionSelectFields_Private(section, sectionGlobal, numFields, fields, numComps, comps, is));
424dd072f5fSMatthew G. Knepley   if (subdm) PetscCall(DMSelectFields_Private(dm, section, numFields, fields, numComps, comps, is, subdm));
4253ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
4264d9407bcSMatthew G. Knepley }
4272adcc780SMatthew G. Knepley 
428792b654fSMatthew G. Knepley /*@C
4290b3275a6SBarry Smith   DMCreateSectionSuperDM - Returns an arrays of `IS` and a `DM` containing a `PetscSection` that encapsulates a superproblem defined by the array of `DM` and their `PetscSection`
430792b654fSMatthew G. Knepley 
43120f4b53cSBarry Smith   Not Collective
432792b654fSMatthew G. Knepley 
433d8d19677SJose E. Roman   Input Parameters:
4340b3275a6SBarry Smith + dms - The `DM` objects, the must all have the same topology; for example obtained with `DMClone()`
4350b3275a6SBarry Smith - len - The number of `DM` in `dms`
436792b654fSMatthew G. Knepley 
437792b654fSMatthew G. Knepley   Output Parameters:
43820f4b53cSBarry Smith + is      - The global indices for the subproblem, or `NULL`
4390b3275a6SBarry Smith - superdm - The `DM` for the superproblem, which must already have be cloned and contain the same topology as the `dms`
440792b654fSMatthew G. Knepley 
441792b654fSMatthew G. Knepley   Level: intermediate
442792b654fSMatthew G. Knepley 
443a4e35b19SJacob Faibussowitsch .seealso: `DMCreateSuperDM()`, `DMGetLocalSection()`, `DMPlexSetMigrationSF()`, `DMView()`
444792b654fSMatthew G. Knepley @*/
4455d83a8b1SBarry Smith PetscErrorCode DMCreateSectionSuperDM(DM dms[], PetscInt len, IS *is[], DM *superdm)
446d71ae5a4SJacob Faibussowitsch {
4479796d432SMatthew G. Knepley   MPI_Comm     comm;
4489796d432SMatthew G. Knepley   PetscSection supersection, *sections, *sectionGlobals;
4498cda7954SMatthew G. Knepley   PetscInt    *Nfs, Nf = 0, f, supf, oldf = -1, nullf = -1, i;
4509796d432SMatthew G. Knepley   PetscBool    haveNull = PETSC_FALSE;
4512adcc780SMatthew G. Knepley 
4522adcc780SMatthew G. Knepley   PetscFunctionBegin;
4539566063dSJacob Faibussowitsch   PetscCall(PetscObjectGetComm((PetscObject)dms[0], &comm));
4549796d432SMatthew G. Knepley   /* Pull out local and global sections */
4559566063dSJacob Faibussowitsch   PetscCall(PetscMalloc3(len, &Nfs, len, &sections, len, &sectionGlobals));
4562adcc780SMatthew G. Knepley   for (i = 0; i < len; ++i) {
4579566063dSJacob Faibussowitsch     PetscCall(DMGetLocalSection(dms[i], &sections[i]));
4589566063dSJacob Faibussowitsch     PetscCall(DMGetGlobalSection(dms[i], &sectionGlobals[i]));
4597a8be351SBarry Smith     PetscCheck(sections[i], comm, PETSC_ERR_ARG_WRONG, "Must set default section for DM before splitting fields");
4607a8be351SBarry Smith     PetscCheck(sectionGlobals[i], comm, PETSC_ERR_ARG_WRONG, "Must set default global section for DM before splitting fields");
4619566063dSJacob Faibussowitsch     PetscCall(PetscSectionGetNumFields(sections[i], &Nfs[i]));
4622adcc780SMatthew G. Knepley     Nf += Nfs[i];
4632adcc780SMatthew G. Knepley   }
4649796d432SMatthew G. Knepley   /* Create the supersection */
4659566063dSJacob Faibussowitsch   PetscCall(PetscSectionCreateSupersection(sections, len, &supersection));
4669566063dSJacob Faibussowitsch   PetscCall(DMSetLocalSection(*superdm, supersection));
4679796d432SMatthew G. Knepley   /* Create ISes */
4682adcc780SMatthew G. Knepley   if (is) {
4699796d432SMatthew G. Knepley     PetscSection supersectionGlobal;
4709796d432SMatthew G. Knepley     PetscInt     bs = -1, startf = 0;
4712adcc780SMatthew G. Knepley 
4729566063dSJacob Faibussowitsch     PetscCall(PetscMalloc1(len, is));
4739566063dSJacob Faibussowitsch     PetscCall(DMGetGlobalSection(*superdm, &supersectionGlobal));
4749796d432SMatthew G. Knepley     for (i = 0; i < len; startf += Nfs[i], ++i) {
4759796d432SMatthew G. Knepley       PetscInt *subIndices;
476ec4c761aSMatthew G. Knepley       PetscInt  subSize, subOff, pStart, pEnd, p, start, end, dummy;
4772adcc780SMatthew G. Knepley 
4789566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetChart(sectionGlobals[i], &pStart, &pEnd));
4799566063dSJacob Faibussowitsch       PetscCall(PetscSectionGetConstrainedStorageSize(sectionGlobals[i], &subSize));
4809566063dSJacob Faibussowitsch       PetscCall(PetscMalloc1(subSize, &subIndices));
4819796d432SMatthew G. Knepley       for (p = pStart, subOff = 0; p < pEnd; ++p) {
4829796d432SMatthew G. Knepley         PetscInt gdof, gcdof, gtdof, d;
4832adcc780SMatthew G. Knepley 
4849566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetDof(sectionGlobals[i], p, &gdof));
4859566063dSJacob Faibussowitsch         PetscCall(PetscSectionGetConstraintDof(sections[i], p, &gcdof));
4862adcc780SMatthew G. Knepley         gtdof = gdof - gcdof;
4872adcc780SMatthew G. Knepley         if (gdof > 0 && gtdof) {
4889371c9d4SSatish Balay           if (bs < 0) {
4899371c9d4SSatish Balay             bs = gtdof;
4909371c9d4SSatish Balay           } else if (bs != gtdof) {
4919371c9d4SSatish Balay             bs = 1;
4929371c9d4SSatish Balay           }
4939566063dSJacob Faibussowitsch           PetscCall(DMGetGlobalFieldOffset_Private(*superdm, p, startf, &start, &dummy));
4949566063dSJacob Faibussowitsch           PetscCall(DMGetGlobalFieldOffset_Private(*superdm, p, startf + Nfs[i] - 1, &dummy, &end));
49563a3b9bcSJacob Faibussowitsch           PetscCheck(end - start == gtdof, PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Invalid number of global dofs %" PetscInt_FMT " != %" PetscInt_FMT " for dm %" PetscInt_FMT " on point %" PetscInt_FMT, end - start, gtdof, i, p);
4969796d432SMatthew G. Knepley           for (d = start; d < end; ++d, ++subOff) subIndices[subOff] = d;
4972adcc780SMatthew G. Knepley         }
4982adcc780SMatthew G. Knepley       }
4999566063dSJacob Faibussowitsch       PetscCall(ISCreateGeneral(comm, subSize, subIndices, PETSC_OWN_POINTER, &(*is)[i]));
5002adcc780SMatthew G. Knepley       /* Must have same blocksize on all procs (some might have no points) */
5019796d432SMatthew G. Knepley       {
5029796d432SMatthew G. Knepley         PetscInt bs = -1, bsLocal[2], bsMinMax[2];
5039796d432SMatthew G. Knepley 
5041690c2aeSBarry Smith         bsLocal[0] = bs < 0 ? PETSC_INT_MAX : bs;
5059371c9d4SSatish Balay         bsLocal[1] = bs;
5069566063dSJacob Faibussowitsch         PetscCall(PetscGlobalMinMaxInt(comm, bsLocal, bsMinMax));
5079371c9d4SSatish Balay         if (bsMinMax[0] != bsMinMax[1]) {
5089371c9d4SSatish Balay           bs = 1;
5099371c9d4SSatish Balay         } else {
5109371c9d4SSatish Balay           bs = bsMinMax[0];
5119371c9d4SSatish Balay         }
5129566063dSJacob Faibussowitsch         PetscCall(ISSetBlockSize((*is)[i], bs));
5132adcc780SMatthew G. Knepley       }
5142adcc780SMatthew G. Knepley     }
5152adcc780SMatthew G. Knepley   }
5169796d432SMatthew G. Knepley   /* Preserve discretizations */
517e5e52638SMatthew G. Knepley   if (len && dms[0]->probs) {
5189566063dSJacob Faibussowitsch     PetscCall(DMSetNumFields(*superdm, Nf));
5199796d432SMatthew G. Knepley     for (i = 0, supf = 0; i < len; ++i) {
5209796d432SMatthew G. Knepley       for (f = 0; f < Nfs[i]; ++f, ++supf) {
5212adcc780SMatthew G. Knepley         PetscObject disc;
5222adcc780SMatthew G. Knepley 
5239566063dSJacob Faibussowitsch         PetscCall(DMGetField(dms[i], f, NULL, &disc));
5249566063dSJacob Faibussowitsch         PetscCall(DMSetField(*superdm, supf, NULL, disc));
5252adcc780SMatthew G. Knepley       }
5262adcc780SMatthew G. Knepley     }
5279566063dSJacob Faibussowitsch     PetscCall(DMCreateDS(*superdm));
5282adcc780SMatthew G. Knepley   }
5299796d432SMatthew G. Knepley   /* Preserve nullspaces */
5309796d432SMatthew G. Knepley   for (i = 0, supf = 0; i < len; ++i) {
5319796d432SMatthew G. Knepley     for (f = 0; f < Nfs[i]; ++f, ++supf) {
5329796d432SMatthew G. Knepley       (*superdm)->nullspaceConstructors[supf] = dms[i]->nullspaceConstructors[f];
5339796d432SMatthew G. Knepley       if ((*superdm)->nullspaceConstructors[supf]) {
5349796d432SMatthew G. Knepley         haveNull = PETSC_TRUE;
5359796d432SMatthew G. Knepley         nullf    = supf;
5368cda7954SMatthew G. Knepley         oldf     = f;
5372adcc780SMatthew G. Knepley       }
5389796d432SMatthew G. Knepley     }
5399796d432SMatthew G. Knepley   }
5409796d432SMatthew G. Knepley   /* Attach nullspace to IS */
5419796d432SMatthew G. Knepley   if (haveNull && is) {
5429796d432SMatthew G. Knepley     MatNullSpace nullSpace;
5439796d432SMatthew G. Knepley 
5449566063dSJacob Faibussowitsch     PetscCall((*(*superdm)->nullspaceConstructors[nullf])(*superdm, oldf, nullf, &nullSpace));
5459566063dSJacob Faibussowitsch     PetscCall(PetscObjectCompose((PetscObject)(*is)[nullf], "nullspace", (PetscObject)nullSpace));
5469566063dSJacob Faibussowitsch     PetscCall(MatNullSpaceDestroy(&nullSpace));
5479796d432SMatthew G. Knepley   }
5489566063dSJacob Faibussowitsch   PetscCall(PetscSectionDestroy(&supersection));
5499566063dSJacob Faibussowitsch   PetscCall(PetscFree3(Nfs, sections, sectionGlobals));
5503ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
5512adcc780SMatthew G. Knepley }
552