xref: /petsc/src/ksp/pc/impls/patch/pcpatch.c (revision d63cebbaa1d2a6c0ad821d40b6b722e9f7bfc162)
14bbf5ea8SMatthew G. Knepley #include <petsc/private/pcpatchimpl.h>     /*I "petscpc.h" I*/
254ab768cSLawrence Mitchell #include <petsc/private/kspimpl.h>         /* For ksp->setfromoptionscalled */
35f824522SMatthew G. Knepley #include <petsc/private/dmpleximpl.h> /* For DMPlexComputeJacobian_Patch_Internal() */
44bbf5ea8SMatthew G. Knepley #include <petscsf.h>
54bbf5ea8SMatthew G. Knepley #include <petscbt.h>
65f824522SMatthew G. Knepley #include <petscds.h>
74bbf5ea8SMatthew G. Knepley 
84bbf5ea8SMatthew G. Knepley PetscLogEvent PC_Patch_CreatePatches, PC_Patch_ComputeOp, PC_Patch_Solve, PC_Patch_Scatter, PC_Patch_Apply, PC_Patch_Prealloc;
94bbf5ea8SMatthew G. Knepley 
105f824522SMatthew G. Knepley PETSC_STATIC_INLINE PetscErrorCode ObjectView(PetscObject obj, PetscViewer viewer, PetscViewerFormat format)
115f824522SMatthew G. Knepley {
125f824522SMatthew G. Knepley   PetscErrorCode ierr;
135f824522SMatthew G. Knepley 
145f824522SMatthew G. Knepley   ierr = PetscViewerPushFormat(viewer, format);CHKERRQ(ierr);
155f824522SMatthew G. Knepley   ierr = PetscObjectView(obj, viewer);CHKERRQ(ierr);
165f824522SMatthew G. Knepley   ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr);
177974b488SMatthew G. Knepley   return(0);
185f824522SMatthew G. Knepley }
195f824522SMatthew G. Knepley 
201b68eb51SMatthew G. Knepley static PetscErrorCode PCPatchConstruct_Star(void *vpatch, DM dm, PetscInt point, PetscHSetI ht)
214bbf5ea8SMatthew G. Knepley {
224bbf5ea8SMatthew G. Knepley   PetscInt       starSize;
234bbf5ea8SMatthew G. Knepley   PetscInt      *star = NULL, si;
244bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
254bbf5ea8SMatthew G. Knepley 
264bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
271b68eb51SMatthew G. Knepley   PetscHSetIClear(ht);
284bbf5ea8SMatthew G. Knepley   /* To start with, add the point we care about */
291b68eb51SMatthew G. Knepley   ierr = PetscHSetIAdd(ht, point);CHKERRQ(ierr);
304bbf5ea8SMatthew G. Knepley   /* Loop over all the points that this point connects to */
314bbf5ea8SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dm, point, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
321b68eb51SMatthew G. Knepley   for (si = 0; si < starSize*2; si += 2) {ierr = PetscHSetIAdd(ht, star[si]);CHKERRQ(ierr);}
334bbf5ea8SMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dm, point, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
344bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
354bbf5ea8SMatthew G. Knepley }
364bbf5ea8SMatthew G. Knepley 
371b68eb51SMatthew G. Knepley static PetscErrorCode PCPatchConstruct_Vanka(void *vpatch, DM dm, PetscInt point, PetscHSetI ht)
384bbf5ea8SMatthew G. Knepley {
394bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) vpatch;
404bbf5ea8SMatthew G. Knepley   PetscInt       starSize;
414bbf5ea8SMatthew G. Knepley   PetscInt      *star = NULL;
424bbf5ea8SMatthew G. Knepley   PetscBool      shouldIgnore = PETSC_FALSE;
434bbf5ea8SMatthew G. Knepley   PetscInt       cStart, cEnd, iStart, iEnd, si;
444bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
454bbf5ea8SMatthew G. Knepley 
464bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
471b68eb51SMatthew G. Knepley   ierr = PetscHSetIClear(ht);CHKERRQ(ierr);
484bbf5ea8SMatthew G. Knepley   /* To start with, add the point we care about */
491b68eb51SMatthew G. Knepley   ierr = PetscHSetIAdd(ht, point);CHKERRQ(ierr);
504bbf5ea8SMatthew G. Knepley   /* Should we ignore any points of a certain dimension? */
514bbf5ea8SMatthew G. Knepley   if (patch->vankadim >= 0) {
524bbf5ea8SMatthew G. Knepley     shouldIgnore = PETSC_TRUE;
534bbf5ea8SMatthew G. Knepley     ierr = DMPlexGetDepthStratum(dm, patch->vankadim, &iStart, &iEnd);CHKERRQ(ierr);
544bbf5ea8SMatthew G. Knepley   }
554bbf5ea8SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
564bbf5ea8SMatthew G. Knepley   /* Loop over all the cells that this point connects to */
574bbf5ea8SMatthew G. Knepley   ierr = DMPlexGetTransitiveClosure(dm, point, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
585f824522SMatthew G. Knepley   for (si = 0; si < starSize*2; si += 2) {
594bbf5ea8SMatthew G. Knepley     const PetscInt cell = star[si];
604bbf5ea8SMatthew G. Knepley     PetscInt       closureSize;
614bbf5ea8SMatthew G. Knepley     PetscInt      *closure = NULL, ci;
624bbf5ea8SMatthew G. Knepley 
634bbf5ea8SMatthew G. Knepley     if (cell < cStart || cell >= cEnd) continue;
644bbf5ea8SMatthew G. Knepley     /* now loop over all entities in the closure of that cell */
654bbf5ea8SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, cell, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
665f824522SMatthew G. Knepley     for (ci = 0; ci < closureSize*2; ci += 2) {
674bbf5ea8SMatthew G. Knepley       const PetscInt newpoint = closure[ci];
684bbf5ea8SMatthew G. Knepley 
694bbf5ea8SMatthew G. Knepley       /* We've been told to ignore entities of this type.*/
704bbf5ea8SMatthew G. Knepley       if (shouldIgnore && newpoint >= iStart && newpoint < iEnd) continue;
711b68eb51SMatthew G. Knepley       ierr = PetscHSetIAdd(ht, newpoint);CHKERRQ(ierr);
724bbf5ea8SMatthew G. Knepley     }
734bbf5ea8SMatthew G. Knepley     ierr = DMPlexRestoreTransitiveClosure(dm, cell, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
744bbf5ea8SMatthew G. Knepley   }
754bbf5ea8SMatthew G. Knepley   ierr = DMPlexRestoreTransitiveClosure(dm, point, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
764bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
774bbf5ea8SMatthew G. Knepley }
784bbf5ea8SMatthew G. Knepley 
79e5b9877fSPatrick Farrell static PetscErrorCode PCPatchConstruct_Pardecomp(void *vpatch, DM dm, PetscInt point, PetscHSetI ht)
800a390943SPatrick Farrell {
81b525f888SPatrick Farrell   PC_PATCH       *patch = (PC_PATCH *) vpatch;
820a390943SPatrick Farrell   DMLabel         ghost = NULL;
830a390943SPatrick Farrell   const PetscInt *leaves;
840a390943SPatrick Farrell   PetscInt        nleaves, pStart, pEnd, loc;
850a390943SPatrick Farrell   PetscBool       isFiredrake;
860a390943SPatrick Farrell   DM              plex;
870a390943SPatrick Farrell   PetscBool       flg;
88b525f888SPatrick Farrell   PetscInt        starSize;
89b525f888SPatrick Farrell   PetscInt       *star = NULL;
9025fd193aSPatrick Farrell   PetscInt        opoint, overlapi;
910a390943SPatrick Farrell   PetscErrorCode  ierr;
920a390943SPatrick Farrell 
930a390943SPatrick Farrell   PetscFunctionBegin;
940a390943SPatrick Farrell   PetscHSetIClear(ht);
950a390943SPatrick Farrell 
960a390943SPatrick Farrell   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
970a390943SPatrick Farrell   ierr = DMPlexGetChart(plex, &pStart, &pEnd);CHKERRQ(ierr);
980a390943SPatrick Farrell 
990a390943SPatrick Farrell   ierr = DMHasLabel(dm, "pyop2_ghost", &isFiredrake);CHKERRQ(ierr);
1000a390943SPatrick Farrell   if (isFiredrake) {
1010a390943SPatrick Farrell     ierr = DMGetLabel(dm, "pyop2_ghost", &ghost);CHKERRQ(ierr);
1020a390943SPatrick Farrell     ierr = DMLabelCreateIndex(ghost, pStart, pEnd);CHKERRQ(ierr);
1030a390943SPatrick Farrell   } else {
1040a390943SPatrick Farrell     PetscSF sf;
1050a390943SPatrick Farrell     ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
1060a390943SPatrick Farrell     ierr = PetscSFGetGraph(sf, NULL, &nleaves, &leaves, NULL);CHKERRQ(ierr);
1070a390943SPatrick Farrell     nleaves = PetscMax(nleaves, 0);
1080a390943SPatrick Farrell   }
1090a390943SPatrick Farrell 
11025fd193aSPatrick Farrell   for (opoint = pStart; opoint < pEnd; ++opoint) {
111bfabdd78SPatrick Farrell     if (ghost) {ierr = DMLabelHasPoint(ghost, opoint, &flg);CHKERRQ(ierr);}
112bfabdd78SPatrick Farrell     else       {ierr = PetscFindInt(opoint, nleaves, leaves, &loc);CHKERRQ(ierr); flg = loc >=0 ? PETSC_TRUE : PETSC_FALSE;}
1130a390943SPatrick Farrell     /* Not an owned entity, don't make a cell patch. */
1140a390943SPatrick Farrell     if (flg) continue;
115bfabdd78SPatrick Farrell     ierr = PetscHSetIAdd(ht, opoint);CHKERRQ(ierr);
1160a390943SPatrick Farrell   }
1170a390943SPatrick Farrell 
118b525f888SPatrick Farrell   /* Now build the overlap for the patch */
11925fd193aSPatrick Farrell   for (overlapi = 0; overlapi < patch->pardecomp_overlap; ++overlapi) {
120b525f888SPatrick Farrell     PetscInt index = 0;
121b525f888SPatrick Farrell     PetscInt *htpoints = NULL;
122b525f888SPatrick Farrell     PetscInt htsize;
12325fd193aSPatrick Farrell     PetscInt i;
124b525f888SPatrick Farrell 
125b525f888SPatrick Farrell     ierr = PetscHSetIGetSize(ht, &htsize);CHKERRQ(ierr);
126b525f888SPatrick Farrell     ierr = PetscMalloc1(htsize, &htpoints);CHKERRQ(ierr);
127b525f888SPatrick Farrell     ierr = PetscHSetIGetElems(ht, &index, htpoints);CHKERRQ(ierr);
128b525f888SPatrick Farrell 
12925fd193aSPatrick Farrell     for (i = 0; i < htsize; ++i) {
13025fd193aSPatrick Farrell       PetscInt hpoint = htpoints[i];
13125fd193aSPatrick Farrell       PetscInt si;
132b525f888SPatrick Farrell 
13325fd193aSPatrick Farrell       ierr = DMPlexGetTransitiveClosure(dm, hpoint, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
13425fd193aSPatrick Farrell       for (si = 0; si < starSize*2; si += 2) {
135b525f888SPatrick Farrell         const PetscInt starp = star[si];
136b525f888SPatrick Farrell         PetscInt       closureSize;
137b525f888SPatrick Farrell         PetscInt      *closure = NULL, ci;
138b525f888SPatrick Farrell 
139b525f888SPatrick Farrell         /* now loop over all entities in the closure of starp */
140b525f888SPatrick Farrell         ierr = DMPlexGetTransitiveClosure(dm, starp, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
14125fd193aSPatrick Farrell         for (ci = 0; ci < closureSize*2; ci += 2) {
142b525f888SPatrick Farrell           const PetscInt closstarp = closure[ci];
143b525f888SPatrick Farrell           ierr = PetscHSetIAdd(ht, closstarp);CHKERRQ(ierr);
144b525f888SPatrick Farrell         }
145b525f888SPatrick Farrell         ierr = DMPlexRestoreTransitiveClosure(dm, starp, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
146b525f888SPatrick Farrell       }
14725fd193aSPatrick Farrell       ierr = DMPlexRestoreTransitiveClosure(dm, hpoint, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
148b525f888SPatrick Farrell     }
149b525f888SPatrick Farrell     ierr = PetscFree(htpoints);CHKERRQ(ierr);
150b525f888SPatrick Farrell   }
151b525f888SPatrick Farrell 
1520a390943SPatrick Farrell   PetscFunctionReturn(0);
1530a390943SPatrick Farrell }
1540a390943SPatrick Farrell 
1554bbf5ea8SMatthew G. Knepley /* The user's already set the patches in patch->userIS. Build the hash tables */
1561b68eb51SMatthew G. Knepley static PetscErrorCode PCPatchConstruct_User(void *vpatch, DM dm, PetscInt point, PetscHSetI ht)
1574bbf5ea8SMatthew G. Knepley {
1584bbf5ea8SMatthew G. Knepley   PC_PATCH       *patch   = (PC_PATCH *) vpatch;
1594bbf5ea8SMatthew G. Knepley   IS              patchis = patch->userIS[point];
1604bbf5ea8SMatthew G. Knepley   PetscInt        n;
1614bbf5ea8SMatthew G. Knepley   const PetscInt *patchdata;
1624bbf5ea8SMatthew G. Knepley   PetscInt        pStart, pEnd, i;
1634bbf5ea8SMatthew G. Knepley   PetscErrorCode  ierr;
1644bbf5ea8SMatthew G. Knepley 
1654bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
1661b68eb51SMatthew G. Knepley   ierr = PetscHSetIClear(ht);CHKERRQ(ierr);
1671b68eb51SMatthew G. Knepley   ierr = DMPlexGetChart(dm, &pStart, &pEnd);CHKERRQ(ierr);
1684bbf5ea8SMatthew G. Knepley   ierr = ISGetLocalSize(patchis, &n);CHKERRQ(ierr);
1694bbf5ea8SMatthew G. Knepley   ierr = ISGetIndices(patchis, &patchdata);CHKERRQ(ierr);
1704bbf5ea8SMatthew G. Knepley   for (i = 0; i < n; ++i) {
1714bbf5ea8SMatthew G. Knepley     const PetscInt ownedpoint = patchdata[i];
1724bbf5ea8SMatthew G. Knepley 
1734bbf5ea8SMatthew G. Knepley     if (ownedpoint < pStart || ownedpoint >= pEnd) {
1744bbf5ea8SMatthew G. Knepley       SETERRQ3(PetscObjectComm((PetscObject) dm), PETSC_ERR_ARG_OUTOFRANGE, "Mesh point %D was not in [%D, %D)", ownedpoint, pStart, pEnd);
1754bbf5ea8SMatthew G. Knepley     }
1761b68eb51SMatthew G. Knepley     ierr = PetscHSetIAdd(ht, ownedpoint);CHKERRQ(ierr);
1774bbf5ea8SMatthew G. Knepley   }
1784bbf5ea8SMatthew G. Knepley   ierr = ISRestoreIndices(patchis, &patchdata);CHKERRQ(ierr);
1794bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
1804bbf5ea8SMatthew G. Knepley }
1814bbf5ea8SMatthew G. Knepley 
1824bbf5ea8SMatthew G. Knepley static PetscErrorCode PCPatchCreateDefaultSF_Private(PC pc, PetscInt n, const PetscSF *sf, const PetscInt *bs)
1834bbf5ea8SMatthew G. Knepley {
1844bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
1854bbf5ea8SMatthew G. Knepley   PetscInt       i;
1864bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
1874bbf5ea8SMatthew G. Knepley 
1884bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
1894bbf5ea8SMatthew G. Knepley   if (n == 1 && bs[0] == 1) {
1904bbf5ea8SMatthew G. Knepley     patch->defaultSF = sf[0];
1914bbf5ea8SMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) patch->defaultSF);CHKERRQ(ierr);
1924bbf5ea8SMatthew G. Knepley   } else {
1934bbf5ea8SMatthew G. Knepley     PetscInt     allRoots = 0, allLeaves = 0;
1944bbf5ea8SMatthew G. Knepley     PetscInt     leafOffset = 0;
1954bbf5ea8SMatthew G. Knepley     PetscInt    *ilocal = NULL;
1964bbf5ea8SMatthew G. Knepley     PetscSFNode *iremote = NULL;
1974bbf5ea8SMatthew G. Knepley     PetscInt    *remoteOffsets = NULL;
1984bbf5ea8SMatthew G. Knepley     PetscInt     index = 0;
1991b68eb51SMatthew G. Knepley     PetscHMapI   rankToIndex;
2004bbf5ea8SMatthew G. Knepley     PetscInt     numRanks = 0;
2014bbf5ea8SMatthew G. Knepley     PetscSFNode *remote = NULL;
2024bbf5ea8SMatthew G. Knepley     PetscSF      rankSF;
2034bbf5ea8SMatthew G. Knepley     PetscInt    *ranks = NULL;
2044bbf5ea8SMatthew G. Knepley     PetscInt    *offsets = NULL;
2054bbf5ea8SMatthew G. Knepley     MPI_Datatype contig;
2061b68eb51SMatthew G. Knepley     PetscHSetI   ranksUniq;
2074bbf5ea8SMatthew G. Knepley 
2084bbf5ea8SMatthew G. Knepley     /* First figure out how many dofs there are in the concatenated numbering.
2094bbf5ea8SMatthew G. Knepley      * allRoots: number of owned global dofs;
2104bbf5ea8SMatthew G. Knepley      * allLeaves: number of visible dofs (global + ghosted).
2114bbf5ea8SMatthew G. Knepley      */
2124bbf5ea8SMatthew G. Knepley     for (i = 0; i < n; ++i) {
2134bbf5ea8SMatthew G. Knepley       PetscInt nroots, nleaves;
2144bbf5ea8SMatthew G. Knepley 
2154bbf5ea8SMatthew G. Knepley       ierr = PetscSFGetGraph(sf[i], &nroots, &nleaves, NULL, NULL);CHKERRQ(ierr);
2164bbf5ea8SMatthew G. Knepley       allRoots  += nroots * bs[i];
2174bbf5ea8SMatthew G. Knepley       allLeaves += nleaves * bs[i];
2184bbf5ea8SMatthew G. Knepley     }
2194bbf5ea8SMatthew G. Knepley     ierr = PetscMalloc1(allLeaves, &ilocal);CHKERRQ(ierr);
2204bbf5ea8SMatthew G. Knepley     ierr = PetscMalloc1(allLeaves, &iremote);CHKERRQ(ierr);
2214bbf5ea8SMatthew G. Knepley     /* Now build an SF that just contains process connectivity. */
2221b68eb51SMatthew G. Knepley     ierr = PetscHSetICreate(&ranksUniq);CHKERRQ(ierr);
2234bbf5ea8SMatthew G. Knepley     for (i = 0; i < n; ++i) {
2244bbf5ea8SMatthew G. Knepley       const PetscMPIInt *ranks = NULL;
2254bbf5ea8SMatthew G. Knepley       PetscInt           nranks, j;
2264bbf5ea8SMatthew G. Knepley 
2274bbf5ea8SMatthew G. Knepley       ierr = PetscSFSetUp(sf[i]);CHKERRQ(ierr);
2284bbf5ea8SMatthew G. Knepley       ierr = PetscSFGetRanks(sf[i], &nranks, &ranks, NULL, NULL, NULL);CHKERRQ(ierr);
2294bbf5ea8SMatthew G. Knepley       /* These are all the ranks who communicate with me. */
2304bbf5ea8SMatthew G. Knepley       for (j = 0; j < nranks; ++j) {
2311b68eb51SMatthew G. Knepley         ierr = PetscHSetIAdd(ranksUniq, (PetscInt) ranks[j]);CHKERRQ(ierr);
2324bbf5ea8SMatthew G. Knepley       }
2334bbf5ea8SMatthew G. Knepley     }
2341b68eb51SMatthew G. Knepley     ierr = PetscHSetIGetSize(ranksUniq, &numRanks);CHKERRQ(ierr);
2354bbf5ea8SMatthew G. Knepley     ierr = PetscMalloc1(numRanks, &remote);CHKERRQ(ierr);
2364bbf5ea8SMatthew G. Knepley     ierr = PetscMalloc1(numRanks, &ranks);CHKERRQ(ierr);
2371b68eb51SMatthew G. Knepley     ierr = PetscHSetIGetElems(ranksUniq, &index, ranks);CHKERRQ(ierr);
2384bbf5ea8SMatthew G. Knepley 
2391b68eb51SMatthew G. Knepley     ierr = PetscHMapICreate(&rankToIndex);CHKERRQ(ierr);
2404bbf5ea8SMatthew G. Knepley     for (i = 0; i < numRanks; ++i) {
2414bbf5ea8SMatthew G. Knepley       remote[i].rank  = ranks[i];
2424bbf5ea8SMatthew G. Knepley       remote[i].index = 0;
2431b68eb51SMatthew G. Knepley       ierr = PetscHMapISet(rankToIndex, ranks[i], i);CHKERRQ(ierr);
2444bbf5ea8SMatthew G. Knepley     }
2454bbf5ea8SMatthew G. Knepley     ierr = PetscFree(ranks);CHKERRQ(ierr);
2461b68eb51SMatthew G. Knepley     ierr = PetscHSetIDestroy(&ranksUniq);CHKERRQ(ierr);
2474bbf5ea8SMatthew G. Knepley     ierr = PetscSFCreate(PetscObjectComm((PetscObject) pc), &rankSF);CHKERRQ(ierr);
2484bbf5ea8SMatthew G. Knepley     ierr = PetscSFSetGraph(rankSF, 1, numRanks, NULL, PETSC_OWN_POINTER, remote, PETSC_OWN_POINTER);CHKERRQ(ierr);
2494bbf5ea8SMatthew G. Knepley     ierr = PetscSFSetUp(rankSF);CHKERRQ(ierr);
2504bbf5ea8SMatthew G. Knepley     /* OK, use it to communicate the root offset on the remote
2514bbf5ea8SMatthew G. Knepley      * processes for each subspace. */
2524bbf5ea8SMatthew G. Knepley     ierr = PetscMalloc1(n, &offsets);CHKERRQ(ierr);
2534bbf5ea8SMatthew G. Knepley     ierr = PetscMalloc1(n*numRanks, &remoteOffsets);CHKERRQ(ierr);
2544bbf5ea8SMatthew G. Knepley 
2554bbf5ea8SMatthew G. Knepley     offsets[0] = 0;
2564bbf5ea8SMatthew G. Knepley     for (i = 1; i < n; ++i) {
2574bbf5ea8SMatthew G. Knepley       PetscInt nroots;
2584bbf5ea8SMatthew G. Knepley 
2594bbf5ea8SMatthew G. Knepley       ierr = PetscSFGetGraph(sf[i-1], &nroots, NULL, NULL, NULL);CHKERRQ(ierr);
2604bbf5ea8SMatthew G. Knepley       offsets[i] = offsets[i-1] + nroots*bs[i-1];
2614bbf5ea8SMatthew G. Knepley     }
2624bbf5ea8SMatthew G. Knepley     /* Offsets are the offsets on the current process of the
2634bbf5ea8SMatthew G. Knepley      * global dof numbering for the subspaces. */
2644bbf5ea8SMatthew G. Knepley     ierr = MPI_Type_contiguous(n, MPIU_INT, &contig);CHKERRQ(ierr);
2654bbf5ea8SMatthew G. Knepley     ierr = MPI_Type_commit(&contig);CHKERRQ(ierr);
2664bbf5ea8SMatthew G. Knepley 
2674bbf5ea8SMatthew G. Knepley     ierr = PetscSFBcastBegin(rankSF, contig, offsets, remoteOffsets);CHKERRQ(ierr);
2684bbf5ea8SMatthew G. Knepley     ierr = PetscSFBcastEnd(rankSF, contig, offsets, remoteOffsets);CHKERRQ(ierr);
2694bbf5ea8SMatthew G. Knepley     ierr = MPI_Type_free(&contig);CHKERRQ(ierr);
2704bbf5ea8SMatthew G. Knepley     ierr = PetscFree(offsets);CHKERRQ(ierr);
2714bbf5ea8SMatthew G. Knepley     ierr = PetscSFDestroy(&rankSF);CHKERRQ(ierr);
2724bbf5ea8SMatthew G. Knepley     /* Now remoteOffsets contains the offsets on the remote
2734bbf5ea8SMatthew G. Knepley      * processes who communicate with me.  So now we can
2744bbf5ea8SMatthew G. Knepley      * concatenate the list of SFs into a single one. */
2754bbf5ea8SMatthew G. Knepley     index = 0;
2764bbf5ea8SMatthew G. Knepley     for (i = 0; i < n; ++i) {
2774bbf5ea8SMatthew G. Knepley       const PetscSFNode *remote = NULL;
2784bbf5ea8SMatthew G. Knepley       const PetscInt    *local  = NULL;
2794bbf5ea8SMatthew G. Knepley       PetscInt           nroots, nleaves, j;
2804bbf5ea8SMatthew G. Knepley 
2814bbf5ea8SMatthew G. Knepley       ierr = PetscSFGetGraph(sf[i], &nroots, &nleaves, &local, &remote);CHKERRQ(ierr);
2824bbf5ea8SMatthew G. Knepley       for (j = 0; j < nleaves; ++j) {
2834bbf5ea8SMatthew G. Knepley         PetscInt rank = remote[j].rank;
2844bbf5ea8SMatthew G. Knepley         PetscInt idx, rootOffset, k;
2854bbf5ea8SMatthew G. Knepley 
2861b68eb51SMatthew G. Knepley         ierr = PetscHMapIGet(rankToIndex, rank, &idx);CHKERRQ(ierr);
2874bbf5ea8SMatthew G. Knepley         if (idx == -1) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Didn't find rank, huh?");
2884bbf5ea8SMatthew G. Knepley         /* Offset on given rank for ith subspace */
2894bbf5ea8SMatthew G. Knepley         rootOffset = remoteOffsets[n*idx + i];
2904bbf5ea8SMatthew G. Knepley         for (k = 0; k < bs[i]; ++k) {
29173ec7555SLawrence Mitchell           ilocal[index]        = (local ? local[j] : j)*bs[i] + k + leafOffset;
2924bbf5ea8SMatthew G. Knepley           iremote[index].rank  = remote[j].rank;
2934bbf5ea8SMatthew G. Knepley           iremote[index].index = remote[j].index*bs[i] + k + rootOffset;
2944bbf5ea8SMatthew G. Knepley           ++index;
2954bbf5ea8SMatthew G. Knepley         }
2964bbf5ea8SMatthew G. Knepley       }
2974bbf5ea8SMatthew G. Knepley       leafOffset += nleaves * bs[i];
2984bbf5ea8SMatthew G. Knepley     }
2991b68eb51SMatthew G. Knepley     ierr = PetscHMapIDestroy(&rankToIndex);CHKERRQ(ierr);
3004bbf5ea8SMatthew G. Knepley     ierr = PetscFree(remoteOffsets);CHKERRQ(ierr);
3014bbf5ea8SMatthew G. Knepley     ierr = PetscSFCreate(PetscObjectComm((PetscObject)pc), &patch->defaultSF);CHKERRQ(ierr);
3024bbf5ea8SMatthew G. Knepley     ierr = PetscSFSetGraph(patch->defaultSF, allRoots, allLeaves, ilocal, PETSC_OWN_POINTER, iremote, PETSC_OWN_POINTER);CHKERRQ(ierr);
3034bbf5ea8SMatthew G. Knepley   }
3044bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3054bbf5ea8SMatthew G. Knepley }
3064bbf5ea8SMatthew G. Knepley 
3074bbf5ea8SMatthew G. Knepley /* TODO: Docs */
3085f824522SMatthew G. Knepley PetscErrorCode PCPatchSetIgnoreDim(PC pc, PetscInt dim)
3095f824522SMatthew G. Knepley {
3105f824522SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3115f824522SMatthew G. Knepley   PetscFunctionBegin;
3125f824522SMatthew G. Knepley   patch->ignoredim = dim;
3135f824522SMatthew G. Knepley   PetscFunctionReturn(0);
3145f824522SMatthew G. Knepley }
3155f824522SMatthew G. Knepley 
3165f824522SMatthew G. Knepley /* TODO: Docs */
3175f824522SMatthew G. Knepley PetscErrorCode PCPatchGetIgnoreDim(PC pc, PetscInt *dim)
3185f824522SMatthew G. Knepley {
3195f824522SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3205f824522SMatthew G. Knepley   PetscFunctionBegin;
3215f824522SMatthew G. Knepley   *dim = patch->ignoredim;
3225f824522SMatthew G. Knepley   PetscFunctionReturn(0);
3235f824522SMatthew G. Knepley }
3245f824522SMatthew G. Knepley 
3255f824522SMatthew G. Knepley /* TODO: Docs */
3264bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchSetSaveOperators(PC pc, PetscBool flg)
3274bbf5ea8SMatthew G. Knepley {
3284bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3294bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
3304bbf5ea8SMatthew G. Knepley   patch->save_operators = flg;
3314bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3324bbf5ea8SMatthew G. Knepley }
3334bbf5ea8SMatthew G. Knepley 
3344bbf5ea8SMatthew G. Knepley /* TODO: Docs */
3354bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchGetSaveOperators(PC pc, PetscBool *flg)
3364bbf5ea8SMatthew G. Knepley {
3374bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3384bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
3394bbf5ea8SMatthew G. Knepley   *flg = patch->save_operators;
3404bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3414bbf5ea8SMatthew G. Knepley }
3424bbf5ea8SMatthew G. Knepley 
3434bbf5ea8SMatthew G. Knepley /* TODO: Docs */
3444bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchSetPartitionOfUnity(PC pc, PetscBool flg)
3454bbf5ea8SMatthew G. Knepley {
3464bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3474bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
3484bbf5ea8SMatthew G. Knepley   patch->partition_of_unity = flg;
3494bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3504bbf5ea8SMatthew G. Knepley }
3514bbf5ea8SMatthew G. Knepley 
3524bbf5ea8SMatthew G. Knepley /* TODO: Docs */
3534bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchGetPartitionOfUnity(PC pc, PetscBool *flg)
3544bbf5ea8SMatthew G. Knepley {
3554bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3564bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
3574bbf5ea8SMatthew G. Knepley   *flg = patch->partition_of_unity;
3584bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3594bbf5ea8SMatthew G. Knepley }
3604bbf5ea8SMatthew G. Knepley 
3614bbf5ea8SMatthew G. Knepley /* TODO: Docs */
36261c4b389SFlorian Wechsung PetscErrorCode PCPatchSetLocalComposition(PC pc, PCCompositeType type)
363c2e6f3c0SFlorian Wechsung {
364c2e6f3c0SFlorian Wechsung   PC_PATCH *patch = (PC_PATCH *) pc->data;
365c2e6f3c0SFlorian Wechsung   PetscFunctionBegin;
36661c4b389SFlorian Wechsung   if (type != PC_COMPOSITE_ADDITIVE && type != PC_COMPOSITE_MULTIPLICATIVE) SETERRQ(PetscObjectComm((PetscObject)pc),PETSC_ERR_SUP,"Only supports additive or multiplicative as the local type");
36761c4b389SFlorian Wechsung   patch->local_composition_type = type;
368c2e6f3c0SFlorian Wechsung   PetscFunctionReturn(0);
369c2e6f3c0SFlorian Wechsung }
370c2e6f3c0SFlorian Wechsung 
371c2e6f3c0SFlorian Wechsung /* TODO: Docs */
37261c4b389SFlorian Wechsung PetscErrorCode PCPatchGetLocalComposition(PC pc, PCCompositeType *type)
373c2e6f3c0SFlorian Wechsung {
374c2e6f3c0SFlorian Wechsung   PC_PATCH *patch = (PC_PATCH *) pc->data;
375c2e6f3c0SFlorian Wechsung   PetscFunctionBegin;
37661c4b389SFlorian Wechsung   *type = patch->local_composition_type;
377c2e6f3c0SFlorian Wechsung   PetscFunctionReturn(0);
378c2e6f3c0SFlorian Wechsung }
379c2e6f3c0SFlorian Wechsung 
380c2e6f3c0SFlorian Wechsung /* TODO: Docs */
3814bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchSetSubMatType(PC pc, MatType sub_mat_type)
3824bbf5ea8SMatthew G. Knepley {
3834bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
3844bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
3854bbf5ea8SMatthew G. Knepley 
3864bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
3874bbf5ea8SMatthew G. Knepley   if (patch->sub_mat_type) {ierr = PetscFree(patch->sub_mat_type);CHKERRQ(ierr);}
3884bbf5ea8SMatthew G. Knepley   ierr = PetscStrallocpy(sub_mat_type, (char **) &patch->sub_mat_type);CHKERRQ(ierr);
3894bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3904bbf5ea8SMatthew G. Knepley }
3914bbf5ea8SMatthew G. Knepley 
3924bbf5ea8SMatthew G. Knepley /* TODO: Docs */
3934bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchGetSubMatType(PC pc, MatType *sub_mat_type)
3944bbf5ea8SMatthew G. Knepley {
3954bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
3964bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
3974bbf5ea8SMatthew G. Knepley   *sub_mat_type = patch->sub_mat_type;
3984bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
3994bbf5ea8SMatthew G. Knepley }
4004bbf5ea8SMatthew G. Knepley 
4014bbf5ea8SMatthew G. Knepley /* TODO: Docs */
4024bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchSetCellNumbering(PC pc, PetscSection cellNumbering)
4034bbf5ea8SMatthew G. Knepley {
4044bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
4054bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
4064bbf5ea8SMatthew G. Knepley 
4074bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
4084bbf5ea8SMatthew G. Knepley   patch->cellNumbering = cellNumbering;
4094bbf5ea8SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) cellNumbering);CHKERRQ(ierr);
4104bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
4114bbf5ea8SMatthew G. Knepley }
4124bbf5ea8SMatthew G. Knepley 
4134bbf5ea8SMatthew G. Knepley /* TODO: Docs */
4144bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchGetCellNumbering(PC pc, PetscSection *cellNumbering)
4154bbf5ea8SMatthew G. Knepley {
4164bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
4174bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
4184bbf5ea8SMatthew G. Knepley   *cellNumbering = patch->cellNumbering;
4194bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
4204bbf5ea8SMatthew G. Knepley }
4214bbf5ea8SMatthew G. Knepley 
4224bbf5ea8SMatthew G. Knepley /* TODO: Docs */
4234bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchSetConstructType(PC pc, PCPatchConstructType ctype, PetscErrorCode (*func)(PC, PetscInt *, IS **, IS *, void *), void *ctx)
4244bbf5ea8SMatthew G. Knepley {
4254bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
4264bbf5ea8SMatthew G. Knepley 
4274bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
4284bbf5ea8SMatthew G. Knepley   patch->ctype = ctype;
4294bbf5ea8SMatthew G. Knepley   switch (ctype) {
4304bbf5ea8SMatthew G. Knepley   case PC_PATCH_STAR:
43140c17a03SPatrick Farrell     patch->user_patches     = PETSC_FALSE;
4324bbf5ea8SMatthew G. Knepley     patch->patchconstructop = PCPatchConstruct_Star;
4334bbf5ea8SMatthew G. Knepley     break;
4344bbf5ea8SMatthew G. Knepley   case PC_PATCH_VANKA:
43540c17a03SPatrick Farrell     patch->user_patches     = PETSC_FALSE;
4364bbf5ea8SMatthew G. Knepley     patch->patchconstructop = PCPatchConstruct_Vanka;
4374bbf5ea8SMatthew G. Knepley     break;
438e5b9877fSPatrick Farrell   case PC_PATCH_PARDECOMP:
4390a390943SPatrick Farrell     patch->user_patches     = PETSC_FALSE;
440e5b9877fSPatrick Farrell     patch->patchconstructop = PCPatchConstruct_Pardecomp;
4410a390943SPatrick Farrell     break;
4424bbf5ea8SMatthew G. Knepley   case PC_PATCH_USER:
4434bbf5ea8SMatthew G. Knepley   case PC_PATCH_PYTHON:
4444bbf5ea8SMatthew G. Knepley     patch->user_patches     = PETSC_TRUE;
4454bbf5ea8SMatthew G. Knepley     patch->patchconstructop = PCPatchConstruct_User;
446bdd9e0cdSPatrick Farrell     if (func) {
4474bbf5ea8SMatthew G. Knepley       patch->userpatchconstructionop = func;
4484bbf5ea8SMatthew G. Knepley       patch->userpatchconstructctx   = ctx;
449bdd9e0cdSPatrick Farrell     }
4504bbf5ea8SMatthew G. Knepley     break;
4514bbf5ea8SMatthew G. Knepley   default:
4524bbf5ea8SMatthew G. Knepley     SETERRQ1(PetscObjectComm((PetscObject) pc), PETSC_ERR_USER, "Unknown patch construction type %D", (PetscInt) patch->ctype);
4534bbf5ea8SMatthew G. Knepley   }
4544bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
4554bbf5ea8SMatthew G. Knepley }
4564bbf5ea8SMatthew G. Knepley 
4574bbf5ea8SMatthew G. Knepley /* TODO: Docs */
4584bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchGetConstructType(PC pc, PCPatchConstructType *ctype, PetscErrorCode (**func)(PC, PetscInt *, IS **, IS *, void *), void **ctx)
4594bbf5ea8SMatthew G. Knepley {
4604bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
4614bbf5ea8SMatthew G. Knepley 
4624bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
4634bbf5ea8SMatthew G. Knepley   *ctype = patch->ctype;
4644bbf5ea8SMatthew G. Knepley   switch (patch->ctype) {
4654bbf5ea8SMatthew G. Knepley   case PC_PATCH_STAR:
4664bbf5ea8SMatthew G. Knepley   case PC_PATCH_VANKA:
467e5b9877fSPatrick Farrell   case PC_PATCH_PARDECOMP:
4684bbf5ea8SMatthew G. Knepley     break;
4694bbf5ea8SMatthew G. Knepley   case PC_PATCH_USER:
4704bbf5ea8SMatthew G. Knepley   case PC_PATCH_PYTHON:
4714bbf5ea8SMatthew G. Knepley     *func = patch->userpatchconstructionop;
4724bbf5ea8SMatthew G. Knepley     *ctx  = patch->userpatchconstructctx;
4734bbf5ea8SMatthew G. Knepley     break;
4744bbf5ea8SMatthew G. Knepley   default:
4754bbf5ea8SMatthew G. Knepley     SETERRQ1(PetscObjectComm((PetscObject) pc), PETSC_ERR_USER, "Unknown patch construction type %D", (PetscInt) patch->ctype);
4764bbf5ea8SMatthew G. Knepley   }
4774bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
4784bbf5ea8SMatthew G. Knepley }
4794bbf5ea8SMatthew G. Knepley 
4804bbf5ea8SMatthew G. Knepley /* TODO: Docs */
4814bbf5ea8SMatthew G. Knepley PetscErrorCode PCPatchSetDiscretisationInfo(PC pc, PetscInt nsubspaces, DM *dms, PetscInt *bs, PetscInt *nodesPerCell, const PetscInt **cellNodeMap,
4824bbf5ea8SMatthew G. Knepley                                             const PetscInt *subspaceOffsets, PetscInt numGhostBcs, const PetscInt *ghostBcNodes, PetscInt numGlobalBcs, const PetscInt *globalBcNodes)
4834bbf5ea8SMatthew G. Knepley {
4844bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
4855f824522SMatthew G. Knepley   DM             dm;
4864bbf5ea8SMatthew G. Knepley   PetscSF       *sfs;
4875f824522SMatthew G. Knepley   PetscInt       cStart, cEnd, i, j;
4884bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
4894bbf5ea8SMatthew G. Knepley 
4904bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
4915f824522SMatthew G. Knepley   ierr = PCGetDM(pc, &dm);CHKERRQ(ierr);
4925f824522SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
4934bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(nsubspaces, &sfs);CHKERRQ(ierr);
4944bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(nsubspaces, &patch->dofSection);CHKERRQ(ierr);
4954bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(nsubspaces, &patch->bs);CHKERRQ(ierr);
4964bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(nsubspaces, &patch->nodesPerCell);CHKERRQ(ierr);
4974bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(nsubspaces, &patch->cellNodeMap);CHKERRQ(ierr);
4984bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(nsubspaces+1, &patch->subspaceOffsets);CHKERRQ(ierr);
4994bbf5ea8SMatthew G. Knepley 
5004bbf5ea8SMatthew G. Knepley   patch->nsubspaces       = nsubspaces;
5014bbf5ea8SMatthew G. Knepley   patch->totalDofsPerCell = 0;
5024bbf5ea8SMatthew G. Knepley   for (i = 0; i < nsubspaces; ++i) {
5034bbf5ea8SMatthew G. Knepley     ierr = DMGetDefaultSection(dms[i], &patch->dofSection[i]);CHKERRQ(ierr);
5044bbf5ea8SMatthew G. Knepley     ierr = PetscObjectReference((PetscObject) patch->dofSection[i]);CHKERRQ(ierr);
5054bbf5ea8SMatthew G. Knepley     ierr = DMGetDefaultSF(dms[i], &sfs[i]);CHKERRQ(ierr);
5064bbf5ea8SMatthew G. Knepley     patch->bs[i]              = bs[i];
5074bbf5ea8SMatthew G. Knepley     patch->nodesPerCell[i]    = nodesPerCell[i];
5084bbf5ea8SMatthew G. Knepley     patch->totalDofsPerCell  += nodesPerCell[i]*bs[i];
50980e8a965SFlorian Wechsung     ierr = PetscMalloc1((cEnd-cStart)*nodesPerCell[i], &patch->cellNodeMap[i]);CHKERRQ(ierr);
51080e8a965SFlorian Wechsung     for (j = 0; j < (cEnd-cStart)*nodesPerCell[i]; ++j) patch->cellNodeMap[i][j] = cellNodeMap[i][j];
5114bbf5ea8SMatthew G. Knepley     patch->subspaceOffsets[i] = subspaceOffsets[i];
5124bbf5ea8SMatthew G. Knepley   }
5134bbf5ea8SMatthew G. Knepley   ierr = PCPatchCreateDefaultSF_Private(pc, nsubspaces, sfs, patch->bs);CHKERRQ(ierr);
5144bbf5ea8SMatthew G. Knepley   ierr = PetscFree(sfs);CHKERRQ(ierr);
5154bbf5ea8SMatthew G. Knepley 
5164bbf5ea8SMatthew G. Knepley   patch->subspaceOffsets[nsubspaces] = subspaceOffsets[nsubspaces];
5174bbf5ea8SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numGhostBcs, ghostBcNodes, PETSC_COPY_VALUES, &patch->ghostBcNodes);CHKERRQ(ierr);
5184bbf5ea8SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numGlobalBcs, globalBcNodes, PETSC_COPY_VALUES, &patch->globalBcNodes);CHKERRQ(ierr);
5194bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
5204bbf5ea8SMatthew G. Knepley }
5214bbf5ea8SMatthew G. Knepley 
5224bbf5ea8SMatthew G. Knepley /* TODO: Docs */
5235f824522SMatthew G. Knepley PetscErrorCode PCPatchSetDiscretisationInfoCombined(PC pc, DM dm, PetscInt *nodesPerCell, const PetscInt **cellNodeMap, PetscInt numGhostBcs, const PetscInt *ghostBcNodes, PetscInt numGlobalBcs, const PetscInt *globalBcNodes)
5245f824522SMatthew G. Knepley {
5255f824522SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
5265f824522SMatthew G. Knepley   PetscInt       cStart, cEnd, i, j;
5275f824522SMatthew G. Knepley   PetscErrorCode ierr;
5285f824522SMatthew G. Knepley 
5295f824522SMatthew G. Knepley   PetscFunctionBegin;
5305f824522SMatthew G. Knepley   patch->combined = PETSC_TRUE;
5315f824522SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
5325f824522SMatthew G. Knepley   ierr = DMGetNumFields(dm, &patch->nsubspaces);CHKERRQ(ierr);
5335f824522SMatthew G. Knepley   ierr = PetscCalloc1(patch->nsubspaces, &patch->dofSection);CHKERRQ(ierr);
5345f824522SMatthew G. Knepley   ierr = PetscMalloc1(patch->nsubspaces, &patch->bs);CHKERRQ(ierr);
5355f824522SMatthew G. Knepley   ierr = PetscMalloc1(patch->nsubspaces, &patch->nodesPerCell);CHKERRQ(ierr);
5365f824522SMatthew G. Knepley   ierr = PetscMalloc1(patch->nsubspaces, &patch->cellNodeMap);CHKERRQ(ierr);
5375f824522SMatthew G. Knepley   ierr = PetscCalloc1(patch->nsubspaces+1, &patch->subspaceOffsets);CHKERRQ(ierr);
5385f824522SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &patch->dofSection[0]);CHKERRQ(ierr);
5395f824522SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) patch->dofSection[0]);CHKERRQ(ierr);
5405f824522SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(patch->dofSection[0], &patch->subspaceOffsets[patch->nsubspaces]);CHKERRQ(ierr);
5415f824522SMatthew G. Knepley   patch->totalDofsPerCell = 0;
5425f824522SMatthew G. Knepley   for (i = 0; i < patch->nsubspaces; ++i) {
5435f824522SMatthew G. Knepley     patch->bs[i]             = 1;
5445f824522SMatthew G. Knepley     patch->nodesPerCell[i]   = nodesPerCell[i];
5455f824522SMatthew G. Knepley     patch->totalDofsPerCell += nodesPerCell[i];
5465f824522SMatthew G. Knepley     ierr = PetscMalloc1((cEnd-cStart)*nodesPerCell[i], &patch->cellNodeMap[i]);CHKERRQ(ierr);
5475f824522SMatthew G. Knepley     for (j = 0; j < (cEnd-cStart)*nodesPerCell[i]; ++j) patch->cellNodeMap[i][j] = cellNodeMap[i][j];
5485f824522SMatthew G. Knepley   }
5495f824522SMatthew G. Knepley   ierr = DMGetDefaultSF(dm, &patch->defaultSF);CHKERRQ(ierr);
5505f824522SMatthew G. Knepley   ierr = PetscObjectReference((PetscObject) patch->defaultSF);CHKERRQ(ierr);
5515f824522SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numGhostBcs, ghostBcNodes, PETSC_COPY_VALUES, &patch->ghostBcNodes);CHKERRQ(ierr);
5525f824522SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numGlobalBcs, globalBcNodes, PETSC_COPY_VALUES, &patch->globalBcNodes);CHKERRQ(ierr);
5535f824522SMatthew G. Knepley   PetscFunctionReturn(0);
5545f824522SMatthew G. Knepley }
5555f824522SMatthew G. Knepley 
5565f824522SMatthew G. Knepley /*@C
5575f824522SMatthew G. Knepley 
55892d50984SMatthew G. Knepley   PCPatchSetComputeFunction - Set the callback used to compute patch residuals
55992d50984SMatthew G. Knepley 
56092d50984SMatthew G. Knepley   Input Parameters:
56192d50984SMatthew G. Knepley + pc   - The PC
56292d50984SMatthew G. Knepley . func - The callback
56392d50984SMatthew G. Knepley - ctx  - The user context
56492d50984SMatthew G. Knepley 
56592d50984SMatthew G. Knepley   Level: advanced
56692d50984SMatthew G. Knepley 
56792d50984SMatthew G. Knepley   Note:
56892d50984SMatthew G. Knepley   The callback has signature:
56992d50984SMatthew G. Knepley +  usercomputef(pc, point, x, f, cellIS, n, u, ctx)
57092d50984SMatthew G. Knepley +  pc     - The PC
57192d50984SMatthew G. Knepley +  point  - The point
57292d50984SMatthew G. Knepley +  x      - The input solution (not used in linear problems)
57392d50984SMatthew G. Knepley +  f      - The patch residual vector
57492d50984SMatthew G. Knepley +  cellIS - An array of the cell numbers
57592d50984SMatthew G. Knepley +  n      - The size of g2l
57692d50984SMatthew G. Knepley +  g2l    - The global to local dof translation table
57792d50984SMatthew G. Knepley +  ctx    - The user context
57892d50984SMatthew G. Knepley   and can assume that the matrix entries have been set to zero before the call.
57992d50984SMatthew G. Knepley 
58092d50984SMatthew G. Knepley .seealso: PCPatchSetComputeOperator(), PCPatchGetComputeOperator(), PCPatchSetDiscretisationInfo()
58192d50984SMatthew G. Knepley @*/
58239fd2e8aSPatrick Farrell PetscErrorCode PCPatchSetComputeFunction(PC pc, PetscErrorCode (*func)(PC, PetscInt, Vec, Vec, IS, PetscInt, const PetscInt *, const PetscInt *, void *), void *ctx)
58392d50984SMatthew G. Knepley {
58492d50984SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
58592d50984SMatthew G. Knepley 
58692d50984SMatthew G. Knepley   PetscFunctionBegin;
58792d50984SMatthew G. Knepley   patch->usercomputef    = func;
58892d50984SMatthew G. Knepley   patch->usercomputefctx = ctx;
58992d50984SMatthew G. Knepley   PetscFunctionReturn(0);
59092d50984SMatthew G. Knepley }
59192d50984SMatthew G. Knepley 
59292d50984SMatthew G. Knepley /*@C
59392d50984SMatthew G. Knepley 
59459109abcSLawrence Mitchell   PCPatchSetComputeFunctionInteriorFacets - Set the callback used to compute facet integrals for patch residuals
59559109abcSLawrence Mitchell 
59659109abcSLawrence Mitchell   Input Parameters:
59759109abcSLawrence Mitchell + pc   - The PC
59859109abcSLawrence Mitchell . func - The callback
59959109abcSLawrence Mitchell - ctx  - The user context
60059109abcSLawrence Mitchell 
60159109abcSLawrence Mitchell   Level: advanced
60259109abcSLawrence Mitchell 
60359109abcSLawrence Mitchell   Note:
60459109abcSLawrence Mitchell   The callback has signature:
60559109abcSLawrence Mitchell +  usercomputef(pc, point, x, f, facetIS, n, u, ctx)
60659109abcSLawrence Mitchell +  pc     - The PC
60759109abcSLawrence Mitchell +  point  - The point
60859109abcSLawrence Mitchell +  x      - The input solution (not used in linear problems)
60959109abcSLawrence Mitchell +  f      - The patch residual vector
61059109abcSLawrence Mitchell +  facetIS - An array of the facet numbers
61159109abcSLawrence Mitchell +  n      - The size of g2l
61259109abcSLawrence Mitchell +  g2l    - The global to local dof translation table
61359109abcSLawrence Mitchell +  ctx    - The user context
61459109abcSLawrence Mitchell   and can assume that the matrix entries have been set to zero before the call.
61559109abcSLawrence Mitchell 
61659109abcSLawrence Mitchell .seealso: PCPatchSetComputeOperator(), PCPatchGetComputeOperator(), PCPatchSetDiscretisationInfo()
61759109abcSLawrence Mitchell @*/
61859109abcSLawrence Mitchell PetscErrorCode PCPatchSetComputeFunctionInteriorFacets(PC pc, PetscErrorCode (*func)(PC, PetscInt, Vec, Vec, IS, PetscInt, const PetscInt *, const PetscInt *, void *), void *ctx)
61959109abcSLawrence Mitchell {
62059109abcSLawrence Mitchell   PC_PATCH *patch = (PC_PATCH *) pc->data;
62159109abcSLawrence Mitchell 
62259109abcSLawrence Mitchell   PetscFunctionBegin;
62359109abcSLawrence Mitchell   patch->usercomputefintfacet    = func;
62459109abcSLawrence Mitchell   patch->usercomputefintfacetctx = ctx;
62559109abcSLawrence Mitchell   PetscFunctionReturn(0);
62659109abcSLawrence Mitchell }
62759109abcSLawrence Mitchell 
62859109abcSLawrence Mitchell /*@C
62959109abcSLawrence Mitchell 
6305f824522SMatthew G. Knepley   PCPatchSetComputeOperator - Set the callback used to compute patch matrices
6315f824522SMatthew G. Knepley 
6325f824522SMatthew G. Knepley   Input Parameters:
6335f824522SMatthew G. Knepley + pc   - The PC
6345f824522SMatthew G. Knepley . func - The callback
6355f824522SMatthew G. Knepley - ctx  - The user context
6365f824522SMatthew G. Knepley 
6375f824522SMatthew G. Knepley   Level: advanced
6385f824522SMatthew G. Knepley 
6395f824522SMatthew G. Knepley   Note:
6405f824522SMatthew G. Knepley   The callback has signature:
641723f9013SMatthew G. Knepley +  usercomputeop(pc, point, x, mat, cellIS, n, u, ctx)
6425f824522SMatthew G. Knepley +  pc     - The PC
643bdd9e0cdSPatrick Farrell +  point  - The point
644723f9013SMatthew G. Knepley +  x      - The input solution (not used in linear problems)
6455f824522SMatthew G. Knepley +  mat    - The patch matrix
6466f158342SMatthew G. Knepley +  cellIS - An array of the cell numbers
6475f824522SMatthew G. Knepley +  n      - The size of g2l
6485f824522SMatthew G. Knepley +  g2l    - The global to local dof translation table
6495f824522SMatthew G. Knepley +  ctx    - The user context
6505f824522SMatthew G. Knepley   and can assume that the matrix entries have been set to zero before the call.
6515f824522SMatthew G. Knepley 
652723f9013SMatthew G. Knepley .seealso: PCPatchGetComputeOperator(), PCPatchSetComputeFunction(), PCPatchSetDiscretisationInfo()
6535f824522SMatthew G. Knepley @*/
6544d04e9f1SPatrick Farrell PetscErrorCode PCPatchSetComputeOperator(PC pc, PetscErrorCode (*func)(PC, PetscInt, Vec, Mat, IS, PetscInt, const PetscInt *, const PetscInt *, void *), void *ctx)
6554bbf5ea8SMatthew G. Knepley {
6564bbf5ea8SMatthew G. Knepley   PC_PATCH *patch = (PC_PATCH *) pc->data;
6574bbf5ea8SMatthew G. Knepley 
6584bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
6594bbf5ea8SMatthew G. Knepley   patch->usercomputeop    = func;
660723f9013SMatthew G. Knepley   patch->usercomputeopctx = ctx;
6614bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
6624bbf5ea8SMatthew G. Knepley }
6634bbf5ea8SMatthew G. Knepley 
66459109abcSLawrence Mitchell /*@C
66559109abcSLawrence Mitchell 
66659109abcSLawrence Mitchell   PCPatchSetComputeOperator - Set the callback used to compute facet integrals for patch matrices
66759109abcSLawrence Mitchell 
66859109abcSLawrence Mitchell   Input Parameters:
66959109abcSLawrence Mitchell + pc   - The PC
67059109abcSLawrence Mitchell . func - The callback
67159109abcSLawrence Mitchell - ctx  - The user context
67259109abcSLawrence Mitchell 
67359109abcSLawrence Mitchell   Level: advanced
67459109abcSLawrence Mitchell 
67559109abcSLawrence Mitchell   Note:
67659109abcSLawrence Mitchell   The callback has signature:
67759109abcSLawrence Mitchell +  usercomputeopintfacet(pc, point, x, mat, facetIS, n, u, ctx)
67859109abcSLawrence Mitchell +  pc     - The PC
67959109abcSLawrence Mitchell +  point  - The point
68059109abcSLawrence Mitchell +  x      - The input solution (not used in linear problems)
68159109abcSLawrence Mitchell +  mat    - The patch matrix
68259109abcSLawrence Mitchell +  facetIS - An IS of the facet numbers
68359109abcSLawrence Mitchell +  n      - The size of g2l
68459109abcSLawrence Mitchell +  g2l    - The global to local dof translation table
68559109abcSLawrence Mitchell +  ctx    - The user context
68659109abcSLawrence Mitchell   and can assume that the matrix entries have been set to zero before the call.
68759109abcSLawrence Mitchell 
68859109abcSLawrence Mitchell .seealso: PCPatchGetComputeOperator(), PCPatchSetComputeFunction(), PCPatchSetDiscretisationInfo()
68959109abcSLawrence Mitchell @*/
69059109abcSLawrence Mitchell PetscErrorCode PCPatchSetComputeOperatorInteriorFacets(PC pc, PetscErrorCode (*func)(PC, PetscInt, Vec, Mat, IS, PetscInt, const PetscInt *, const PetscInt *, void *), void *ctx)
69159109abcSLawrence Mitchell {
69259109abcSLawrence Mitchell   PC_PATCH *patch = (PC_PATCH *) pc->data;
69359109abcSLawrence Mitchell 
69459109abcSLawrence Mitchell   PetscFunctionBegin;
69559109abcSLawrence Mitchell   patch->usercomputeopintfacet    = func;
69659109abcSLawrence Mitchell   patch->usercomputeopintfacetctx = ctx;
69759109abcSLawrence Mitchell   PetscFunctionReturn(0);
69859109abcSLawrence Mitchell }
69959109abcSLawrence Mitchell 
7004bbf5ea8SMatthew G. Knepley /* On entry, ht contains the topological entities whose dofs we are responsible for solving for;
7014bbf5ea8SMatthew G. Knepley    on exit, cht contains all the topological entities we need to compute their residuals.
7024bbf5ea8SMatthew G. Knepley    In full generality this should incorporate knowledge of the sparsity pattern of the matrix;
7034bbf5ea8SMatthew G. Knepley    here we assume a standard FE sparsity pattern.*/
7044bbf5ea8SMatthew G. Knepley /* TODO: Use DMPlexGetAdjacency() */
7051b68eb51SMatthew G. Knepley static PetscErrorCode PCPatchCompleteCellPatch(PC pc, PetscHSetI ht, PetscHSetI cht)
7064bbf5ea8SMatthew G. Knepley {
7075f824522SMatthew G. Knepley   DM             dm;
7081b68eb51SMatthew G. Knepley   PetscHashIter  hi;
7094bbf5ea8SMatthew G. Knepley   PetscInt       point;
7104bbf5ea8SMatthew G. Knepley   PetscInt      *star = NULL, *closure = NULL;
7114c954380SMatthew G. Knepley   PetscInt       ignoredim, iStart = 0, iEnd = -1, starSize, closureSize, si, ci;
7124bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
7134bbf5ea8SMatthew G. Knepley 
7144bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
7155f824522SMatthew G. Knepley   ierr = PCGetDM(pc, &dm);CHKERRQ(ierr);
7165f824522SMatthew G. Knepley   ierr = PCPatchGetIgnoreDim(pc, &ignoredim);CHKERRQ(ierr);
7175f824522SMatthew G. Knepley   if (ignoredim >= 0) {ierr = DMPlexGetDepthStratum(dm, ignoredim, &iStart, &iEnd);CHKERRQ(ierr);}
7181b68eb51SMatthew G. Knepley   ierr = PetscHSetIClear(cht);CHKERRQ(ierr);
7191b68eb51SMatthew G. Knepley   PetscHashIterBegin(ht, hi);
7201b68eb51SMatthew G. Knepley   while (!PetscHashIterAtEnd(ht, hi)) {
7214c954380SMatthew G. Knepley 
7221b68eb51SMatthew G. Knepley     PetscHashIterGetKey(ht, hi, point);
7231b68eb51SMatthew G. Knepley     PetscHashIterNext(ht, hi);
7244bbf5ea8SMatthew G. Knepley 
7254bbf5ea8SMatthew G. Knepley     /* Loop over all the cells that this point connects to */
7264bbf5ea8SMatthew G. Knepley     ierr = DMPlexGetTransitiveClosure(dm, point, PETSC_FALSE, &starSize, &star);CHKERRQ(ierr);
7275f824522SMatthew G. Knepley     for (si = 0; si < starSize*2; si += 2) {
7284c954380SMatthew G. Knepley       const PetscInt ownedpoint = star[si];
7295f824522SMatthew G. Knepley       /* TODO Check for point in cht before running through closure again */
7304bbf5ea8SMatthew G. Knepley       /* now loop over all entities in the closure of that cell */
7314bbf5ea8SMatthew G. Knepley       ierr = DMPlexGetTransitiveClosure(dm, ownedpoint, PETSC_TRUE, &closureSize, &closure);CHKERRQ(ierr);
7325f824522SMatthew G. Knepley       for (ci = 0; ci < closureSize*2; ci += 2) {
7334c954380SMatthew G. Knepley         const PetscInt seenpoint = closure[ci];
7345f824522SMatthew G. Knepley         if (ignoredim >= 0 && seenpoint >= iStart && seenpoint < iEnd) continue;
7351b68eb51SMatthew G. Knepley         ierr = PetscHSetIAdd(cht, seenpoint);CHKERRQ(ierr);
7364bbf5ea8SMatthew G. Knepley       }
7372d76c0eeSPatrick Farrell       ierr = DMPlexRestoreTransitiveClosure(dm, ownedpoint, PETSC_TRUE, NULL, &closure);CHKERRQ(ierr);
7384bbf5ea8SMatthew G. Knepley     }
7392d76c0eeSPatrick Farrell     ierr = DMPlexRestoreTransitiveClosure(dm, point, PETSC_FALSE, NULL, &star);CHKERRQ(ierr);
7404bbf5ea8SMatthew G. Knepley   }
7415f824522SMatthew G. Knepley   PetscFunctionReturn(0);
7425f824522SMatthew G. Knepley }
7435f824522SMatthew G. Knepley 
7445f824522SMatthew G. Knepley static PetscErrorCode PCPatchGetGlobalDofs(PC pc, PetscSection dofSection[], PetscInt f, PetscBool combined, PetscInt p, PetscInt *dof, PetscInt *off)
7455f824522SMatthew G. Knepley {
7465f824522SMatthew G. Knepley   PetscErrorCode ierr;
7475f824522SMatthew G. Knepley 
7485f824522SMatthew G. Knepley   PetscFunctionBegin;
7495f824522SMatthew G. Knepley   if (combined) {
7505f824522SMatthew G. Knepley     if (f < 0) {
7515f824522SMatthew G. Knepley       if (dof) {ierr = PetscSectionGetDof(dofSection[0], p, dof);CHKERRQ(ierr);}
7525f824522SMatthew G. Knepley       if (off) {ierr = PetscSectionGetOffset(dofSection[0], p, off);CHKERRQ(ierr);}
7535f824522SMatthew G. Knepley     } else {
7545f824522SMatthew G. Knepley       if (dof) {ierr = PetscSectionGetFieldDof(dofSection[0], p, f, dof);CHKERRQ(ierr);}
7555f824522SMatthew G. Knepley       if (off) {ierr = PetscSectionGetFieldOffset(dofSection[0], p, f, off);CHKERRQ(ierr);}
7565f824522SMatthew G. Knepley     }
7575f824522SMatthew G. Knepley   } else {
7585f824522SMatthew G. Knepley     if (f < 0) {
7595f824522SMatthew G. Knepley       PC_PATCH *patch = (PC_PATCH *) pc->data;
7605f824522SMatthew G. Knepley       PetscInt  fdof, g;
7615f824522SMatthew G. Knepley 
7625f824522SMatthew G. Knepley       if (dof) {
7635f824522SMatthew G. Knepley         *dof = 0;
7645f824522SMatthew G. Knepley         for (g = 0; g < patch->nsubspaces; ++g) {
7655f824522SMatthew G. Knepley           ierr = PetscSectionGetDof(dofSection[g], p, &fdof);CHKERRQ(ierr);
7665f824522SMatthew G. Knepley           *dof += fdof;
7675f824522SMatthew G. Knepley         }
7685f824522SMatthew G. Knepley       }
769624e31c3SLawrence Mitchell       if (off) {
770624e31c3SLawrence Mitchell         *off = 0;
771624e31c3SLawrence Mitchell         for (g = 0; g < patch->nsubspaces; ++g) {
772624e31c3SLawrence Mitchell           ierr = PetscSectionGetOffset(dofSection[g], p, &fdof);CHKERRQ(ierr);
773624e31c3SLawrence Mitchell           *off += fdof;
774624e31c3SLawrence Mitchell         }
775624e31c3SLawrence Mitchell       }
7765f824522SMatthew G. Knepley     } else {
7775f824522SMatthew G. Knepley       if (dof) {ierr = PetscSectionGetDof(dofSection[f], p, dof);CHKERRQ(ierr);}
7785f824522SMatthew G. Knepley       if (off) {ierr = PetscSectionGetOffset(dofSection[f], p, off);CHKERRQ(ierr);}
7795f824522SMatthew G. Knepley     }
7805f824522SMatthew G. Knepley   }
7814bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
7824bbf5ea8SMatthew G. Knepley }
7834bbf5ea8SMatthew G. Knepley 
7844bbf5ea8SMatthew G. Knepley /* Given a hash table with a set of topological entities (pts), compute the degrees of
7854bbf5ea8SMatthew G. Knepley    freedom in global concatenated numbering on those entities.
7864bbf5ea8SMatthew G. Knepley    For Vanka smoothing, this needs to do something special: ignore dofs of the
7874bbf5ea8SMatthew G. Knepley    constraint subspace on entities that aren't the base entity we're building the patch
7884bbf5ea8SMatthew G. Knepley    around. */
789e4c66b91SPatrick Farrell static PetscErrorCode PCPatchGetPointDofs(PC pc, PetscHSetI pts, PetscHSetI dofs, PetscInt base, PetscHSetI* subspaces_to_exclude)
7904bbf5ea8SMatthew G. Knepley {
7915f824522SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
7921b68eb51SMatthew G. Knepley   PetscHashIter  hi;
7934bbf5ea8SMatthew G. Knepley   PetscInt       ldof, loff;
7944bbf5ea8SMatthew G. Knepley   PetscInt       k, p;
7954bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
7964bbf5ea8SMatthew G. Knepley 
7974bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
7981b68eb51SMatthew G. Knepley   ierr = PetscHSetIClear(dofs);CHKERRQ(ierr);
7994bbf5ea8SMatthew G. Knepley   for (k = 0; k < patch->nsubspaces; ++k) {
8004bbf5ea8SMatthew G. Knepley     PetscInt subspaceOffset = patch->subspaceOffsets[k];
8014bbf5ea8SMatthew G. Knepley     PetscInt bs             = patch->bs[k];
8024bbf5ea8SMatthew G. Knepley     PetscInt j, l;
8034bbf5ea8SMatthew G. Knepley 
804e4c66b91SPatrick Farrell     if (subspaces_to_exclude != NULL) {
805e4c66b91SPatrick Farrell       PetscBool should_exclude_k = PETSC_FALSE;
806e4c66b91SPatrick Farrell       PetscHSetIHas(*subspaces_to_exclude, k, &should_exclude_k);
807e4c66b91SPatrick Farrell       if (should_exclude_k) {
8084bbf5ea8SMatthew G. Knepley         /* only get this subspace dofs at the base entity, not any others */
8095f824522SMatthew G. Knepley         ierr = PCPatchGetGlobalDofs(pc, patch->dofSection, k, patch->combined, base, &ldof, &loff);CHKERRQ(ierr);
8104bbf5ea8SMatthew G. Knepley         if (0 == ldof) continue;
8114bbf5ea8SMatthew G. Knepley         for (j = loff; j < ldof + loff; ++j) {
8124bbf5ea8SMatthew G. Knepley           for (l = 0; l < bs; ++l) {
8134bbf5ea8SMatthew G. Knepley             PetscInt dof = bs*j + l + subspaceOffset;
8141b68eb51SMatthew G. Knepley             ierr = PetscHSetIAdd(dofs, dof);CHKERRQ(ierr);
8154bbf5ea8SMatthew G. Knepley           }
8164bbf5ea8SMatthew G. Knepley         }
8174bbf5ea8SMatthew G. Knepley         continue; /* skip the other dofs of this subspace */
8184bbf5ea8SMatthew G. Knepley       }
819e4c66b91SPatrick Farrell     }
8204bbf5ea8SMatthew G. Knepley 
8211b68eb51SMatthew G. Knepley     PetscHashIterBegin(pts, hi);
8221b68eb51SMatthew G. Knepley     while (!PetscHashIterAtEnd(pts, hi)) {
8231b68eb51SMatthew G. Knepley       PetscHashIterGetKey(pts, hi, p);
8241b68eb51SMatthew G. Knepley       PetscHashIterNext(pts, hi);
8255f824522SMatthew G. Knepley       ierr = PCPatchGetGlobalDofs(pc, patch->dofSection, k, patch->combined, p, &ldof, &loff);CHKERRQ(ierr);
8264bbf5ea8SMatthew G. Knepley       if (0 == ldof) continue;
8274bbf5ea8SMatthew G. Knepley       for (j = loff; j < ldof + loff; ++j) {
8284bbf5ea8SMatthew G. Knepley         for (l = 0; l < bs; ++l) {
8294bbf5ea8SMatthew G. Knepley           PetscInt dof = bs*j + l + subspaceOffset;
8301b68eb51SMatthew G. Knepley           ierr = PetscHSetIAdd(dofs, dof);CHKERRQ(ierr);
8314bbf5ea8SMatthew G. Knepley         }
8324bbf5ea8SMatthew G. Knepley       }
8334bbf5ea8SMatthew G. Knepley     }
8344bbf5ea8SMatthew G. Knepley   }
8354bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
8364bbf5ea8SMatthew G. Knepley }
8374bbf5ea8SMatthew G. Knepley 
8384bbf5ea8SMatthew G. Knepley /* Given two hash tables A and B, compute the keys in B that are not in A, and put them in C */
8391b68eb51SMatthew G. Knepley static PetscErrorCode PCPatchComputeSetDifference_Private(PetscHSetI A, PetscHSetI B, PetscHSetI C)
8404bbf5ea8SMatthew G. Knepley {
8411b68eb51SMatthew G. Knepley   PetscHashIter  hi;
8421b68eb51SMatthew G. Knepley   PetscInt       key;
8434bbf5ea8SMatthew G. Knepley   PetscBool      flg;
8441b68eb51SMatthew G. Knepley   PetscErrorCode ierr;
8454bbf5ea8SMatthew G. Knepley 
8464bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
8471b68eb51SMatthew G. Knepley   ierr = PetscHSetIClear(C);CHKERRQ(ierr);
8481b68eb51SMatthew G. Knepley   PetscHashIterBegin(B, hi);
8491b68eb51SMatthew G. Knepley   while (!PetscHashIterAtEnd(B, hi)) {
8501b68eb51SMatthew G. Knepley     PetscHashIterGetKey(B, hi, key);
8511b68eb51SMatthew G. Knepley     PetscHashIterNext(B, hi);
8521b68eb51SMatthew G. Knepley     ierr = PetscHSetIHas(A, key, &flg);CHKERRQ(ierr);
8531b68eb51SMatthew G. Knepley     if (!flg) {ierr = PetscHSetIAdd(C, key);CHKERRQ(ierr);}
8544bbf5ea8SMatthew G. Knepley   }
8554bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
8564bbf5ea8SMatthew G. Knepley }
8574bbf5ea8SMatthew G. Knepley 
8584bbf5ea8SMatthew G. Knepley /*
8594bbf5ea8SMatthew G. Knepley  * PCPatchCreateCellPatches - create patches.
8604bbf5ea8SMatthew G. Knepley  *
8614bbf5ea8SMatthew G. Knepley  * Input Parameters:
8624bbf5ea8SMatthew G. Knepley  * + dm - The DMPlex object defining the mesh
8634bbf5ea8SMatthew G. Knepley  *
8644bbf5ea8SMatthew G. Knepley  * Output Parameters:
8654bbf5ea8SMatthew G. Knepley  * + cellCounts  - Section with counts of cells around each vertex
8665f824522SMatthew G. Knepley  * . cells       - IS of the cell point indices of cells in each patch
8675f824522SMatthew G. Knepley  * . pointCounts - Section with counts of cells around each vertex
8685f824522SMatthew G. Knepley  * - point       - IS of the cell point indices of cells in each patch
8694bbf5ea8SMatthew G. Knepley  */
8704bbf5ea8SMatthew G. Knepley static PetscErrorCode PCPatchCreateCellPatches(PC pc)
8714bbf5ea8SMatthew G. Knepley {
8724bbf5ea8SMatthew G. Knepley   PC_PATCH       *patch = (PC_PATCH *) pc->data;
8735f824522SMatthew G. Knepley   DMLabel         ghost = NULL;
8744bbf5ea8SMatthew G. Knepley   DM              dm, plex;
8751b68eb51SMatthew G. Knepley   PetscHSetI      ht, cht;
8760e126c0bSLawrence Mitchell   PetscSection    cellCounts,  pointCounts, intFacetCounts, extFacetCounts;
877eb62eeaaSLawrence Mitchell   PetscInt       *cellsArray, *pointsArray, *intFacetsArray, *extFacetsArray, *intFacetsToPatchCell;
8780e126c0bSLawrence Mitchell   PetscInt        numCells, numPoints, numIntFacets, numExtFacets;
8795f824522SMatthew G. Knepley   const PetscInt *leaves;
8805f824522SMatthew G. Knepley   PetscInt        nleaves, pStart, pEnd, cStart, cEnd, vStart, vEnd, v;
8815f824522SMatthew G. Knepley   PetscBool       isFiredrake;
8824bbf5ea8SMatthew G. Knepley   PetscErrorCode  ierr;
8834bbf5ea8SMatthew G. Knepley 
8844bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
8854bbf5ea8SMatthew G. Knepley   /* Used to keep track of the cells in the patch. */
8861b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&ht);CHKERRQ(ierr);
8871b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&cht);CHKERRQ(ierr);
8884bbf5ea8SMatthew G. Knepley 
8894bbf5ea8SMatthew G. Knepley   ierr = PCGetDM(pc, &dm);CHKERRQ(ierr);
8904bbf5ea8SMatthew G. Knepley   if (!dm) SETERRQ(PetscObjectComm((PetscObject) pc), PETSC_ERR_ARG_WRONGSTATE, "DM not yet set on patch PC\n");
8914bbf5ea8SMatthew G. Knepley   ierr = DMConvert(dm, DMPLEX, &plex);CHKERRQ(ierr);
8924bbf5ea8SMatthew G. Knepley   ierr = DMPlexGetChart(plex, &pStart, &pEnd);CHKERRQ(ierr);
8934bbf5ea8SMatthew G. Knepley   ierr = DMPlexGetHeightStratum(plex, 0, &cStart, &cEnd);CHKERRQ(ierr);
8944bbf5ea8SMatthew G. Knepley 
8954bbf5ea8SMatthew G. Knepley   if (patch->user_patches) {
8965f824522SMatthew G. Knepley     ierr = patch->userpatchconstructionop(pc, &patch->npatch, &patch->userIS, &patch->iterationSet, patch->userpatchconstructctx);CHKERRQ(ierr);
8975f824522SMatthew G. Knepley     vStart = 0; vEnd = patch->npatch;
898e5b9877fSPatrick Farrell   } else if (patch->ctype == PC_PATCH_PARDECOMP) {
8990a390943SPatrick Farrell     vStart = 0; vEnd = 1;
9005f824522SMatthew G. Knepley   } else if (patch->codim < 0) {
9015f824522SMatthew G. Knepley     if (patch->dim < 0) {ierr = DMPlexGetDepthStratum(plex,  0,            &vStart, &vEnd);CHKERRQ(ierr);}
9025f824522SMatthew G. Knepley     else                {ierr = DMPlexGetDepthStratum(plex,  patch->dim,   &vStart, &vEnd);CHKERRQ(ierr);}
9035f824522SMatthew G. Knepley   } else                {ierr = DMPlexGetHeightStratum(plex, patch->codim, &vStart, &vEnd);CHKERRQ(ierr);}
9045f824522SMatthew G. Knepley   patch->npatch = vEnd - vStart;
9054bbf5ea8SMatthew G. Knepley 
9064bbf5ea8SMatthew G. Knepley   /* These labels mark the owned points.  We only create patches around points that this process owns. */
9075f824522SMatthew G. Knepley   ierr = DMHasLabel(dm, "pyop2_ghost", &isFiredrake);CHKERRQ(ierr);
9085f824522SMatthew G. Knepley   if (isFiredrake) {
9094bbf5ea8SMatthew G. Knepley     ierr = DMGetLabel(dm, "pyop2_ghost", &ghost);CHKERRQ(ierr);
9104bbf5ea8SMatthew G. Knepley     ierr = DMLabelCreateIndex(ghost, pStart, pEnd);CHKERRQ(ierr);
9115f824522SMatthew G. Knepley   } else {
9125f824522SMatthew G. Knepley     PetscSF sf;
9135f824522SMatthew G. Knepley 
9145f824522SMatthew G. Knepley     ierr = DMGetPointSF(dm, &sf);CHKERRQ(ierr);
9155f824522SMatthew G. Knepley     ierr = PetscSFGetGraph(sf, NULL, &nleaves, &leaves, NULL);CHKERRQ(ierr);
9165f824522SMatthew G. Knepley     nleaves = PetscMax(nleaves, 0);
9175f824522SMatthew G. Knepley   }
9184bbf5ea8SMatthew G. Knepley 
9194bbf5ea8SMatthew G. Knepley   ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->cellCounts);CHKERRQ(ierr);
9205f824522SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) patch->cellCounts, "Patch Cell Layout");CHKERRQ(ierr);
9214bbf5ea8SMatthew G. Knepley   cellCounts = patch->cellCounts;
9224bbf5ea8SMatthew G. Knepley   ierr = PetscSectionSetChart(cellCounts, vStart, vEnd);CHKERRQ(ierr);
9235f824522SMatthew G. Knepley   ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->pointCounts);CHKERRQ(ierr);
9245f824522SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) patch->pointCounts, "Patch Point Layout");CHKERRQ(ierr);
9255f824522SMatthew G. Knepley   pointCounts = patch->pointCounts;
9265f824522SMatthew G. Knepley   ierr = PetscSectionSetChart(pointCounts, vStart, vEnd);CHKERRQ(ierr);
9270e126c0bSLawrence Mitchell   ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->extFacetCounts);CHKERRQ(ierr);
9280e126c0bSLawrence Mitchell   ierr = PetscObjectSetName((PetscObject) patch->extFacetCounts, "Patch Exterior Facet Layout");CHKERRQ(ierr);
9290e126c0bSLawrence Mitchell   extFacetCounts = patch->extFacetCounts;
9300e126c0bSLawrence Mitchell   ierr = PetscSectionSetChart(extFacetCounts, vStart, vEnd);CHKERRQ(ierr);
9310e126c0bSLawrence Mitchell   ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->intFacetCounts);CHKERRQ(ierr);
9320e126c0bSLawrence Mitchell   ierr = PetscObjectSetName((PetscObject) patch->intFacetCounts, "Patch Interior Facet Layout");CHKERRQ(ierr);
9330e126c0bSLawrence Mitchell   intFacetCounts = patch->intFacetCounts;
9340e126c0bSLawrence Mitchell   ierr = PetscSectionSetChart(intFacetCounts, vStart, vEnd);CHKERRQ(ierr);
9355f824522SMatthew G. Knepley   /* Count cells and points in the patch surrounding each entity */
9360e126c0bSLawrence Mitchell   PetscInt       fStart, fEnd;
9370e126c0bSLawrence Mitchell   ierr = DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd);CHKERRQ(ierr);
9384bbf5ea8SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
9391b68eb51SMatthew G. Knepley     PetscHashIter hi;
9405f824522SMatthew G. Knepley     PetscInt       chtSize, loc = -1;
9415f824522SMatthew G. Knepley     PetscBool      flg;
9424bbf5ea8SMatthew G. Knepley 
943b525f888SPatrick Farrell     if (!patch->user_patches && patch->ctype != PC_PATCH_PARDECOMP) {
9445f824522SMatthew G. Knepley       if (ghost) {ierr = DMLabelHasPoint(ghost, v, &flg);CHKERRQ(ierr);}
945928bb9adSStefano Zampini       else       {ierr = PetscFindInt(v, nleaves, leaves, &loc);CHKERRQ(ierr); flg = loc >=0 ? PETSC_TRUE : PETSC_FALSE;}
9464bbf5ea8SMatthew G. Knepley       /* Not an owned entity, don't make a cell patch. */
9474bbf5ea8SMatthew G. Knepley       if (flg) continue;
9484bbf5ea8SMatthew G. Knepley     }
9494bbf5ea8SMatthew G. Knepley 
9504bbf5ea8SMatthew G. Knepley     ierr = patch->patchconstructop((void *) patch, dm, v, ht);CHKERRQ(ierr);
9515f824522SMatthew G. Knepley     ierr = PCPatchCompleteCellPatch(pc, ht, cht);CHKERRQ(ierr);
9521b68eb51SMatthew G. Knepley     ierr = PetscHSetIGetSize(cht, &chtSize);CHKERRQ(ierr);
9534bbf5ea8SMatthew G. Knepley     /* empty patch, continue */
9544bbf5ea8SMatthew G. Knepley     if (chtSize == 0) continue;
9554bbf5ea8SMatthew G. Knepley 
9564bbf5ea8SMatthew G. Knepley     /* safe because size(cht) > 0 from above */
9571b68eb51SMatthew G. Knepley     PetscHashIterBegin(cht, hi);
9581b68eb51SMatthew G. Knepley     while (!PetscHashIterAtEnd(cht, hi)) {
9595f824522SMatthew G. Knepley       PetscInt point, pdof;
9604bbf5ea8SMatthew G. Knepley 
9611b68eb51SMatthew G. Knepley       PetscHashIterGetKey(cht, hi, point);
9620e126c0bSLawrence Mitchell       if (fStart <= point && point < fEnd) {
9630e126c0bSLawrence Mitchell         const PetscInt *support;
9640e126c0bSLawrence Mitchell         PetscInt supportSize, p;
9650e126c0bSLawrence Mitchell         PetscBool interior = PETSC_TRUE;
9660e126c0bSLawrence Mitchell         ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr);
9670e126c0bSLawrence Mitchell         ierr = DMPlexGetSupportSize(dm, point, &supportSize);CHKERRQ(ierr);
9680e126c0bSLawrence Mitchell         if (supportSize == 1) {
9690e126c0bSLawrence Mitchell           interior = PETSC_FALSE;
9700e126c0bSLawrence Mitchell         } else {
9710e126c0bSLawrence Mitchell           for (p = 0; p < supportSize; p++) {
9720e126c0bSLawrence Mitchell             PetscBool found;
9730e126c0bSLawrence Mitchell             /* FIXME: can I do this while iterating over cht? */
9740e126c0bSLawrence Mitchell             PetscHSetIHas(cht, support[p], &found);
9750e126c0bSLawrence Mitchell             if (!found) {
9760e126c0bSLawrence Mitchell               interior = PETSC_FALSE;
9770e126c0bSLawrence Mitchell               break;
9780e126c0bSLawrence Mitchell             }
9790e126c0bSLawrence Mitchell           }
9800e126c0bSLawrence Mitchell         }
9810e126c0bSLawrence Mitchell         if (interior) {
9820e126c0bSLawrence Mitchell           ierr = PetscSectionAddDof(intFacetCounts, v, 1);CHKERRQ(ierr);
9830e126c0bSLawrence Mitchell         } else {
9840e126c0bSLawrence Mitchell           ierr = PetscSectionAddDof(extFacetCounts, v, 1);CHKERRQ(ierr);
9850e126c0bSLawrence Mitchell         }
9860e126c0bSLawrence Mitchell       }
9875f824522SMatthew G. Knepley       ierr = PCPatchGetGlobalDofs(pc, patch->dofSection, -1, patch->combined, point, &pdof, NULL);CHKERRQ(ierr);
9885f824522SMatthew G. Knepley       if (pdof)                            {ierr = PetscSectionAddDof(pointCounts, v, 1);CHKERRQ(ierr);}
9895f824522SMatthew G. Knepley       if (point >= cStart && point < cEnd) {ierr = PetscSectionAddDof(cellCounts, v, 1);CHKERRQ(ierr);}
9901b68eb51SMatthew G. Knepley       PetscHashIterNext(cht, hi);
9914bbf5ea8SMatthew G. Knepley     }
9924bbf5ea8SMatthew G. Knepley   }
9935f824522SMatthew G. Knepley   if (isFiredrake) {ierr = DMLabelDestroyIndex(ghost);CHKERRQ(ierr);}
9944bbf5ea8SMatthew G. Knepley 
9954bbf5ea8SMatthew G. Knepley   ierr = PetscSectionSetUp(cellCounts);CHKERRQ(ierr);
9964bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(cellCounts, &numCells);CHKERRQ(ierr);
9974bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(numCells, &cellsArray);CHKERRQ(ierr);
9985f824522SMatthew G. Knepley   ierr = PetscSectionSetUp(pointCounts);CHKERRQ(ierr);
9995f824522SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(pointCounts, &numPoints);CHKERRQ(ierr);
10005f824522SMatthew G. Knepley   ierr = PetscMalloc1(numPoints, &pointsArray);CHKERRQ(ierr);
10014bbf5ea8SMatthew G. Knepley 
10020e126c0bSLawrence Mitchell   ierr = PetscSectionSetUp(intFacetCounts);CHKERRQ(ierr);
10030e126c0bSLawrence Mitchell   ierr = PetscSectionSetUp(extFacetCounts);CHKERRQ(ierr);
10040e126c0bSLawrence Mitchell   ierr = PetscSectionGetStorageSize(intFacetCounts, &numIntFacets);CHKERRQ(ierr);
10050e126c0bSLawrence Mitchell   ierr = PetscSectionGetStorageSize(extFacetCounts, &numExtFacets);CHKERRQ(ierr);
10060e126c0bSLawrence Mitchell   ierr = PetscMalloc1(numIntFacets, &intFacetsArray);CHKERRQ(ierr);
1007eb62eeaaSLawrence Mitchell   ierr = PetscMalloc1(numIntFacets*2, &intFacetsToPatchCell);CHKERRQ(ierr);
10080e126c0bSLawrence Mitchell   ierr = PetscMalloc1(numExtFacets, &extFacetsArray);CHKERRQ(ierr);
10090e126c0bSLawrence Mitchell 
1010eb62eeaaSLawrence Mitchell 
10114bbf5ea8SMatthew G. Knepley   /* Now that we know how much space we need, run through again and actually remember the cells. */
10124bbf5ea8SMatthew G. Knepley   for (v = vStart; v < vEnd; v++ ) {
10131b68eb51SMatthew G. Knepley     PetscHashIter hi;
10140e126c0bSLawrence Mitchell     PetscInt       dof, off, cdof, coff, efdof, efoff, ifdof, ifoff, pdof, n = 0, cn = 0, ifn = 0, efn = 0;
10154bbf5ea8SMatthew G. Knepley 
10165f824522SMatthew G. Knepley     ierr = PetscSectionGetDof(pointCounts, v, &dof);CHKERRQ(ierr);
10175f824522SMatthew G. Knepley     ierr = PetscSectionGetOffset(pointCounts, v, &off);CHKERRQ(ierr);
10185f824522SMatthew G. Knepley     ierr = PetscSectionGetDof(cellCounts, v, &cdof);CHKERRQ(ierr);
10195f824522SMatthew G. Knepley     ierr = PetscSectionGetOffset(cellCounts, v, &coff);CHKERRQ(ierr);
10200e126c0bSLawrence Mitchell     ierr = PetscSectionGetDof(intFacetCounts, v, &ifdof);CHKERRQ(ierr);
10210e126c0bSLawrence Mitchell     ierr = PetscSectionGetOffset(intFacetCounts, v, &ifoff);CHKERRQ(ierr);
10220e126c0bSLawrence Mitchell     ierr = PetscSectionGetDof(extFacetCounts, v, &efdof);CHKERRQ(ierr);
10230e126c0bSLawrence Mitchell     ierr = PetscSectionGetOffset(extFacetCounts, v, &efoff);CHKERRQ(ierr);
10245f824522SMatthew G. Knepley     if (dof <= 0) continue;
10254bbf5ea8SMatthew G. Knepley     ierr = patch->patchconstructop((void *) patch, dm, v, ht);CHKERRQ(ierr);
10265f824522SMatthew G. Knepley     ierr = PCPatchCompleteCellPatch(pc, ht, cht);CHKERRQ(ierr);
10271b68eb51SMatthew G. Knepley     PetscHashIterBegin(cht, hi);
10281b68eb51SMatthew G. Knepley     while (!PetscHashIterAtEnd(cht, hi)) {
10294bbf5ea8SMatthew G. Knepley       PetscInt point;
10304bbf5ea8SMatthew G. Knepley 
10311b68eb51SMatthew G. Knepley       PetscHashIterGetKey(cht, hi, point);
10320e126c0bSLawrence Mitchell       if (fStart <= point && point < fEnd) {
10330e126c0bSLawrence Mitchell         const PetscInt *support;
10340e126c0bSLawrence Mitchell         PetscInt supportSize, p;
10350e126c0bSLawrence Mitchell         PetscBool interior = PETSC_TRUE;
10360e126c0bSLawrence Mitchell         ierr = DMPlexGetSupport(dm, point, &support);CHKERRQ(ierr);
10370e126c0bSLawrence Mitchell         ierr = DMPlexGetSupportSize(dm, point, &supportSize);CHKERRQ(ierr);
10380e126c0bSLawrence Mitchell         if (supportSize == 1) {
10390e126c0bSLawrence Mitchell           interior = PETSC_FALSE;
10400e126c0bSLawrence Mitchell         } else {
10410e126c0bSLawrence Mitchell           for (p = 0; p < supportSize; p++) {
10420e126c0bSLawrence Mitchell             PetscBool found;
10430e126c0bSLawrence Mitchell             /* FIXME: can I do this while iterating over cht? */
10440e126c0bSLawrence Mitchell             PetscHSetIHas(cht, support[p], &found);
10450e126c0bSLawrence Mitchell             if (!found) {
10460e126c0bSLawrence Mitchell               interior = PETSC_FALSE;
10470e126c0bSLawrence Mitchell               break;
10480e126c0bSLawrence Mitchell             }
10490e126c0bSLawrence Mitchell           }
10500e126c0bSLawrence Mitchell         }
10510e126c0bSLawrence Mitchell         if (interior) {
105244b625f7SLawrence Mitchell           intFacetsToPatchCell[2*(ifoff + ifn)] = support[0];
105344b625f7SLawrence Mitchell           intFacetsToPatchCell[2*(ifoff + ifn) + 1] = support[1];
10540e126c0bSLawrence Mitchell           intFacetsArray[ifoff + ifn++] = point;
10550e126c0bSLawrence Mitchell         } else {
10560e126c0bSLawrence Mitchell           extFacetsArray[efoff + efn++] = point;
10570e126c0bSLawrence Mitchell         }
10580e126c0bSLawrence Mitchell       }
10595f824522SMatthew G. Knepley       ierr = PCPatchGetGlobalDofs(pc, patch->dofSection, -1, patch->combined, point, &pdof, NULL);CHKERRQ(ierr);
10605f824522SMatthew G. Knepley       if (pdof)                            {pointsArray[off + n++] = point;}
10615f824522SMatthew G. Knepley       if (point >= cStart && point < cEnd) {cellsArray[coff + cn++] = point;}
10621b68eb51SMatthew G. Knepley       PetscHashIterNext(cht, hi);
10634bbf5ea8SMatthew G. Knepley     }
10640e126c0bSLawrence Mitchell     if (ifn != ifdof) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Number of interior facets in patch %D is %D, but should be %D", v, ifn, ifdof);
10650e126c0bSLawrence Mitchell     if (efn != efdof) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Number of exterior facets in patch %D is %D, but should be %D", v, efn, efdof);
10665f824522SMatthew G. Knepley     if (cn != cdof) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Number of cells in patch %D is %D, but should be %D", v, cn, cdof);
10675f824522SMatthew G. Knepley     if (n  != dof)  SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Number of points in patch %D is %D, but should be %D", v, n, dof);
1068eb62eeaaSLawrence Mitchell 
1069eb62eeaaSLawrence Mitchell     for (ifn = 0; ifn < ifdof; ifn++) {
107044b625f7SLawrence Mitchell       PetscInt cell0 = intFacetsToPatchCell[2*(ifoff + ifn)];
107144b625f7SLawrence Mitchell       PetscInt cell1 = intFacetsToPatchCell[2*(ifoff + ifn) + 1];
1072eb62eeaaSLawrence Mitchell       PetscBool found0 = PETSC_FALSE, found1 = PETSC_FALSE;
1073eb62eeaaSLawrence Mitchell       for (n = 0; n < cdof; n++) {
10747c54fef0SLawrence Mitchell         if (!found0 && cell0 == cellsArray[coff + n]) {
1075c3faab33SLawrence Mitchell           intFacetsToPatchCell[2*(ifoff + ifn)] = n;
1076eb62eeaaSLawrence Mitchell           found0 = PETSC_TRUE;
1077eb62eeaaSLawrence Mitchell         }
10787c54fef0SLawrence Mitchell         if (!found1 && cell1 == cellsArray[coff + n]) {
1079c3faab33SLawrence Mitchell           intFacetsToPatchCell[2*(ifoff + ifn) + 1] = n;
108080fc4459SLawrence Mitchell           found1 = PETSC_TRUE;
1081eb62eeaaSLawrence Mitchell         }
1082eb62eeaaSLawrence Mitchell         if (found0 && found1) break;
1083eb62eeaaSLawrence Mitchell       }
108444b625f7SLawrence Mitchell       if (!(found0 && found1)) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_SIZ, "Didn't manage to find local point numbers for facet support");
1085eb62eeaaSLawrence Mitchell     }
10864bbf5ea8SMatthew G. Knepley   }
10871b68eb51SMatthew G. Knepley   ierr = PetscHSetIDestroy(&ht);CHKERRQ(ierr);
10881b68eb51SMatthew G. Knepley   ierr = PetscHSetIDestroy(&cht);CHKERRQ(ierr);
10894bbf5ea8SMatthew G. Knepley   ierr = DMDestroy(&plex);CHKERRQ(ierr);
10905f824522SMatthew G. Knepley 
10915f824522SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numCells,  cellsArray,  PETSC_OWN_POINTER, &patch->cells);CHKERRQ(ierr);
10925f824522SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) patch->cells,  "Patch Cells");CHKERRQ(ierr);
10935f824522SMatthew G. Knepley   if (patch->viewCells) {
10945f824522SMatthew G. Knepley     ierr = ObjectView((PetscObject) patch->cellCounts, patch->viewerCells, patch->formatCells);CHKERRQ(ierr);
10955f824522SMatthew G. Knepley     ierr = ObjectView((PetscObject) patch->cells,      patch->viewerCells, patch->formatCells);CHKERRQ(ierr);
10965f824522SMatthew G. Knepley   }
10970e126c0bSLawrence Mitchell   ierr = ISCreateGeneral(PETSC_COMM_SELF, numIntFacets,  intFacetsArray,  PETSC_OWN_POINTER, &patch->intFacets);CHKERRQ(ierr);
10980e126c0bSLawrence Mitchell   ierr = PetscObjectSetName((PetscObject) patch->intFacets,  "Patch Interior Facets");CHKERRQ(ierr);
1099eb62eeaaSLawrence Mitchell   ierr = ISCreateGeneral(PETSC_COMM_SELF, 2*numIntFacets, intFacetsToPatchCell, PETSC_OWN_POINTER, &patch->intFacetsToPatchCell);CHKERRQ(ierr);
1100eb62eeaaSLawrence Mitchell   ierr = PetscObjectSetName((PetscObject) patch->intFacetsToPatchCell,  "Patch Interior Facets local support");CHKERRQ(ierr);
11010e126c0bSLawrence Mitchell   if (patch->viewIntFacets) {
1102fbb82ab5SLawrence Mitchell     ierr = ObjectView((PetscObject) patch->intFacetCounts,       patch->viewerIntFacets, patch->formatIntFacets);CHKERRQ(ierr);
11030e126c0bSLawrence Mitchell     ierr = ObjectView((PetscObject) patch->intFacets,            patch->viewerIntFacets, patch->formatIntFacets);CHKERRQ(ierr);
1104eb62eeaaSLawrence Mitchell     ierr = ObjectView((PetscObject) patch->intFacetsToPatchCell, patch->viewerIntFacets, patch->formatIntFacets);CHKERRQ(ierr);
11050e126c0bSLawrence Mitchell   }
11060e126c0bSLawrence Mitchell   ierr = ISCreateGeneral(PETSC_COMM_SELF, numExtFacets,  extFacetsArray,  PETSC_OWN_POINTER, &patch->extFacets);CHKERRQ(ierr);
11070e126c0bSLawrence Mitchell   ierr = PetscObjectSetName((PetscObject) patch->extFacets,  "Patch Exterior Facets");CHKERRQ(ierr);
11080e126c0bSLawrence Mitchell   if (patch->viewExtFacets) {
1109fbb82ab5SLawrence Mitchell     ierr = ObjectView((PetscObject) patch->extFacetCounts, patch->viewerExtFacets, patch->formatExtFacets);CHKERRQ(ierr);
11100e126c0bSLawrence Mitchell     ierr = ObjectView((PetscObject) patch->extFacets,      patch->viewerExtFacets, patch->formatExtFacets);CHKERRQ(ierr);
11110e126c0bSLawrence Mitchell   }
11125f824522SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numPoints, pointsArray, PETSC_OWN_POINTER, &patch->points);CHKERRQ(ierr);
11135f824522SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) patch->points, "Patch Points");CHKERRQ(ierr);
11145f824522SMatthew G. Knepley   if (patch->viewPoints) {
11155f824522SMatthew G. Knepley     ierr = ObjectView((PetscObject) patch->pointCounts, patch->viewerPoints, patch->formatPoints);CHKERRQ(ierr);
11165f824522SMatthew G. Knepley     ierr = ObjectView((PetscObject) patch->points,      patch->viewerPoints, patch->formatPoints);CHKERRQ(ierr);
11175f824522SMatthew G. Knepley   }
11184bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
11194bbf5ea8SMatthew G. Knepley }
11204bbf5ea8SMatthew G. Knepley 
11214bbf5ea8SMatthew G. Knepley /*
11224bbf5ea8SMatthew G. Knepley  * PCPatchCreateCellPatchDiscretisationInfo - Build the dof maps for cell patches
11234bbf5ea8SMatthew G. Knepley  *
11244bbf5ea8SMatthew G. Knepley  * Input Parameters:
11254bbf5ea8SMatthew G. Knepley  * + dm - The DMPlex object defining the mesh
11264bbf5ea8SMatthew G. Knepley  * . cellCounts - Section with counts of cells around each vertex
11274bbf5ea8SMatthew G. Knepley  * . cells - IS of the cell point indices of cells in each patch
11284bbf5ea8SMatthew G. Knepley  * . cellNumbering - Section mapping plex cell points to Firedrake cell indices.
11294bbf5ea8SMatthew G. Knepley  * . nodesPerCell - number of nodes per cell.
11304bbf5ea8SMatthew G. Knepley  * - cellNodeMap - map from cells to node indices (nodesPerCell * numCells)
11314bbf5ea8SMatthew G. Knepley  *
11324bbf5ea8SMatthew G. Knepley  * Output Parameters:
11335f824522SMatthew G. Knepley  * + dofs - IS of local dof numbers of each cell in the patch, where local is a patch local numbering
11344bbf5ea8SMatthew G. Knepley  * . gtolCounts - Section with counts of dofs per cell patch
11354bbf5ea8SMatthew G. Knepley  * - gtol - IS mapping from global dofs to local dofs for each patch.
11364bbf5ea8SMatthew G. Knepley  */
11374bbf5ea8SMatthew G. Knepley static PetscErrorCode PCPatchCreateCellPatchDiscretisationInfo(PC pc)
11384bbf5ea8SMatthew G. Knepley {
11394bbf5ea8SMatthew G. Knepley   PC_PATCH       *patch           = (PC_PATCH *) pc->data;
11404bbf5ea8SMatthew G. Knepley   PetscSection    cellCounts      = patch->cellCounts;
11415f824522SMatthew G. Knepley   PetscSection    pointCounts     = patch->pointCounts;
11420904074fSPatrick Farrell   PetscSection    gtolCounts, gtolCountsWithArtificial = NULL, gtolCountsWithAll = NULL;
11434bbf5ea8SMatthew G. Knepley   IS              cells           = patch->cells;
11445f824522SMatthew G. Knepley   IS              points          = patch->points;
11454bbf5ea8SMatthew G. Knepley   PetscSection    cellNumbering   = patch->cellNumbering;
11465f824522SMatthew G. Knepley   PetscInt        Nf              = patch->nsubspaces;
11475f824522SMatthew G. Knepley   PetscInt        numCells, numPoints;
11484bbf5ea8SMatthew G. Knepley   PetscInt        numDofs;
11490904074fSPatrick Farrell   PetscInt        numGlobalDofs, numGlobalDofsWithArtificial, numGlobalDofsWithAll;
11504bbf5ea8SMatthew G. Knepley   PetscInt        totalDofsPerCell = patch->totalDofsPerCell;
11514bbf5ea8SMatthew G. Knepley   PetscInt        vStart, vEnd, v;
11525f824522SMatthew G. Knepley   const PetscInt *cellsArray, *pointsArray;
11534bbf5ea8SMatthew G. Knepley   PetscInt       *newCellsArray   = NULL;
11544bbf5ea8SMatthew G. Knepley   PetscInt       *dofsArray       = NULL;
1155c2e6f3c0SFlorian Wechsung   PetscInt       *dofsArrayWithArtificial = NULL;
11560904074fSPatrick Farrell   PetscInt       *dofsArrayWithAll = NULL;
11575f824522SMatthew G. Knepley   PetscInt       *offsArray       = NULL;
1158c2e6f3c0SFlorian Wechsung   PetscInt       *offsArrayWithArtificial = NULL;
11590904074fSPatrick Farrell   PetscInt       *offsArrayWithAll = NULL;
11604bbf5ea8SMatthew G. Knepley   PetscInt       *asmArray        = NULL;
1161c2e6f3c0SFlorian Wechsung   PetscInt       *asmArrayWithArtificial = NULL;
11620904074fSPatrick Farrell   PetscInt       *asmArrayWithAll = NULL;
11634bbf5ea8SMatthew G. Knepley   PetscInt       *globalDofsArray = NULL;
1164c2e6f3c0SFlorian Wechsung   PetscInt       *globalDofsArrayWithArtificial = NULL;
11650904074fSPatrick Farrell   PetscInt       *globalDofsArrayWithAll = NULL;
11664bbf5ea8SMatthew G. Knepley   PetscInt        globalIndex     = 0;
11674bbf5ea8SMatthew G. Knepley   PetscInt        key             = 0;
11684bbf5ea8SMatthew G. Knepley   PetscInt        asmKey          = 0;
1169557beb66SLawrence Mitchell   DM              dm              = NULL;
1170557beb66SLawrence Mitchell   const PetscInt *bcNodes         = NULL;
11711b68eb51SMatthew G. Knepley   PetscHMapI      ht;
1172c2e6f3c0SFlorian Wechsung   PetscHMapI      htWithArtificial;
11730904074fSPatrick Farrell   PetscHMapI      htWithAll;
11741b68eb51SMatthew G. Knepley   PetscHSetI      globalBcs;
1175557beb66SLawrence Mitchell   PetscInt        numBcs;
11761b68eb51SMatthew G. Knepley   PetscHSetI      ownedpts, seenpts, owneddofs, seendofs, artificialbcs;
1177cda239d9SMatthew G. Knepley   PetscInt        pStart, pEnd, p, i;
117810534d48SPatrick Farrell   char            option[PETSC_MAX_PATH_LEN];
117939fd2e8aSPatrick Farrell   PetscBool       isNonlinear;
11804bbf5ea8SMatthew G. Knepley   PetscErrorCode  ierr;
11814bbf5ea8SMatthew G. Knepley 
11824bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
1183557beb66SLawrence Mitchell 
1184557beb66SLawrence Mitchell   ierr = PCGetDM(pc, &dm); CHKERRQ(ierr);
11854bbf5ea8SMatthew G. Knepley   /* dofcounts section is cellcounts section * dofPerCell */
11864bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(cellCounts, &numCells);CHKERRQ(ierr);
11875f824522SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(patch->pointCounts, &numPoints);CHKERRQ(ierr);
11884bbf5ea8SMatthew G. Knepley   numDofs = numCells * totalDofsPerCell;
11894bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(numDofs, &dofsArray);CHKERRQ(ierr);
11905f824522SMatthew G. Knepley   ierr = PetscMalloc1(numPoints*Nf, &offsArray);CHKERRQ(ierr);
11914bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(numDofs, &asmArray);CHKERRQ(ierr);
11924bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(numCells, &newCellsArray);CHKERRQ(ierr);
11934bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetChart(cellCounts, &vStart, &vEnd);CHKERRQ(ierr);
11944bbf5ea8SMatthew G. Knepley   ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->gtolCounts);CHKERRQ(ierr);
11954bbf5ea8SMatthew G. Knepley   gtolCounts = patch->gtolCounts;
11964bbf5ea8SMatthew G. Knepley   ierr = PetscSectionSetChart(gtolCounts, vStart, vEnd);CHKERRQ(ierr);
11975f824522SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) patch->gtolCounts, "Patch Global Index Section");CHKERRQ(ierr);
11984bbf5ea8SMatthew G. Knepley 
11990904074fSPatrick Farrell   if(patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE)
1200c2e6f3c0SFlorian Wechsung   {
1201f0dcb611SKarl Rupp     ierr = PetscMalloc1(numPoints*Nf, &offsArrayWithArtificial);CHKERRQ(ierr);
1202c2e6f3c0SFlorian Wechsung     ierr = PetscMalloc1(numDofs, &asmArrayWithArtificial);CHKERRQ(ierr);
1203c2e6f3c0SFlorian Wechsung     ierr = PetscMalloc1(numDofs, &dofsArrayWithArtificial);CHKERRQ(ierr);
1204c2e6f3c0SFlorian Wechsung     ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->gtolCountsWithArtificial);CHKERRQ(ierr);
1205c2e6f3c0SFlorian Wechsung     gtolCountsWithArtificial = patch->gtolCountsWithArtificial;
1206c2e6f3c0SFlorian Wechsung     ierr = PetscSectionSetChart(gtolCountsWithArtificial, vStart, vEnd);CHKERRQ(ierr);
1207c2e6f3c0SFlorian Wechsung     ierr = PetscObjectSetName((PetscObject) patch->gtolCountsWithArtificial, "Patch Global Index Section Including Artificial BCs");CHKERRQ(ierr);
1208c2e6f3c0SFlorian Wechsung   }
1209c2e6f3c0SFlorian Wechsung 
12100904074fSPatrick Farrell   isNonlinear = patch->isNonlinear;
12110904074fSPatrick Farrell   if(isNonlinear)
12120904074fSPatrick Farrell   {
12130904074fSPatrick Farrell     ierr = PetscMalloc1(numPoints*Nf, &offsArrayWithAll);CHKERRQ(ierr);
12140904074fSPatrick Farrell     ierr = PetscMalloc1(numDofs, &asmArrayWithAll);CHKERRQ(ierr);
12150904074fSPatrick Farrell     ierr = PetscMalloc1(numDofs, &dofsArrayWithAll);CHKERRQ(ierr);
12160904074fSPatrick Farrell     ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->gtolCountsWithAll);CHKERRQ(ierr);
12170904074fSPatrick Farrell     gtolCountsWithAll = patch->gtolCountsWithAll;
12180904074fSPatrick Farrell     ierr = PetscSectionSetChart(gtolCountsWithAll, vStart, vEnd);CHKERRQ(ierr);
12190904074fSPatrick Farrell     ierr = PetscObjectSetName((PetscObject) patch->gtolCountsWithAll, "Patch Global Index Section Including All BCs");CHKERRQ(ierr);
12200904074fSPatrick Farrell   }
12210904074fSPatrick Farrell 
1222557beb66SLawrence Mitchell   /* Outside the patch loop, get the dofs that are globally-enforced Dirichlet
1223557beb66SLawrence Mitchell    conditions */
12241b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&globalBcs);CHKERRQ(ierr);
1225557beb66SLawrence Mitchell   ierr = ISGetIndices(patch->ghostBcNodes, &bcNodes); CHKERRQ(ierr);
1226557beb66SLawrence Mitchell   ierr = ISGetSize(patch->ghostBcNodes, &numBcs); CHKERRQ(ierr);
1227cda239d9SMatthew G. Knepley   for (i = 0; i < numBcs; ++i) {
12281b68eb51SMatthew G. Knepley     ierr = PetscHSetIAdd(globalBcs, bcNodes[i]);CHKERRQ(ierr); /* these are already in concatenated numbering */
1229557beb66SLawrence Mitchell   }
1230557beb66SLawrence Mitchell   ierr = ISRestoreIndices(patch->ghostBcNodes, &bcNodes); CHKERRQ(ierr);
1231557beb66SLawrence Mitchell   ierr = ISDestroy(&patch->ghostBcNodes); CHKERRQ(ierr); /* memory optimisation */
1232557beb66SLawrence Mitchell 
1233557beb66SLawrence Mitchell   /* Hash tables for artificial BC construction */
12341b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&ownedpts);CHKERRQ(ierr);
12351b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&seenpts);CHKERRQ(ierr);
12361b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&owneddofs);CHKERRQ(ierr);
12371b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&seendofs);CHKERRQ(ierr);
12381b68eb51SMatthew G. Knepley   ierr = PetscHSetICreate(&artificialbcs);CHKERRQ(ierr);
1239557beb66SLawrence Mitchell 
12404bbf5ea8SMatthew G. Knepley   ierr = ISGetIndices(cells, &cellsArray);CHKERRQ(ierr);
12415f824522SMatthew G. Knepley   ierr = ISGetIndices(points, &pointsArray);CHKERRQ(ierr);
12421b68eb51SMatthew G. Knepley   ierr = PetscHMapICreate(&ht);CHKERRQ(ierr);
1243c2e6f3c0SFlorian Wechsung   ierr = PetscHMapICreate(&htWithArtificial);CHKERRQ(ierr);
12440904074fSPatrick Farrell   ierr = PetscHMapICreate(&htWithAll);CHKERRQ(ierr);
12454bbf5ea8SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
12464bbf5ea8SMatthew G. Knepley     PetscInt localIndex = 0;
1247c2e6f3c0SFlorian Wechsung     PetscInt localIndexWithArtificial = 0;
12480904074fSPatrick Farrell     PetscInt localIndexWithAll = 0;
12494bbf5ea8SMatthew G. Knepley     PetscInt dof, off, i, j, k, l;
12504bbf5ea8SMatthew G. Knepley 
12511b68eb51SMatthew G. Knepley     ierr = PetscHMapIClear(ht);CHKERRQ(ierr);
1252c2e6f3c0SFlorian Wechsung     ierr = PetscHMapIClear(htWithArtificial);CHKERRQ(ierr);
12530904074fSPatrick Farrell     ierr = PetscHMapIClear(htWithAll);CHKERRQ(ierr);
12544bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetDof(cellCounts, v, &dof);CHKERRQ(ierr);
12554bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetOffset(cellCounts, v, &off);CHKERRQ(ierr);
12564bbf5ea8SMatthew G. Knepley     if (dof <= 0) continue;
12574bbf5ea8SMatthew G. Knepley 
1258557beb66SLawrence Mitchell     /* Calculate the global numbers of the artificial BC dofs here first */
1259557beb66SLawrence Mitchell     ierr = patch->patchconstructop((void*)patch, dm, v, ownedpts); CHKERRQ(ierr);
1260557beb66SLawrence Mitchell     ierr = PCPatchCompleteCellPatch(pc, ownedpts, seenpts); CHKERRQ(ierr);
1261e4c66b91SPatrick Farrell     ierr = PCPatchGetPointDofs(pc, ownedpts, owneddofs, v, &patch->subspaces_to_exclude); CHKERRQ(ierr);
1262e4c66b91SPatrick Farrell     ierr = PCPatchGetPointDofs(pc, seenpts, seendofs, v, NULL); CHKERRQ(ierr);
1263557beb66SLawrence Mitchell     ierr = PCPatchComputeSetDifference_Private(owneddofs, seendofs, artificialbcs); CHKERRQ(ierr);
12648135ed82SLawrence Mitchell     if (patch->viewPatches) {
12651b68eb51SMatthew G. Knepley       PetscHSetI globalbcdofs;
12661b68eb51SMatthew G. Knepley       PetscHashIter hi;
12678135ed82SLawrence Mitchell       MPI_Comm comm = PetscObjectComm((PetscObject)pc);
12681b68eb51SMatthew G. Knepley 
12691b68eb51SMatthew G. Knepley       ierr = PetscHSetICreate(&globalbcdofs);CHKERRQ(ierr);
12708135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "Patch %d: owned dofs:\n", v); CHKERRQ(ierr);
12711b68eb51SMatthew G. Knepley       PetscHashIterBegin(owneddofs, hi);
12721b68eb51SMatthew G. Knepley       while (!PetscHashIterAtEnd(owneddofs, hi)) {
12738135ed82SLawrence Mitchell         PetscInt globalDof;
12748135ed82SLawrence Mitchell 
12751b68eb51SMatthew G. Knepley         PetscHashIterGetKey(owneddofs, hi, globalDof);
12761b68eb51SMatthew G. Knepley         PetscHashIterNext(owneddofs, hi);
12778135ed82SLawrence Mitchell         ierr = PetscSynchronizedPrintf(comm, "%d ", globalDof); CHKERRQ(ierr);
12788135ed82SLawrence Mitchell       }
12798135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "\n"); CHKERRQ(ierr);
12808135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "Patch %d: seen dofs:\n", v); CHKERRQ(ierr);
12811b68eb51SMatthew G. Knepley       PetscHashIterBegin(seendofs, hi);
12821b68eb51SMatthew G. Knepley       while (!PetscHashIterAtEnd(seendofs, hi)) {
12838135ed82SLawrence Mitchell         PetscInt globalDof;
12848135ed82SLawrence Mitchell         PetscBool flg;
12858135ed82SLawrence Mitchell 
12861b68eb51SMatthew G. Knepley         PetscHashIterGetKey(seendofs, hi, globalDof);
12871b68eb51SMatthew G. Knepley         PetscHashIterNext(seendofs, hi);
12888135ed82SLawrence Mitchell         ierr = PetscSynchronizedPrintf(comm, "%d ", globalDof); CHKERRQ(ierr);
12898135ed82SLawrence Mitchell 
12901b68eb51SMatthew G. Knepley         ierr = PetscHSetIHas(globalBcs, globalDof, &flg);CHKERRQ(ierr);
12911b68eb51SMatthew G. Knepley         if (flg) {ierr = PetscHSetIAdd(globalbcdofs, globalDof);CHKERRQ(ierr);}
12928135ed82SLawrence Mitchell       }
12938135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "\n"); CHKERRQ(ierr);
12948135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "Patch %d: global BCs:\n", v); CHKERRQ(ierr);
12951b68eb51SMatthew G. Knepley       ierr = PetscHSetIGetSize(globalbcdofs, &numBcs);CHKERRQ(ierr);
12968135ed82SLawrence Mitchell       if (numBcs > 0) {
12971b68eb51SMatthew G. Knepley         PetscHashIterBegin(globalbcdofs, hi);
12981b68eb51SMatthew G. Knepley         while (!PetscHashIterAtEnd(globalbcdofs, hi)) {
12998135ed82SLawrence Mitchell           PetscInt globalDof;
13001b68eb51SMatthew G. Knepley           PetscHashIterGetKey(globalbcdofs, hi, globalDof);
13011b68eb51SMatthew G. Knepley           PetscHashIterNext(globalbcdofs, hi);
13028135ed82SLawrence Mitchell           ierr = PetscSynchronizedPrintf(comm, "%d ", globalDof);CHKERRQ(ierr);
13038135ed82SLawrence Mitchell         }
13048135ed82SLawrence Mitchell       }
13058135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "\n");CHKERRQ(ierr);
13068135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "Patch %d: artificial BCs:\n", v);CHKERRQ(ierr);
13071b68eb51SMatthew G. Knepley       ierr = PetscHSetIGetSize(artificialbcs, &numBcs);CHKERRQ(ierr);
13088135ed82SLawrence Mitchell       if (numBcs > 0) {
13091b68eb51SMatthew G. Knepley         PetscHashIterBegin(artificialbcs, hi);
13101b68eb51SMatthew G. Knepley         while (!PetscHashIterAtEnd(artificialbcs, hi)) {
13118135ed82SLawrence Mitchell           PetscInt globalDof;
13121b68eb51SMatthew G. Knepley           PetscHashIterGetKey(artificialbcs, hi, globalDof);
13131b68eb51SMatthew G. Knepley           PetscHashIterNext(artificialbcs, hi);
13148135ed82SLawrence Mitchell           ierr = PetscSynchronizedPrintf(comm, "%d ", globalDof); CHKERRQ(ierr);
13158135ed82SLawrence Mitchell         }
13168135ed82SLawrence Mitchell       }
13178135ed82SLawrence Mitchell       ierr = PetscSynchronizedPrintf(comm, "\n\n"); CHKERRQ(ierr);
13181b68eb51SMatthew G. Knepley       ierr = PetscHSetIDestroy(&globalbcdofs);CHKERRQ(ierr);
13198135ed82SLawrence Mitchell     }
13204bbf5ea8SMatthew G. Knepley    for (k = 0; k < patch->nsubspaces; ++k) {
13214bbf5ea8SMatthew G. Knepley       const PetscInt *cellNodeMap    = patch->cellNodeMap[k];
13224bbf5ea8SMatthew G. Knepley       PetscInt        nodesPerCell   = patch->nodesPerCell[k];
13234bbf5ea8SMatthew G. Knepley       PetscInt        subspaceOffset = patch->subspaceOffsets[k];
13244bbf5ea8SMatthew G. Knepley       PetscInt        bs             = patch->bs[k];
13254bbf5ea8SMatthew G. Knepley 
13264bbf5ea8SMatthew G. Knepley       for (i = off; i < off + dof; ++i) {
13274bbf5ea8SMatthew G. Knepley         /* Walk over the cells in this patch. */
13284bbf5ea8SMatthew G. Knepley         const PetscInt c    = cellsArray[i];
13295f824522SMatthew G. Knepley         PetscInt       cell = c;
13304bbf5ea8SMatthew G. Knepley 
13315f824522SMatthew G. Knepley         /* TODO Change this to an IS */
13325f824522SMatthew G. Knepley         if (cellNumbering) {
13334bbf5ea8SMatthew G. Knepley           ierr = PetscSectionGetDof(cellNumbering, c, &cell);CHKERRQ(ierr);
13344bbf5ea8SMatthew G. Knepley           if (cell <= 0) SETERRQ1(PetscObjectComm((PetscObject) pc), PETSC_ERR_ARG_OUTOFRANGE, "Cell %D doesn't appear in cell numbering map", c);
13354bbf5ea8SMatthew G. Knepley           ierr = PetscSectionGetOffset(cellNumbering, c, &cell);CHKERRQ(ierr);
13365f824522SMatthew G. Knepley         }
13374bbf5ea8SMatthew G. Knepley         newCellsArray[i] = cell;
13384bbf5ea8SMatthew G. Knepley         for (j = 0; j < nodesPerCell; ++j) {
13394bbf5ea8SMatthew G. Knepley           /* For each global dof, map it into contiguous local storage. */
13404bbf5ea8SMatthew G. Knepley           const PetscInt globalDof = cellNodeMap[cell*nodesPerCell + j]*bs + subspaceOffset;
13414bbf5ea8SMatthew G. Knepley           /* finally, loop over block size */
13424bbf5ea8SMatthew G. Knepley           for (l = 0; l < bs; ++l) {
13431b68eb51SMatthew G. Knepley             PetscInt  localDof;
13441b68eb51SMatthew G. Knepley             PetscBool isGlobalBcDof, isArtificialBcDof;
13454bbf5ea8SMatthew G. Knepley 
1346557beb66SLawrence Mitchell             /* first, check if this is either a globally enforced or locally enforced BC dof */
13471b68eb51SMatthew G. Knepley             ierr = PetscHSetIHas(globalBcs, globalDof + l, &isGlobalBcDof);CHKERRQ(ierr);
13481b68eb51SMatthew G. Knepley             ierr = PetscHSetIHas(artificialbcs, globalDof + l, &isArtificialBcDof);CHKERRQ(ierr);
1349557beb66SLawrence Mitchell 
1350557beb66SLawrence Mitchell             /* if it's either, don't ever give it a local dof number */
13511b68eb51SMatthew G. Knepley             if (isGlobalBcDof || isArtificialBcDof) {
1352c2e6f3c0SFlorian Wechsung               dofsArray[globalIndex] = -1; /* don't use this in assembly in this patch */
1353557beb66SLawrence Mitchell             } else {
13541b68eb51SMatthew G. Knepley               ierr = PetscHMapIGet(ht, globalDof + l, &localDof);CHKERRQ(ierr);
13554bbf5ea8SMatthew G. Knepley               if (localDof == -1) {
13564bbf5ea8SMatthew G. Knepley                 localDof = localIndex++;
13571b68eb51SMatthew G. Knepley                 ierr = PetscHMapISet(ht, globalDof + l, localDof);CHKERRQ(ierr);
13584bbf5ea8SMatthew G. Knepley               }
13594bbf5ea8SMatthew G. Knepley               if ( globalIndex >= numDofs ) SETERRQ2(PETSC_COMM_WORLD, PETSC_ERR_ARG_OUTOFRANGE, "Found more dofs %D than expected %D", globalIndex+1, numDofs);
13604bbf5ea8SMatthew G. Knepley               /* And store. */
1361c2e6f3c0SFlorian Wechsung               dofsArray[globalIndex] = localDof;
13624bbf5ea8SMatthew G. Knepley             }
1363c2e6f3c0SFlorian Wechsung 
13640904074fSPatrick Farrell             if(patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1365c2e6f3c0SFlorian Wechsung               if (isGlobalBcDof) {
1366e047a90bSFlorian Wechsung                 dofsArrayWithArtificial[globalIndex] = -1; /* don't use this in assembly in this patch */
1367c2e6f3c0SFlorian Wechsung               } else {
1368c2e6f3c0SFlorian Wechsung                 ierr = PetscHMapIGet(htWithArtificial, globalDof + l, &localDof);CHKERRQ(ierr);
1369c2e6f3c0SFlorian Wechsung                 if (localDof == -1) {
1370c2e6f3c0SFlorian Wechsung                   localDof = localIndexWithArtificial++;
1371c2e6f3c0SFlorian Wechsung                   ierr = PetscHMapISet(htWithArtificial, globalDof + l, localDof);CHKERRQ(ierr);
1372c2e6f3c0SFlorian Wechsung                 }
1373c2e6f3c0SFlorian Wechsung                 if ( globalIndex >= numDofs ) SETERRQ2(PETSC_COMM_WORLD, PETSC_ERR_ARG_OUTOFRANGE, "Found more dofs %D than expected %D", globalIndex+1, numDofs);
1374c2e6f3c0SFlorian Wechsung                 /* And store.*/
1375c2e6f3c0SFlorian Wechsung                 dofsArrayWithArtificial[globalIndex] = localDof;
1376c2e6f3c0SFlorian Wechsung               }
1377c2e6f3c0SFlorian Wechsung             }
13780904074fSPatrick Farrell 
13790904074fSPatrick Farrell             if(isNonlinear) {
13800904074fSPatrick Farrell               /* Build the dofmap for the function space with _all_ dofs,
13810904074fSPatrick Farrell                  including those in any kind of boundary condition */
13820904074fSPatrick Farrell               ierr = PetscHMapIGet(htWithAll, globalDof + l, &localDof);CHKERRQ(ierr);
13830904074fSPatrick Farrell               if (localDof == -1) {
13840904074fSPatrick Farrell                 localDof = localIndexWithAll++;
13850904074fSPatrick Farrell                 ierr = PetscHMapISet(htWithAll, globalDof + l, localDof);CHKERRQ(ierr);
13860904074fSPatrick Farrell               }
13870904074fSPatrick Farrell               if ( globalIndex >= numDofs ) SETERRQ2(PETSC_COMM_WORLD, PETSC_ERR_ARG_OUTOFRANGE, "Found more dofs %D than expected %D", globalIndex+1, numDofs);
13880904074fSPatrick Farrell               /* And store.*/
13890904074fSPatrick Farrell               dofsArrayWithAll[globalIndex] = localDof;
13900904074fSPatrick Farrell             }
1391c2e6f3c0SFlorian Wechsung             globalIndex++;
13924bbf5ea8SMatthew G. Knepley           }
13934bbf5ea8SMatthew G. Knepley         }
13944bbf5ea8SMatthew G. Knepley       }
1395557beb66SLawrence Mitchell     }
13964bbf5ea8SMatthew G. Knepley      /*How many local dofs in this patch? */
13970904074fSPatrick Farrell    if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1398c2e6f3c0SFlorian Wechsung      ierr = PetscHMapIGetSize(htWithArtificial, &dof);CHKERRQ(ierr);
1399c2e6f3c0SFlorian Wechsung      ierr = PetscSectionSetDof(gtolCountsWithArtificial, v, dof);CHKERRQ(ierr);
1400c2e6f3c0SFlorian Wechsung    }
14010904074fSPatrick Farrell    if (isNonlinear) {
14020904074fSPatrick Farrell      ierr = PetscHMapIGetSize(htWithAll, &dof);CHKERRQ(ierr);
14030904074fSPatrick Farrell      ierr = PetscSectionSetDof(gtolCountsWithAll, v, dof);CHKERRQ(ierr);
14040904074fSPatrick Farrell    }
14051b68eb51SMatthew G. Knepley     ierr = PetscHMapIGetSize(ht, &dof);CHKERRQ(ierr);
14064bbf5ea8SMatthew G. Knepley     ierr = PetscSectionSetDof(gtolCounts, v, dof);CHKERRQ(ierr);
14074bbf5ea8SMatthew G. Knepley   }
14084bbf5ea8SMatthew G. Knepley   if (globalIndex != numDofs) SETERRQ2(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Expected number of dofs (%d) doesn't match found number (%d)", numDofs, globalIndex);
14094bbf5ea8SMatthew G. Knepley   ierr = PetscSectionSetUp(gtolCounts);CHKERRQ(ierr);
14104bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetStorageSize(gtolCounts, &numGlobalDofs);CHKERRQ(ierr);
14114bbf5ea8SMatthew G. Knepley   ierr = PetscMalloc1(numGlobalDofs, &globalDofsArray);CHKERRQ(ierr);
14124bbf5ea8SMatthew G. Knepley 
14130904074fSPatrick Farrell   if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1414c2e6f3c0SFlorian Wechsung     ierr = PetscSectionSetUp(gtolCountsWithArtificial);CHKERRQ(ierr);
1415c2e6f3c0SFlorian Wechsung     ierr = PetscSectionGetStorageSize(gtolCountsWithArtificial, &numGlobalDofsWithArtificial);CHKERRQ(ierr);
1416c2e6f3c0SFlorian Wechsung     ierr = PetscMalloc1(numGlobalDofsWithArtificial, &globalDofsArrayWithArtificial);CHKERRQ(ierr);
1417c2e6f3c0SFlorian Wechsung   }
14180904074fSPatrick Farrell   if (isNonlinear) {
14190904074fSPatrick Farrell     ierr = PetscSectionSetUp(gtolCountsWithAll);CHKERRQ(ierr);
14200904074fSPatrick Farrell     ierr = PetscSectionGetStorageSize(gtolCountsWithAll, &numGlobalDofsWithAll);CHKERRQ(ierr);
14210904074fSPatrick Farrell     ierr = PetscMalloc1(numGlobalDofsWithAll, &globalDofsArrayWithAll);CHKERRQ(ierr);
14220904074fSPatrick Farrell   }
14234bbf5ea8SMatthew G. Knepley   /* Now populate the global to local map.  This could be merged into the above loop if we were willing to deal with reallocs. */
14244bbf5ea8SMatthew G. Knepley   for (v = vStart; v < vEnd; ++v) {
14251b68eb51SMatthew G. Knepley     PetscHashIter hi;
14265f824522SMatthew G. Knepley     PetscInt      dof, off, Np, ooff, i, j, k, l;
14274bbf5ea8SMatthew G. Knepley 
14281b68eb51SMatthew G. Knepley     ierr = PetscHMapIClear(ht);CHKERRQ(ierr);
1429c2e6f3c0SFlorian Wechsung     ierr = PetscHMapIClear(htWithArtificial);CHKERRQ(ierr);
14300904074fSPatrick Farrell     ierr = PetscHMapIClear(htWithAll);CHKERRQ(ierr);
14314bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetDof(cellCounts, v, &dof);CHKERRQ(ierr);
14324bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetOffset(cellCounts, v, &off);CHKERRQ(ierr);
14335f824522SMatthew G. Knepley     ierr = PetscSectionGetDof(pointCounts, v, &Np);CHKERRQ(ierr);
14345f824522SMatthew G. Knepley     ierr = PetscSectionGetOffset(pointCounts, v, &ooff);CHKERRQ(ierr);
14354bbf5ea8SMatthew G. Knepley     if (dof <= 0) continue;
14364bbf5ea8SMatthew G. Knepley 
14374bbf5ea8SMatthew G. Knepley     for (k = 0; k < patch->nsubspaces; ++k) {
14384bbf5ea8SMatthew G. Knepley       const PetscInt *cellNodeMap    = patch->cellNodeMap[k];
14394bbf5ea8SMatthew G. Knepley       PetscInt        nodesPerCell   = patch->nodesPerCell[k];
14404bbf5ea8SMatthew G. Knepley       PetscInt        subspaceOffset = patch->subspaceOffsets[k];
14414bbf5ea8SMatthew G. Knepley       PetscInt        bs             = patch->bs[k];
1442d490bb3dSLawrence Mitchell       PetscInt        goff;
14434bbf5ea8SMatthew G. Knepley 
14444bbf5ea8SMatthew G. Knepley       for (i = off; i < off + dof; ++i) {
14454bbf5ea8SMatthew G. Knepley         /* Reconstruct mapping of global-to-local on this patch. */
14464bbf5ea8SMatthew G. Knepley         const PetscInt c    = cellsArray[i];
14475f824522SMatthew G. Knepley         PetscInt       cell = c;
14484bbf5ea8SMatthew G. Knepley 
14495f824522SMatthew G. Knepley         if (cellNumbering) {ierr = PetscSectionGetOffset(cellNumbering, c, &cell);CHKERRQ(ierr);}
14504bbf5ea8SMatthew G. Knepley         for (j = 0; j < nodesPerCell; ++j) {
14514bbf5ea8SMatthew G. Knepley           for (l = 0; l < bs; ++l) {
14525f824522SMatthew G. Knepley             const PetscInt globalDof = cellNodeMap[cell*nodesPerCell + j]*bs + l + subspaceOffset;
1453c2e6f3c0SFlorian Wechsung             const PetscInt localDof  = dofsArray[key];
14541b68eb51SMatthew G. Knepley             if (localDof >= 0) {ierr = PetscHMapISet(ht, globalDof, localDof);CHKERRQ(ierr);}
14550904074fSPatrick Farrell             if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1456c2e6f3c0SFlorian Wechsung               const PetscInt localDofWithArtificial = dofsArrayWithArtificial[key];
1457c2e6f3c0SFlorian Wechsung               if (localDofWithArtificial >= 0) {
1458c2e6f3c0SFlorian Wechsung                 ierr = PetscHMapISet(htWithArtificial, globalDof, localDofWithArtificial);CHKERRQ(ierr);
1459c2e6f3c0SFlorian Wechsung               }
1460c2e6f3c0SFlorian Wechsung             }
14610904074fSPatrick Farrell             if (isNonlinear) {
14620904074fSPatrick Farrell               const PetscInt localDofWithAll = dofsArrayWithAll[key];
14630904074fSPatrick Farrell               if (localDofWithAll >= 0) {
14640904074fSPatrick Farrell                 ierr = PetscHMapISet(htWithAll, globalDof, localDofWithAll);CHKERRQ(ierr);
14650904074fSPatrick Farrell               }
14660904074fSPatrick Farrell             }
1467c2e6f3c0SFlorian Wechsung             key++;
14684bbf5ea8SMatthew G. Knepley           }
14694bbf5ea8SMatthew G. Knepley         }
14704bbf5ea8SMatthew G. Knepley       }
1471557beb66SLawrence Mitchell 
14724bbf5ea8SMatthew G. Knepley       /* Shove it in the output data structure. */
14734bbf5ea8SMatthew G. Knepley       ierr = PetscSectionGetOffset(gtolCounts, v, &goff);CHKERRQ(ierr);
14741b68eb51SMatthew G. Knepley       PetscHashIterBegin(ht, hi);
14751b68eb51SMatthew G. Knepley       while (!PetscHashIterAtEnd(ht, hi)) {
14764bbf5ea8SMatthew G. Knepley         PetscInt globalDof, localDof;
14774bbf5ea8SMatthew G. Knepley 
14781b68eb51SMatthew G. Knepley         PetscHashIterGetKey(ht, hi, globalDof);
14791b68eb51SMatthew G. Knepley         PetscHashIterGetVal(ht, hi, localDof);
14804bbf5ea8SMatthew G. Knepley         if (globalDof >= 0) globalDofsArray[goff + localDof] = globalDof;
14811b68eb51SMatthew G. Knepley         PetscHashIterNext(ht, hi);
14824bbf5ea8SMatthew G. Knepley       }
14835f824522SMatthew G. Knepley 
14840904074fSPatrick Farrell       if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1485c2e6f3c0SFlorian Wechsung         ierr = PetscSectionGetOffset(gtolCountsWithArtificial, v, &goff);CHKERRQ(ierr);
1486c2e6f3c0SFlorian Wechsung         PetscHashIterBegin(htWithArtificial, hi);
1487c2e6f3c0SFlorian Wechsung         while (!PetscHashIterAtEnd(htWithArtificial, hi)) {
1488c2e6f3c0SFlorian Wechsung           PetscInt globalDof, localDof;
1489c2e6f3c0SFlorian Wechsung           PetscHashIterGetKey(htWithArtificial, hi, globalDof);
1490c2e6f3c0SFlorian Wechsung           PetscHashIterGetVal(htWithArtificial, hi, localDof);
1491c2e6f3c0SFlorian Wechsung           if (globalDof >= 0) globalDofsArrayWithArtificial[goff + localDof] = globalDof;
1492c2e6f3c0SFlorian Wechsung           PetscHashIterNext(htWithArtificial, hi);
1493c2e6f3c0SFlorian Wechsung         }
1494c2e6f3c0SFlorian Wechsung       }
14950904074fSPatrick Farrell       if (isNonlinear) {
14960904074fSPatrick Farrell         ierr = PetscSectionGetOffset(gtolCountsWithAll, v, &goff);CHKERRQ(ierr);
14970904074fSPatrick Farrell         PetscHashIterBegin(htWithAll, hi);
14980904074fSPatrick Farrell         while (!PetscHashIterAtEnd(htWithAll, hi)) {
14990904074fSPatrick Farrell           PetscInt globalDof, localDof;
15000904074fSPatrick Farrell           PetscHashIterGetKey(htWithAll, hi, globalDof);
15010904074fSPatrick Farrell           PetscHashIterGetVal(htWithAll, hi, localDof);
15020904074fSPatrick Farrell           if (globalDof >= 0) globalDofsArrayWithAll[goff + localDof] = globalDof;
15030904074fSPatrick Farrell           PetscHashIterNext(htWithAll, hi);
15040904074fSPatrick Farrell         }
15050904074fSPatrick Farrell       }
1506c2e6f3c0SFlorian Wechsung 
15075f824522SMatthew G. Knepley       for (p = 0; p < Np; ++p) {
15085f824522SMatthew G. Knepley         const PetscInt point = pointsArray[ooff + p];
15095f824522SMatthew G. Knepley         PetscInt       globalDof, localDof;
15105f824522SMatthew G. Knepley 
15115f824522SMatthew G. Knepley         ierr = PCPatchGetGlobalDofs(pc, patch->dofSection, k, patch->combined, point, NULL, &globalDof);CHKERRQ(ierr);
15121b68eb51SMatthew G. Knepley         ierr = PetscHMapIGet(ht, globalDof, &localDof);CHKERRQ(ierr);
15135f824522SMatthew G. Knepley         offsArray[(ooff + p)*Nf + k] = localDof;
15140904074fSPatrick Farrell         if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1515c2e6f3c0SFlorian Wechsung           ierr = PetscHMapIGet(htWithArtificial, globalDof, &localDof);CHKERRQ(ierr);
1516c2e6f3c0SFlorian Wechsung           offsArrayWithArtificial[(ooff + p)*Nf + k] = localDof;
1517c2e6f3c0SFlorian Wechsung         }
15180904074fSPatrick Farrell         if (isNonlinear) {
15190904074fSPatrick Farrell           ierr = PetscHMapIGet(htWithAll, globalDof, &localDof);CHKERRQ(ierr);
15200904074fSPatrick Farrell           offsArrayWithAll[(ooff + p)*Nf + k] = localDof;
15210904074fSPatrick Farrell         }
15225f824522SMatthew G. Knepley       }
15234bbf5ea8SMatthew G. Knepley     }
15244bbf5ea8SMatthew G. Knepley 
15250cd083f8SSatish Balay     ierr = PetscHSetIDestroy(&globalBcs);CHKERRQ(ierr);
15261b68eb51SMatthew G. Knepley     ierr = PetscHSetIDestroy(&ownedpts);CHKERRQ(ierr);
15271b68eb51SMatthew G. Knepley     ierr = PetscHSetIDestroy(&seenpts);CHKERRQ(ierr);
15281b68eb51SMatthew G. Knepley     ierr = PetscHSetIDestroy(&owneddofs);CHKERRQ(ierr);
15291b68eb51SMatthew G. Knepley     ierr = PetscHSetIDestroy(&seendofs);CHKERRQ(ierr);
15301b68eb51SMatthew G. Knepley     ierr = PetscHSetIDestroy(&artificialbcs);CHKERRQ(ierr);
1531557beb66SLawrence Mitchell 
15324bbf5ea8SMatthew G. Knepley       /* At this point, we have a hash table ht built that maps globalDof -> localDof.
15334bbf5ea8SMatthew G. Knepley      We need to create the dof table laid out cellwise first, then by subspace,
15344bbf5ea8SMatthew G. Knepley      as the assembler assembles cell-wise and we need to stuff the different
15354bbf5ea8SMatthew G. Knepley      contributions of the different function spaces to the right places. So we loop
15364bbf5ea8SMatthew G. Knepley      over cells, then over subspaces. */
15374bbf5ea8SMatthew G. Knepley     if (patch->nsubspaces > 1) { /* for nsubspaces = 1, data we need is already in dofsArray */
15384bbf5ea8SMatthew G. Knepley       for (i = off; i < off + dof; ++i) {
15394bbf5ea8SMatthew G. Knepley         const PetscInt c    = cellsArray[i];
15405f824522SMatthew G. Knepley         PetscInt       cell = c;
15414bbf5ea8SMatthew G. Knepley 
15425f824522SMatthew G. Knepley         if (cellNumbering) {ierr = PetscSectionGetOffset(cellNumbering, c, &cell);CHKERRQ(ierr);}
15434bbf5ea8SMatthew G. Knepley         for (k = 0; k < patch->nsubspaces; ++k) {
15444bbf5ea8SMatthew G. Knepley           const PetscInt *cellNodeMap    = patch->cellNodeMap[k];
15454bbf5ea8SMatthew G. Knepley           PetscInt        nodesPerCell   = patch->nodesPerCell[k];
15464bbf5ea8SMatthew G. Knepley           PetscInt        subspaceOffset = patch->subspaceOffsets[k];
15474bbf5ea8SMatthew G. Knepley           PetscInt        bs             = patch->bs[k];
15484bbf5ea8SMatthew G. Knepley 
15494bbf5ea8SMatthew G. Knepley           for (j = 0; j < nodesPerCell; ++j) {
15504bbf5ea8SMatthew G. Knepley             for (l = 0; l < bs; ++l) {
15515f824522SMatthew G. Knepley               const PetscInt globalDof = cellNodeMap[cell*nodesPerCell + j]*bs + l + subspaceOffset;
15524bbf5ea8SMatthew G. Knepley               PetscInt       localDof;
15534bbf5ea8SMatthew G. Knepley 
15541b68eb51SMatthew G. Knepley               ierr = PetscHMapIGet(ht, globalDof, &localDof);CHKERRQ(ierr);
1555557beb66SLawrence Mitchell               /* If it's not in the hash table, i.e. is a BC dof,
15561b68eb51SMatthew G. Knepley                then the PetscHSetIMap above gives -1, which matches
1557557beb66SLawrence Mitchell                exactly the convention for PETSc's matrix assembly to
1558557beb66SLawrence Mitchell                ignore the dof. So we don't need to do anything here */
1559c2e6f3c0SFlorian Wechsung               asmArray[asmKey] = localDof;
15600904074fSPatrick Farrell               if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1561c2e6f3c0SFlorian Wechsung                 ierr = PetscHMapIGet(htWithArtificial, globalDof, &localDof);CHKERRQ(ierr);
1562c2e6f3c0SFlorian Wechsung                 asmArrayWithArtificial[asmKey] = localDof;
1563c2e6f3c0SFlorian Wechsung               }
15640904074fSPatrick Farrell               if (isNonlinear) {
15650904074fSPatrick Farrell                 ierr = PetscHMapIGet(htWithAll, globalDof, &localDof);CHKERRQ(ierr);
15660904074fSPatrick Farrell                 asmArrayWithAll[asmKey] = localDof;
15670904074fSPatrick Farrell               }
1568c2e6f3c0SFlorian Wechsung               asmKey++;
15694bbf5ea8SMatthew G. Knepley             }
15704bbf5ea8SMatthew G. Knepley           }
15714bbf5ea8SMatthew G. Knepley         }
15724bbf5ea8SMatthew G. Knepley       }
15734bbf5ea8SMatthew G. Knepley     }
15744bbf5ea8SMatthew G. Knepley   }
1575c2e6f3c0SFlorian Wechsung   if (1 == patch->nsubspaces) {
1576c2e6f3c0SFlorian Wechsung     ierr = PetscMemcpy(asmArray, dofsArray, numDofs * sizeof(PetscInt));CHKERRQ(ierr);
15770904074fSPatrick Farrell     if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1578c2e6f3c0SFlorian Wechsung       ierr = PetscMemcpy(asmArrayWithArtificial, dofsArrayWithArtificial, numDofs * sizeof(PetscInt));CHKERRQ(ierr);
1579c2e6f3c0SFlorian Wechsung     }
15800904074fSPatrick Farrell     if (isNonlinear) {
15810904074fSPatrick Farrell       ierr = PetscMemcpy(asmArrayWithAll, dofsArrayWithAll, numDofs * sizeof(PetscInt));CHKERRQ(ierr);
15820904074fSPatrick Farrell     }
1583c2e6f3c0SFlorian Wechsung   }
15844bbf5ea8SMatthew G. Knepley 
15851b68eb51SMatthew G. Knepley   ierr = PetscHMapIDestroy(&ht);CHKERRQ(ierr);
1586c2e6f3c0SFlorian Wechsung   ierr = PetscHMapIDestroy(&htWithArtificial);CHKERRQ(ierr);
15870904074fSPatrick Farrell   ierr = PetscHMapIDestroy(&htWithAll);CHKERRQ(ierr);
15884bbf5ea8SMatthew G. Knepley   ierr = ISRestoreIndices(cells, &cellsArray);CHKERRQ(ierr);
15895f824522SMatthew G. Knepley   ierr = ISRestoreIndices(points, &pointsArray);CHKERRQ(ierr);
15904bbf5ea8SMatthew G. Knepley   ierr = PetscFree(dofsArray);CHKERRQ(ierr);
15910904074fSPatrick Farrell   if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1592c2e6f3c0SFlorian Wechsung     ierr = PetscFree(dofsArrayWithArtificial);CHKERRQ(ierr);
1593c2e6f3c0SFlorian Wechsung   }
15940904074fSPatrick Farrell   if (isNonlinear) {
15950904074fSPatrick Farrell     ierr = PetscFree(dofsArrayWithAll);CHKERRQ(ierr);
15960904074fSPatrick Farrell   }
15975f824522SMatthew G. Knepley   /* Create placeholder section for map from points to patch dofs */
15985f824522SMatthew G. Knepley   ierr = PetscSectionCreate(PETSC_COMM_SELF, &patch->patchSection);CHKERRQ(ierr);
15995f824522SMatthew G. Knepley   ierr = PetscSectionSetNumFields(patch->patchSection, patch->nsubspaces);CHKERRQ(ierr);
16001e5fa6bbSLawrence Mitchell   if (patch->combined) {
16011e5fa6bbSLawrence Mitchell     PetscInt numFields;
16021e5fa6bbSLawrence Mitchell     ierr = PetscSectionGetNumFields(patch->dofSection[0], &numFields);CHKERRQ(ierr);
16031e5fa6bbSLawrence Mitchell     if (numFields != patch->nsubspaces) SETERRQ2(PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONG, "Mismatch between number of section fields %D and number of subspaces %D", numFields, patch->nsubspaces);
16045f824522SMatthew G. Knepley     ierr = PetscSectionGetChart(patch->dofSection[0], &pStart, &pEnd);CHKERRQ(ierr);
16055f824522SMatthew G. Knepley     ierr = PetscSectionSetChart(patch->patchSection, pStart, pEnd);CHKERRQ(ierr);
16065f824522SMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
16075f824522SMatthew G. Knepley       PetscInt dof, fdof, f;
16085f824522SMatthew G. Knepley 
16095f824522SMatthew G. Knepley       ierr = PetscSectionGetDof(patch->dofSection[0], p, &dof);CHKERRQ(ierr);
16105f824522SMatthew G. Knepley       ierr = PetscSectionSetDof(patch->patchSection, p, dof);CHKERRQ(ierr);
16115f824522SMatthew G. Knepley       for (f = 0; f < patch->nsubspaces; ++f) {
16121e5fa6bbSLawrence Mitchell         ierr = PetscSectionGetFieldDof(patch->dofSection[0], p, f, &fdof);CHKERRQ(ierr);
16135f824522SMatthew G. Knepley         ierr = PetscSectionSetFieldDof(patch->patchSection, p, f, fdof);CHKERRQ(ierr);
16145f824522SMatthew G. Knepley       }
16151e5fa6bbSLawrence Mitchell     }
16161e5fa6bbSLawrence Mitchell   } else {
16171e5fa6bbSLawrence Mitchell     PetscInt pStartf, pEndf, f;
16181e5fa6bbSLawrence Mitchell     pStart = PETSC_MAX_INT;
16191e5fa6bbSLawrence Mitchell     pEnd = PETSC_MIN_INT;
16201e5fa6bbSLawrence Mitchell     for (f = 0; f < patch->nsubspaces; ++f) {
16211e5fa6bbSLawrence Mitchell       ierr = PetscSectionGetChart(patch->dofSection[f], &pStartf, &pEndf);CHKERRQ(ierr);
16221e5fa6bbSLawrence Mitchell       pStart = PetscMin(pStart, pStartf);
16231e5fa6bbSLawrence Mitchell       pEnd = PetscMax(pEnd, pEndf);
16241e5fa6bbSLawrence Mitchell     }
16251e5fa6bbSLawrence Mitchell     ierr = PetscSectionSetChart(patch->patchSection, pStart, pEnd);CHKERRQ(ierr);
16261e5fa6bbSLawrence Mitchell     for (f = 0; f < patch->nsubspaces; ++f) {
16271e5fa6bbSLawrence Mitchell       ierr = PetscSectionGetChart(patch->dofSection[f], &pStartf, &pEndf);CHKERRQ(ierr);
16281e5fa6bbSLawrence Mitchell       for (p = pStartf; p < pEndf; ++p) {
16291e5fa6bbSLawrence Mitchell         PetscInt fdof;
16301e5fa6bbSLawrence Mitchell         ierr = PetscSectionGetDof(patch->dofSection[f], p, &fdof);CHKERRQ(ierr);
16311e5fa6bbSLawrence Mitchell         ierr = PetscSectionAddDof(patch->patchSection, p, fdof);CHKERRQ(ierr);
16321e5fa6bbSLawrence Mitchell         ierr = PetscSectionSetFieldDof(patch->patchSection, p, f, fdof);CHKERRQ(ierr);
1633bdd9e0cdSPatrick Farrell       }
1634bdd9e0cdSPatrick Farrell     }
16355f824522SMatthew G. Knepley   }
16365f824522SMatthew G. Knepley   ierr = PetscSectionSetUp(patch->patchSection);CHKERRQ(ierr);
16375f824522SMatthew G. Knepley   ierr = PetscSectionSetUseFieldOffsets(patch->patchSection, PETSC_TRUE);CHKERRQ(ierr);
16384bbf5ea8SMatthew G. Knepley   /* Replace cell indices with firedrake-numbered ones. */
16394bbf5ea8SMatthew G. Knepley   ierr = ISGeneralSetIndices(cells, numCells, (const PetscInt *) newCellsArray, PETSC_OWN_POINTER);CHKERRQ(ierr);
16404bbf5ea8SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numGlobalDofs, globalDofsArray, PETSC_OWN_POINTER, &patch->gtol);CHKERRQ(ierr);
16415f824522SMatthew G. Knepley   ierr = PetscObjectSetName((PetscObject) patch->gtol, "Global Indices");CHKERRQ(ierr);
164210534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_g2l_view", patch->classname);CHKERRQ(ierr);
164310534d48SPatrick Farrell   ierr = PetscSectionViewFromOptions(patch->gtolCounts, (PetscObject) pc, option);CHKERRQ(ierr);
164410534d48SPatrick Farrell   ierr = ISViewFromOptions(patch->gtol, (PetscObject) pc, option);CHKERRQ(ierr);
16454bbf5ea8SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numDofs, asmArray, PETSC_OWN_POINTER, &patch->dofs);CHKERRQ(ierr);
16465f824522SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, numPoints*Nf, offsArray, PETSC_OWN_POINTER, &patch->offs);CHKERRQ(ierr);
16470904074fSPatrick Farrell   if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
1648c2e6f3c0SFlorian Wechsung     ierr = ISCreateGeneral(PETSC_COMM_SELF, numGlobalDofsWithArtificial, globalDofsArrayWithArtificial, PETSC_OWN_POINTER, &patch->gtolWithArtificial);CHKERRQ(ierr);
1649c2e6f3c0SFlorian Wechsung     ierr = ISCreateGeneral(PETSC_COMM_SELF, numDofs, asmArrayWithArtificial, PETSC_OWN_POINTER, &patch->dofsWithArtificial);CHKERRQ(ierr);
1650c2e6f3c0SFlorian Wechsung     ierr = ISCreateGeneral(PETSC_COMM_SELF, numPoints*Nf, offsArrayWithArtificial, PETSC_OWN_POINTER, &patch->offsWithArtificial);CHKERRQ(ierr);
1651c2e6f3c0SFlorian Wechsung   }
16520904074fSPatrick Farrell   if (isNonlinear) {
16530904074fSPatrick Farrell     ierr = ISCreateGeneral(PETSC_COMM_SELF, numGlobalDofsWithAll, globalDofsArrayWithAll, PETSC_OWN_POINTER, &patch->gtolWithAll);CHKERRQ(ierr);
16540904074fSPatrick Farrell     ierr = ISCreateGeneral(PETSC_COMM_SELF, numDofs, asmArrayWithAll, PETSC_OWN_POINTER, &patch->dofsWithAll);CHKERRQ(ierr);
16550904074fSPatrick Farrell     ierr = ISCreateGeneral(PETSC_COMM_SELF, numPoints*Nf, offsArrayWithAll, PETSC_OWN_POINTER, &patch->offsWithAll);CHKERRQ(ierr);
16560904074fSPatrick Farrell   }
16574bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
16584bbf5ea8SMatthew G. Knepley }
16594bbf5ea8SMatthew G. Knepley 
1660c2e6f3c0SFlorian Wechsung static PetscErrorCode PCPatchCreateMatrix_Private(PC pc, PetscInt point, Mat *mat, PetscBool withArtificial)
16614bbf5ea8SMatthew G. Knepley {
16624bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
16634bbf5ea8SMatthew G. Knepley   Vec            x, y;
16644bbf5ea8SMatthew G. Knepley   PetscBool      flg;
16654bbf5ea8SMatthew G. Knepley   PetscInt       csize, rsize;
16664bbf5ea8SMatthew G. Knepley   const char    *prefix = NULL;
16674bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
16684bbf5ea8SMatthew G. Knepley 
16694bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
1670c2e6f3c0SFlorian Wechsung   if(withArtificial) {
1671e047a90bSFlorian Wechsung     /* would be nice if we could create a rectangular matrix of size numDofsWithArtificial x numDofs here */
16721202d238SPatrick Farrell     x = patch->patchRHSWithArtificial[point];
16731202d238SPatrick Farrell     y = patch->patchRHSWithArtificial[point];
1674ff201f6aSFlorian Wechsung   } else {
16751202d238SPatrick Farrell     x = patch->patchRHS[point];
16761202d238SPatrick Farrell     y = patch->patchUpdate[point];
1677c2e6f3c0SFlorian Wechsung   }
1678c2e6f3c0SFlorian Wechsung 
16794bbf5ea8SMatthew G. Knepley   ierr = VecGetSize(x, &csize);CHKERRQ(ierr);
16804bbf5ea8SMatthew G. Knepley   ierr = VecGetSize(y, &rsize);CHKERRQ(ierr);
16814bbf5ea8SMatthew G. Knepley   ierr = MatCreate(PETSC_COMM_SELF, mat);CHKERRQ(ierr);
16824bbf5ea8SMatthew G. Knepley   ierr = PCGetOptionsPrefix(pc, &prefix);CHKERRQ(ierr);
16834bbf5ea8SMatthew G. Knepley   ierr = MatSetOptionsPrefix(*mat, prefix);CHKERRQ(ierr);
16845f824522SMatthew G. Knepley   ierr = MatAppendOptionsPrefix(*mat, "pc_patch_sub_");CHKERRQ(ierr);
16854bbf5ea8SMatthew G. Knepley   if (patch->sub_mat_type)       {ierr = MatSetType(*mat, patch->sub_mat_type);CHKERRQ(ierr);}
16867974b488SMatthew G. Knepley   else if (!patch->sub_mat_type) {ierr = MatSetType(*mat, MATDENSE);CHKERRQ(ierr);}
16874bbf5ea8SMatthew G. Knepley   ierr = MatSetSizes(*mat, rsize, csize, rsize, csize);CHKERRQ(ierr);
16884bbf5ea8SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) *mat, MATDENSE, &flg);CHKERRQ(ierr);
16894bbf5ea8SMatthew G. Knepley   if (!flg) {ierr = PetscObjectTypeCompare((PetscObject)*mat, MATSEQDENSE, &flg);CHKERRQ(ierr);}
16904bbf5ea8SMatthew G. Knepley   /* Sparse patch matrices */
16914bbf5ea8SMatthew G. Knepley   if (!flg) {
16924bbf5ea8SMatthew G. Knepley     PetscBT         bt;
16934bbf5ea8SMatthew G. Knepley     PetscInt       *dnnz      = NULL;
16944bbf5ea8SMatthew G. Knepley     const PetscInt *dofsArray = NULL;
16954bbf5ea8SMatthew G. Knepley     PetscInt        pStart, pEnd, ncell, offset, c, i, j;
16964bbf5ea8SMatthew G. Knepley 
1697c2e6f3c0SFlorian Wechsung     if(withArtificial) {
1698c2e6f3c0SFlorian Wechsung       ierr = ISGetIndices(patch->dofsWithArtificial, &dofsArray);CHKERRQ(ierr);
1699ff201f6aSFlorian Wechsung     } else {
17004bbf5ea8SMatthew G. Knepley       ierr = ISGetIndices(patch->dofs, &dofsArray);CHKERRQ(ierr);
1701c2e6f3c0SFlorian Wechsung     }
17024bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd);CHKERRQ(ierr);
17034bbf5ea8SMatthew G. Knepley     point += pStart;
17044bbf5ea8SMatthew G. Knepley     if (point >= pEnd) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Operator point %D not in [%D, %D)\n", point, pStart, pEnd);CHKERRQ(ierr);
17054bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetDof(patch->cellCounts, point, &ncell);CHKERRQ(ierr);
17064bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetOffset(patch->cellCounts, point, &offset);CHKERRQ(ierr);
17074bbf5ea8SMatthew G. Knepley     ierr = PetscLogEventBegin(PC_Patch_Prealloc, pc, 0, 0, 0);CHKERRQ(ierr);
1708b2866507SPatrick Farrell     /* A PetscBT uses N^2 bits to store the sparsity pattern on a
17094bbf5ea8SMatthew G. Knepley      * patch. This is probably OK if the patches are not too big,
1710b2866507SPatrick Farrell      * but uses too much memory. We therefore switch based on rsize. */
1711b2866507SPatrick Farrell     if (rsize < 3000) { /* FIXME: I picked this switch value out of my hat */
1712*d63cebbaSPatrick Farrell       PetscScalar *zeroes;
1713*d63cebbaSPatrick Farrell       PetscInt rows;
1714*d63cebbaSPatrick Farrell 
1715b2866507SPatrick Farrell       ierr = PetscCalloc1(rsize, &dnnz);CHKERRQ(ierr);
17164bbf5ea8SMatthew G. Knepley       ierr = PetscBTCreate(rsize*rsize, &bt);CHKERRQ(ierr);
17174bbf5ea8SMatthew G. Knepley       for (c = 0; c < ncell; ++c) {
17184bbf5ea8SMatthew G. Knepley         const PetscInt *idx = dofsArray + (offset + c)*patch->totalDofsPerCell;
17194bbf5ea8SMatthew G. Knepley         for (i = 0; i < patch->totalDofsPerCell; ++i) {
17204bbf5ea8SMatthew G. Knepley           const PetscInt row = idx[i];
1721557beb66SLawrence Mitchell           if (row < 0) continue;
17224bbf5ea8SMatthew G. Knepley           for (j = 0; j < patch->totalDofsPerCell; ++j) {
17234bbf5ea8SMatthew G. Knepley             const PetscInt col = idx[j];
17244bbf5ea8SMatthew G. Knepley             const PetscInt key = row*rsize + col;
1725557beb66SLawrence Mitchell             if (col < 0) continue;
17264bbf5ea8SMatthew G. Knepley             if (!PetscBTLookupSet(bt, key)) ++dnnz[row];
17274bbf5ea8SMatthew G. Knepley           }
17284bbf5ea8SMatthew G. Knepley         }
17294bbf5ea8SMatthew G. Knepley       }
1730*d63cebbaSPatrick Farrell 
1731*d63cebbaSPatrick Farrell       if (patch->usercomputeopintfacet) {
1732*d63cebbaSPatrick Farrell         const PetscInt *intFacetsArray = NULL;
1733*d63cebbaSPatrick Farrell         PetscInt i, numIntFacets, intFacetOffset;
1734*d63cebbaSPatrick Farrell         const PetscInt *facetCells = NULL;
1735*d63cebbaSPatrick Farrell 
1736*d63cebbaSPatrick Farrell         ierr = PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets);CHKERRQ(ierr);
1737*d63cebbaSPatrick Farrell         ierr = PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset);CHKERRQ(ierr);
1738*d63cebbaSPatrick Farrell         ierr = ISGetIndices(patch->intFacetsToPatchCell, &facetCells);CHKERRQ(ierr);
1739*d63cebbaSPatrick Farrell         ierr = ISGetIndices(patch->intFacets, &intFacetsArray);CHKERRQ(ierr);
1740*d63cebbaSPatrick Farrell         for (i = 0; i < numIntFacets; i++) {
1741*d63cebbaSPatrick Farrell           const PetscInt cell0 = facetCells[2*(intFacetOffset + i) + 0];
1742*d63cebbaSPatrick Farrell           const PetscInt cell1 = facetCells[2*(intFacetOffset + i) + 1];
1743*d63cebbaSPatrick Farrell           PetscInt celli, cellj;
1744*d63cebbaSPatrick Farrell 
1745*d63cebbaSPatrick Farrell           for (celli = 0; celli < patch->totalDofsPerCell; celli++) {
1746*d63cebbaSPatrick Farrell             const PetscInt row = dofsArray[(offset + cell0)*patch->totalDofsPerCell + celli];
1747*d63cebbaSPatrick Farrell             for (cellj = 0; cellj < patch->totalDofsPerCell; cellj++) {
1748*d63cebbaSPatrick Farrell                 const PetscInt col = dofsArray[(offset + cell1)*patch->totalDofsPerCell + cellj];
1749*d63cebbaSPatrick Farrell                 const PetscInt key = row*rsize + col;
1750*d63cebbaSPatrick Farrell                 if (col < 0) continue;
1751*d63cebbaSPatrick Farrell                 if (!PetscBTLookupSet(bt, key)) ++dnnz[row];
1752*d63cebbaSPatrick Farrell             }
1753*d63cebbaSPatrick Farrell           }
1754*d63cebbaSPatrick Farrell 
1755*d63cebbaSPatrick Farrell           for (celli = 0; celli < patch->totalDofsPerCell; celli++) {
1756*d63cebbaSPatrick Farrell             const PetscInt row = dofsArray[(offset + cell1)*patch->totalDofsPerCell + celli];
1757*d63cebbaSPatrick Farrell             for (cellj = 0; cellj < patch->totalDofsPerCell; cellj++) {
1758*d63cebbaSPatrick Farrell                 const PetscInt col = dofsArray[(offset + cell0)*patch->totalDofsPerCell + cellj];
1759*d63cebbaSPatrick Farrell                 const PetscInt key = row*rsize + col;
1760*d63cebbaSPatrick Farrell                 if (col < 0) continue;
1761*d63cebbaSPatrick Farrell                 if (!PetscBTLookupSet(bt, key)) ++dnnz[row];
1762*d63cebbaSPatrick Farrell             }
1763*d63cebbaSPatrick Farrell           }
1764*d63cebbaSPatrick Farrell         }
1765*d63cebbaSPatrick Farrell       }
17664bbf5ea8SMatthew G. Knepley       ierr = PetscBTDestroy(&bt);CHKERRQ(ierr);
17674bbf5ea8SMatthew G. Knepley       ierr = MatXAIJSetPreallocation(*mat, 1, dnnz, NULL, NULL, NULL);CHKERRQ(ierr);
17684bbf5ea8SMatthew G. Knepley       ierr = PetscFree(dnnz);CHKERRQ(ierr);
1769*d63cebbaSPatrick Farrell 
1770*d63cebbaSPatrick Farrell       ierr = PetscCalloc1(patch->totalDofsPerCell*patch->totalDofsPerCell, &zeroes);CHKERRQ(ierr);
1771*d63cebbaSPatrick Farrell       for (c = 0; c < ncell; ++c) {
1772*d63cebbaSPatrick Farrell         const PetscInt *idx = &dofsArray[(offset + c)*patch->totalDofsPerCell];
1773*d63cebbaSPatrick Farrell         ierr = MatSetValues(*mat, patch->totalDofsPerCell, idx, patch->totalDofsPerCell, idx, zeroes, INSERT_VALUES);CHKERRQ(ierr);
1774*d63cebbaSPatrick Farrell       }
1775*d63cebbaSPatrick Farrell       ierr = MatGetLocalSize(*mat, &rows, NULL);CHKERRQ(ierr);
1776*d63cebbaSPatrick Farrell       for (i = 0; i < rows; ++i) {
1777*d63cebbaSPatrick Farrell         ierr = MatSetValues(*mat, 1, &i, 1, &i, zeroes, INSERT_VALUES);CHKERRQ(ierr);
1778*d63cebbaSPatrick Farrell       }
1779*d63cebbaSPatrick Farrell 
1780*d63cebbaSPatrick Farrell       if (patch->usercomputeopintfacet) {
1781*d63cebbaSPatrick Farrell         const PetscInt *intFacetsArray = NULL;
1782*d63cebbaSPatrick Farrell         PetscInt i, numIntFacets, intFacetOffset;
1783*d63cebbaSPatrick Farrell         const PetscInt *facetCells = NULL;
1784*d63cebbaSPatrick Farrell 
1785*d63cebbaSPatrick Farrell         ierr = PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets);CHKERRQ(ierr);
1786*d63cebbaSPatrick Farrell         ierr = PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset);CHKERRQ(ierr);
1787*d63cebbaSPatrick Farrell         ierr = ISGetIndices(patch->intFacetsToPatchCell, &facetCells);CHKERRQ(ierr);
1788*d63cebbaSPatrick Farrell         ierr = ISGetIndices(patch->intFacets, &intFacetsArray);CHKERRQ(ierr);
1789*d63cebbaSPatrick Farrell         for (i = 0; i < numIntFacets; i++) {
1790*d63cebbaSPatrick Farrell           const PetscInt cell0 = facetCells[2*(intFacetOffset + i) + 0];
1791*d63cebbaSPatrick Farrell           const PetscInt cell1 = facetCells[2*(intFacetOffset + i) + 1];
1792*d63cebbaSPatrick Farrell           const PetscInt *cell0idx = &dofsArray[(offset + cell0)*patch->totalDofsPerCell];
1793*d63cebbaSPatrick Farrell           const PetscInt *cell1idx = &dofsArray[(offset + cell1)*patch->totalDofsPerCell];
1794*d63cebbaSPatrick Farrell           ierr = MatSetValues(*mat, patch->totalDofsPerCell, cell0idx, patch->totalDofsPerCell, cell1idx, zeroes, INSERT_VALUES);CHKERRQ(ierr);
1795*d63cebbaSPatrick Farrell           ierr = MatSetValues(*mat, patch->totalDofsPerCell, cell1idx, patch->totalDofsPerCell, cell0idx, zeroes, INSERT_VALUES);CHKERRQ(ierr);
1796*d63cebbaSPatrick Farrell         }
1797*d63cebbaSPatrick Farrell       }
1798*d63cebbaSPatrick Farrell 
1799*d63cebbaSPatrick Farrell       ierr = MatAssemblyBegin(*mat, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1800*d63cebbaSPatrick Farrell       ierr = MatAssemblyEnd(*mat, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1801*d63cebbaSPatrick Farrell 
1802*d63cebbaSPatrick Farrell       ierr = PetscFree(zeroes);CHKERRQ(ierr);
1803*d63cebbaSPatrick Farrell 
1804b2866507SPatrick Farrell     } else { /* rsize too big, use MATPREALLOCATOR */
1805b2866507SPatrick Farrell       Mat preallocator;
1806b2866507SPatrick Farrell       PetscScalar* vals;
1807b2866507SPatrick Farrell 
1808b2866507SPatrick Farrell       ierr = PetscCalloc1(patch->totalDofsPerCell*patch->totalDofsPerCell, &vals);CHKERRQ(ierr);
1809b2866507SPatrick Farrell       ierr = MatCreate(PETSC_COMM_SELF, &preallocator);CHKERRQ(ierr);
1810b2866507SPatrick Farrell       ierr = MatSetType(preallocator, MATPREALLOCATOR);CHKERRQ(ierr);
1811b2866507SPatrick Farrell       ierr = MatSetSizes(preallocator, rsize, rsize, rsize, rsize);CHKERRQ(ierr);
1812b2866507SPatrick Farrell       ierr = MatSetUp(preallocator);CHKERRQ(ierr);
1813b2866507SPatrick Farrell       for (c = 0; c < ncell; ++c) {
1814b2866507SPatrick Farrell         const PetscInt *idx = dofsArray + (offset + c)*patch->totalDofsPerCell;
1815b2866507SPatrick Farrell         ierr = MatSetValues(preallocator, patch->totalDofsPerCell, idx, patch->totalDofsPerCell, idx, vals, INSERT_VALUES);CHKERRQ(ierr);
1816b2866507SPatrick Farrell       }
1817b2866507SPatrick Farrell       ierr = PetscFree(vals);CHKERRQ(ierr);
1818b2866507SPatrick Farrell       ierr = MatAssemblyBegin(preallocator, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1819b2866507SPatrick Farrell       ierr = MatAssemblyEnd(preallocator, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1820b2866507SPatrick Farrell       ierr = MatPreallocatorPreallocate(preallocator, PETSC_TRUE, *mat);CHKERRQ(ierr);
1821b2866507SPatrick Farrell       ierr = MatDestroy(&preallocator);CHKERRQ(ierr);
1822b2866507SPatrick Farrell     }
18234bbf5ea8SMatthew G. Knepley     ierr = PetscLogEventEnd(PC_Patch_Prealloc, pc, 0, 0, 0);CHKERRQ(ierr);
1824fe117d09SFlorian Wechsung     if(withArtificial) {
1825fe117d09SFlorian Wechsung       ierr = ISRestoreIndices(patch->dofsWithArtificial, &dofsArray);CHKERRQ(ierr);
1826fe117d09SFlorian Wechsung     } else {
18274bbf5ea8SMatthew G. Knepley       ierr = ISRestoreIndices(patch->dofs, &dofsArray);CHKERRQ(ierr);
18284bbf5ea8SMatthew G. Knepley     }
1829fe117d09SFlorian Wechsung   }
18304bbf5ea8SMatthew G. Knepley   ierr = MatSetUp(*mat);CHKERRQ(ierr);
18314bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
18324bbf5ea8SMatthew G. Knepley }
18334bbf5ea8SMatthew G. Knepley 
18340904074fSPatrick Farrell static PetscErrorCode PCPatchComputeFunction_DMPlex_Private(PC pc, PetscInt patchNum, Vec x, Vec F, IS cellIS, PetscInt n, const PetscInt *l2p, const PetscInt *l2pWithAll, void *ctx)
183592d50984SMatthew G. Knepley {
183692d50984SMatthew G. Knepley   PC_PATCH       *patch = (PC_PATCH *) pc->data;
183792d50984SMatthew G. Knepley   DM              dm;
183892d50984SMatthew G. Knepley   PetscSection    s;
183992d50984SMatthew G. Knepley   const PetscInt *parray, *oarray;
184092d50984SMatthew G. Knepley   PetscInt        Nf = patch->nsubspaces, Np, poff, p, f;
184192d50984SMatthew G. Knepley   PetscErrorCode  ierr;
184292d50984SMatthew G. Knepley 
184392d50984SMatthew G. Knepley   PetscFunctionBegin;
184492d50984SMatthew G. Knepley   ierr = PCGetDM(pc, &dm);CHKERRQ(ierr);
184592d50984SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &s);CHKERRQ(ierr);
184692d50984SMatthew G. Knepley   /* Set offset into patch */
184792d50984SMatthew G. Knepley   ierr = PetscSectionGetDof(patch->pointCounts, patchNum, &Np);CHKERRQ(ierr);
184892d50984SMatthew G. Knepley   ierr = PetscSectionGetOffset(patch->pointCounts, patchNum, &poff);CHKERRQ(ierr);
184992d50984SMatthew G. Knepley   ierr = ISGetIndices(patch->points, &parray);CHKERRQ(ierr);
185092d50984SMatthew G. Knepley   ierr = ISGetIndices(patch->offs,   &oarray);CHKERRQ(ierr);
185192d50984SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
185292d50984SMatthew G. Knepley     for (p = 0; p < Np; ++p) {
185392d50984SMatthew G. Knepley       const PetscInt point = parray[poff+p];
185492d50984SMatthew G. Knepley       PetscInt       dof;
185592d50984SMatthew G. Knepley 
185692d50984SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(patch->patchSection, point, f, &dof);CHKERRQ(ierr);
185792d50984SMatthew G. Knepley       ierr = PetscSectionSetFieldOffset(patch->patchSection, point, f, oarray[(poff+p)*Nf+f]);CHKERRQ(ierr);
185892d50984SMatthew G. Knepley       if (patch->nsubspaces == 1) {ierr = PetscSectionSetOffset(patch->patchSection, point, oarray[(poff+p)*Nf+f]);CHKERRQ(ierr);}
185992d50984SMatthew G. Knepley       else                        {ierr = PetscSectionSetOffset(patch->patchSection, point, -1);CHKERRQ(ierr);}
186092d50984SMatthew G. Knepley     }
186192d50984SMatthew G. Knepley   }
186292d50984SMatthew G. Knepley   ierr = ISRestoreIndices(patch->points, &parray);CHKERRQ(ierr);
186392d50984SMatthew G. Knepley   ierr = ISRestoreIndices(patch->offs,   &oarray);CHKERRQ(ierr);
186492d50984SMatthew G. Knepley   if (patch->viewSection) {ierr = ObjectView((PetscObject) patch->patchSection, patch->viewerSection, patch->formatSection);CHKERRQ(ierr);}
186592d50984SMatthew G. Knepley   ierr = DMPlexComputeResidual_Patch_Internal(pc->dm, patch->patchSection, cellIS, 0.0, x, NULL, F, ctx);CHKERRQ(ierr);
186692d50984SMatthew G. Knepley   PetscFunctionReturn(0);
186792d50984SMatthew G. Knepley }
186892d50984SMatthew G. Knepley 
186992d50984SMatthew G. Knepley PetscErrorCode PCPatchComputeFunction_Internal(PC pc, Vec x, Vec F, PetscInt point)
187092d50984SMatthew G. Knepley {
187192d50984SMatthew G. Knepley   PC_PATCH       *patch = (PC_PATCH *) pc->data;
187292d50984SMatthew G. Knepley   const PetscInt *dofsArray;
18730904074fSPatrick Farrell   const PetscInt *dofsArrayWithAll;
187492d50984SMatthew G. Knepley   const PetscInt *cellsArray;
187592d50984SMatthew G. Knepley   PetscInt        ncell, offset, pStart, pEnd;
187692d50984SMatthew G. Knepley   PetscErrorCode  ierr;
187792d50984SMatthew G. Knepley 
187892d50984SMatthew G. Knepley   PetscFunctionBegin;
187992d50984SMatthew G. Knepley   ierr = PetscLogEventBegin(PC_Patch_ComputeOp, pc, 0, 0, 0);CHKERRQ(ierr);
188092d50984SMatthew G. Knepley   if (!patch->usercomputeop) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Must call PCPatchSetComputeOperator() to set user callback\n");
188192d50984SMatthew G. Knepley   ierr = ISGetIndices(patch->dofs, &dofsArray);CHKERRQ(ierr);
18820904074fSPatrick Farrell   ierr = ISGetIndices(patch->dofsWithAll, &dofsArrayWithAll);CHKERRQ(ierr);
188392d50984SMatthew G. Knepley   ierr = ISGetIndices(patch->cells, &cellsArray);CHKERRQ(ierr);
188492d50984SMatthew G. Knepley   ierr = PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd);CHKERRQ(ierr);
188592d50984SMatthew G. Knepley 
188692d50984SMatthew G. Knepley   point += pStart;
188792d50984SMatthew G. Knepley   if (point >= pEnd) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Operator point %D not in [%D, %D)\n", point, pStart, pEnd);CHKERRQ(ierr);
188892d50984SMatthew G. Knepley 
188992d50984SMatthew G. Knepley   ierr = PetscSectionGetDof(patch->cellCounts, point, &ncell);CHKERRQ(ierr);
189092d50984SMatthew G. Knepley   ierr = PetscSectionGetOffset(patch->cellCounts, point, &offset);CHKERRQ(ierr);
189192d50984SMatthew G. Knepley   if (ncell <= 0) {
189292d50984SMatthew G. Knepley     ierr = PetscLogEventEnd(PC_Patch_ComputeOp, pc, 0, 0, 0);CHKERRQ(ierr);
189392d50984SMatthew G. Knepley     PetscFunctionReturn(0);
189492d50984SMatthew G. Knepley   }
189592d50984SMatthew G. Knepley   PetscStackPush("PCPatch user callback");
189692d50984SMatthew G. Knepley   /* Cannot reuse the same IS because the geometry info is being cached in it */
189792d50984SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, ncell, cellsArray + offset, PETSC_USE_POINTER, &patch->cellIS);CHKERRQ(ierr);
189839fd2e8aSPatrick Farrell   ierr = patch->usercomputef(pc, point, x, F, patch->cellIS, ncell*patch->totalDofsPerCell, dofsArray + offset*patch->totalDofsPerCell,
18990904074fSPatrick Farrell                                                                                             dofsArrayWithAll + offset*patch->totalDofsPerCell,
190039fd2e8aSPatrick Farrell                                                                                             patch->usercomputefctx);CHKERRQ(ierr);
190192d50984SMatthew G. Knepley   PetscStackPop;
190292d50984SMatthew G. Knepley   ierr = ISDestroy(&patch->cellIS);CHKERRQ(ierr);
190392d50984SMatthew G. Knepley   ierr = ISRestoreIndices(patch->dofs, &dofsArray);CHKERRQ(ierr);
19040904074fSPatrick Farrell   ierr = ISRestoreIndices(patch->dofsWithAll, &dofsArrayWithAll);CHKERRQ(ierr);
190592d50984SMatthew G. Knepley   ierr = ISRestoreIndices(patch->cells, &cellsArray);CHKERRQ(ierr);
190692d50984SMatthew G. Knepley   if (patch->viewMatrix) {
190792d50984SMatthew G. Knepley     char name[PETSC_MAX_PATH_LEN];
190892d50984SMatthew G. Knepley 
190992d50984SMatthew G. Knepley     ierr = PetscSNPrintf(name, PETSC_MAX_PATH_LEN-1, "Patch vector for Point %D", point);CHKERRQ(ierr);
191092d50984SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) F, name);CHKERRQ(ierr);
191192d50984SMatthew G. Knepley     ierr = ObjectView((PetscObject) F, patch->viewerMatrix, patch->formatMatrix);CHKERRQ(ierr);
191292d50984SMatthew G. Knepley   }
191392d50984SMatthew G. Knepley   ierr = PetscLogEventEnd(PC_Patch_ComputeOp, pc, 0, 0, 0);CHKERRQ(ierr);
191492d50984SMatthew G. Knepley   PetscFunctionReturn(0);
191592d50984SMatthew G. Knepley }
191692d50984SMatthew G. Knepley 
19170904074fSPatrick Farrell static PetscErrorCode PCPatchComputeOperator_DMPlex_Private(PC pc, PetscInt patchNum, Vec x, Mat J, IS cellIS, PetscInt n, const PetscInt *l2p, const PetscInt *l2pWithAll, void *ctx)
19185f824522SMatthew G. Knepley {
19195f824522SMatthew G. Knepley   PC_PATCH       *patch = (PC_PATCH *) pc->data;
19205f824522SMatthew G. Knepley   DM              dm;
19215f824522SMatthew G. Knepley   PetscSection    s;
19225f824522SMatthew G. Knepley   const PetscInt *parray, *oarray;
19235f824522SMatthew G. Knepley   PetscInt        Nf = patch->nsubspaces, Np, poff, p, f;
19245f824522SMatthew G. Knepley   PetscErrorCode  ierr;
19255f824522SMatthew G. Knepley 
19265f824522SMatthew G. Knepley   PetscFunctionBegin;
19275f824522SMatthew G. Knepley   ierr = PCGetDM(pc, &dm);CHKERRQ(ierr);
19285f824522SMatthew G. Knepley   ierr = DMGetDefaultSection(dm, &s);CHKERRQ(ierr);
19295f824522SMatthew G. Knepley   /* Set offset into patch */
19305f824522SMatthew G. Knepley   ierr = PetscSectionGetDof(patch->pointCounts, patchNum, &Np);CHKERRQ(ierr);
19315f824522SMatthew G. Knepley   ierr = PetscSectionGetOffset(patch->pointCounts, patchNum, &poff);CHKERRQ(ierr);
19325f824522SMatthew G. Knepley   ierr = ISGetIndices(patch->points, &parray);CHKERRQ(ierr);
19335f824522SMatthew G. Knepley   ierr = ISGetIndices(patch->offs,   &oarray);CHKERRQ(ierr);
19345f824522SMatthew G. Knepley   for (f = 0; f < Nf; ++f) {
19355f824522SMatthew G. Knepley     for (p = 0; p < Np; ++p) {
19365f824522SMatthew G. Knepley       const PetscInt point = parray[poff+p];
19375f824522SMatthew G. Knepley       PetscInt       dof;
19385f824522SMatthew G. Knepley 
19395f824522SMatthew G. Knepley       ierr = PetscSectionGetFieldDof(patch->patchSection, point, f, &dof);CHKERRQ(ierr);
19405f824522SMatthew G. Knepley       ierr = PetscSectionSetFieldOffset(patch->patchSection, point, f, oarray[(poff+p)*Nf+f]);CHKERRQ(ierr);
19415f824522SMatthew G. Knepley       if (patch->nsubspaces == 1) {ierr = PetscSectionSetOffset(patch->patchSection, point, oarray[(poff+p)*Nf+f]);CHKERRQ(ierr);}
19425f824522SMatthew G. Knepley       else                        {ierr = PetscSectionSetOffset(patch->patchSection, point, -1);CHKERRQ(ierr);}
19435f824522SMatthew G. Knepley     }
19445f824522SMatthew G. Knepley   }
19455f824522SMatthew G. Knepley   ierr = ISRestoreIndices(patch->points, &parray);CHKERRQ(ierr);
19465f824522SMatthew G. Knepley   ierr = ISRestoreIndices(patch->offs,   &oarray);CHKERRQ(ierr);
19475f824522SMatthew G. Knepley   if (patch->viewSection) {ierr = ObjectView((PetscObject) patch->patchSection, patch->viewerSection, patch->formatSection);CHKERRQ(ierr);}
19485f824522SMatthew G. Knepley   /* TODO Shut off MatViewFromOptions() in MatAssemblyEnd() here */
1949723f9013SMatthew G. Knepley   ierr = DMPlexComputeJacobian_Patch_Internal(pc->dm, patch->patchSection, patch->patchSection, cellIS, 0.0, 0.0, x, NULL, J, J, ctx);CHKERRQ(ierr);
19505f824522SMatthew G. Knepley   PetscFunctionReturn(0);
19515f824522SMatthew G. Knepley }
19525f824522SMatthew G. Knepley 
195334d8b122SPatrick Farrell PetscErrorCode PCPatchComputeOperator_Internal(PC pc, Vec x, Mat mat, PetscInt point, PetscBool withArtificial)
19544bbf5ea8SMatthew G. Knepley {
19554bbf5ea8SMatthew G. Knepley   PC_PATCH       *patch = (PC_PATCH *) pc->data;
19564bbf5ea8SMatthew G. Knepley   const PetscInt *dofsArray;
19574d04e9f1SPatrick Farrell   const PetscInt *dofsArrayWithArtificial = NULL;
19580904074fSPatrick Farrell   const PetscInt *dofsArrayWithAll = NULL;
19594bbf5ea8SMatthew G. Knepley   const PetscInt *cellsArray;
1960eb62eeaaSLawrence Mitchell   PetscInt        ncell, offset, pStart, pEnd, numIntFacets, intFacetOffset;
19614d04e9f1SPatrick Farrell   PetscBool       isNonlinear;
19624bbf5ea8SMatthew G. Knepley   PetscErrorCode  ierr;
19634bbf5ea8SMatthew G. Knepley 
19644bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
19654bbf5ea8SMatthew G. Knepley   ierr = PetscLogEventBegin(PC_Patch_ComputeOp, pc, 0, 0, 0);CHKERRQ(ierr);
1966debbdec3SPatrick Farrell   isNonlinear = patch->isNonlinear;
19674bbf5ea8SMatthew G. Knepley   if (!patch->usercomputeop) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "Must call PCPatchSetComputeOperator() to set user callback\n");
1968c2e6f3c0SFlorian Wechsung   if(withArtificial) {
1969c2e6f3c0SFlorian Wechsung     ierr = ISGetIndices(patch->dofsWithArtificial, &dofsArray);CHKERRQ(ierr);
1970c2e6f3c0SFlorian Wechsung   } else {
19714bbf5ea8SMatthew G. Knepley     ierr = ISGetIndices(patch->dofs, &dofsArray);CHKERRQ(ierr);
1972c2e6f3c0SFlorian Wechsung   }
19734d04e9f1SPatrick Farrell   if (isNonlinear) {
19740904074fSPatrick Farrell     ierr = ISGetIndices(patch->dofsWithAll, &dofsArrayWithAll);CHKERRQ(ierr);
19754d04e9f1SPatrick Farrell   }
19764bbf5ea8SMatthew G. Knepley   ierr = ISGetIndices(patch->cells, &cellsArray);CHKERRQ(ierr);
19774bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetChart(patch->cellCounts, &pStart, &pEnd);CHKERRQ(ierr);
19784bbf5ea8SMatthew G. Knepley 
19794bbf5ea8SMatthew G. Knepley   point += pStart;
19804bbf5ea8SMatthew G. Knepley   if (point >= pEnd) SETERRQ3(PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Operator point %D not in [%D, %D)\n", point, pStart, pEnd);CHKERRQ(ierr);
19814bbf5ea8SMatthew G. Knepley 
19824bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetDof(patch->cellCounts, point, &ncell);CHKERRQ(ierr);
19834bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetOffset(patch->cellCounts, point, &offset);CHKERRQ(ierr);
19844bbf5ea8SMatthew G. Knepley   if (ncell <= 0) {
19854bbf5ea8SMatthew G. Knepley     ierr = PetscLogEventEnd(PC_Patch_ComputeOp, pc, 0, 0, 0);CHKERRQ(ierr);
19864bbf5ea8SMatthew G. Knepley     PetscFunctionReturn(0);
19874bbf5ea8SMatthew G. Knepley   }
19884bbf5ea8SMatthew G. Knepley   PetscStackPush("PCPatch user callback");
19892aa6f319SMatthew G. Knepley   /* Cannot reuse the same IS because the geometry info is being cached in it */
19902aa6f319SMatthew G. Knepley   ierr = ISCreateGeneral(PETSC_COMM_SELF, ncell, cellsArray + offset, PETSC_USE_POINTER, &patch->cellIS);CHKERRQ(ierr);
19910904074fSPatrick Farrell   ierr = patch->usercomputeop(pc, point, x, mat, patch->cellIS, ncell*patch->totalDofsPerCell, dofsArray + offset*patch->totalDofsPerCell, dofsArrayWithAll ? dofsArrayWithAll + offset*patch->totalDofsPerCell : NULL, patch->usercomputeopctx);CHKERRQ(ierr);
1992eb62eeaaSLawrence Mitchell 
199359109abcSLawrence Mitchell   if (patch->usercomputeopintfacet) {
1994eb62eeaaSLawrence Mitchell     ierr = PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets);CHKERRQ(ierr);
1995eb62eeaaSLawrence Mitchell     ierr = PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset);CHKERRQ(ierr);
1996eb62eeaaSLawrence Mitchell     if (numIntFacets > 0) {
1997eb62eeaaSLawrence Mitchell       /* For each interior facet, grab the two cells (in local numbering, and concatenate dof numberings for those cells) */
1998eb62eeaaSLawrence Mitchell       PetscInt *facetDofs = NULL, *facetDofsWithAll = NULL;
1999eb62eeaaSLawrence Mitchell       const PetscInt *intFacetsArray = NULL;
2000eb62eeaaSLawrence Mitchell       PetscInt idx = 0;
2001eb62eeaaSLawrence Mitchell       PetscInt i, c, d;
2002eb62eeaaSLawrence Mitchell       IS       facetIS = NULL;
2003eb62eeaaSLawrence Mitchell       const PetscInt *facetCells = NULL;
2004eb62eeaaSLawrence Mitchell       ierr = ISGetIndices(patch->intFacetsToPatchCell, &facetCells);CHKERRQ(ierr);
2005eb62eeaaSLawrence Mitchell       ierr = ISGetIndices(patch->intFacets, &intFacetsArray);CHKERRQ(ierr);
2006eb62eeaaSLawrence Mitchell       /* FIXME: Pull this malloc out. */
2007eb62eeaaSLawrence Mitchell       ierr = PetscMalloc1(2 * patch->totalDofsPerCell * numIntFacets, &facetDofs);CHKERRQ(ierr);
2008eb62eeaaSLawrence Mitchell       if (dofsArrayWithAll) {
2009eb62eeaaSLawrence Mitchell         ierr = PetscMalloc1(2 * patch->totalDofsPerCell * numIntFacets, &facetDofsWithAll);CHKERRQ(ierr);
2010eb62eeaaSLawrence Mitchell       }
2011eb62eeaaSLawrence Mitchell       /*
2012eb62eeaaSLawrence Mitchell        * 0--1
2013eb62eeaaSLawrence Mitchell        * |\-|
2014eb62eeaaSLawrence Mitchell        * |+\|
2015eb62eeaaSLawrence Mitchell        * 2--3
2016eb62eeaaSLawrence Mitchell        * [0, 2, 3, 0, 1, 3]
2017eb62eeaaSLawrence Mitchell        */
2018eb62eeaaSLawrence Mitchell       for (i = 0; i < numIntFacets; i++) {
2019eb62eeaaSLawrence Mitchell         for (c = 0; c < 2; c++) {
2020eb62eeaaSLawrence Mitchell           const PetscInt cell = facetCells[2*(intFacetOffset + i) + c];
2021eb62eeaaSLawrence Mitchell           for (d = 0; d < patch->totalDofsPerCell; d++) {
2022eb62eeaaSLawrence Mitchell             facetDofs[idx] = dofsArray[(offset + cell)*patch->totalDofsPerCell + d];
2023eb62eeaaSLawrence Mitchell             if (dofsArrayWithAll) {
2024eb62eeaaSLawrence Mitchell               facetDofsWithAll[idx] = dofsArrayWithAll[(offset + cell)*patch->totalDofsPerCell + d];
2025eb62eeaaSLawrence Mitchell             }
2026eb62eeaaSLawrence Mitchell             idx++;
2027eb62eeaaSLawrence Mitchell           }
2028eb62eeaaSLawrence Mitchell         }
2029eb62eeaaSLawrence Mitchell       }
2030eb62eeaaSLawrence Mitchell       ierr = ISCreateGeneral(PETSC_COMM_SELF, numIntFacets, intFacetsArray + intFacetOffset, PETSC_USE_POINTER, &facetIS);CHKERRQ(ierr);
203159109abcSLawrence Mitchell       ierr = patch->usercomputeopintfacet(pc, point, x, mat, facetIS, 2*numIntFacets*patch->totalDofsPerCell, facetDofs, facetDofsWithAll, patch->usercomputeopctx);CHKERRQ(ierr);
2032eb62eeaaSLawrence Mitchell       ierr = ISDestroy(&facetIS);CHKERRQ(ierr);
2033eb62eeaaSLawrence Mitchell       ierr = ISRestoreIndices(patch->intFacetsToPatchCell, &facetCells);CHKERRQ(ierr);
2034eb62eeaaSLawrence Mitchell       ierr = PetscFree(facetDofs);CHKERRQ(ierr);
2035eb62eeaaSLawrence Mitchell       ierr = PetscFree(facetDofsWithAll);CHKERRQ(ierr);
2036eb62eeaaSLawrence Mitchell     }
203759109abcSLawrence Mitchell   }
20384bbf5ea8SMatthew G. Knepley   PetscStackPop;
20392aa6f319SMatthew G. Knepley   ierr = ISDestroy(&patch->cellIS);CHKERRQ(ierr);
20404d04e9f1SPatrick Farrell   if(withArtificial) {
2041c2e6f3c0SFlorian Wechsung     ierr = ISRestoreIndices(patch->dofsWithArtificial, &dofsArray);CHKERRQ(ierr);
2042c2e6f3c0SFlorian Wechsung   } else {
20434bbf5ea8SMatthew G. Knepley     ierr = ISRestoreIndices(patch->dofs, &dofsArray);CHKERRQ(ierr);
2044c2e6f3c0SFlorian Wechsung   }
20454d04e9f1SPatrick Farrell   if (isNonlinear) {
20460904074fSPatrick Farrell     ierr = ISRestoreIndices(patch->dofsWithAll, &dofsArrayWithAll);CHKERRQ(ierr);
20474d04e9f1SPatrick Farrell   }
20484bbf5ea8SMatthew G. Knepley   ierr = ISRestoreIndices(patch->cells, &cellsArray);CHKERRQ(ierr);
20492aa6f319SMatthew G. Knepley   if (patch->viewMatrix) {
20502aa6f319SMatthew G. Knepley     char name[PETSC_MAX_PATH_LEN];
20512aa6f319SMatthew G. Knepley 
20522aa6f319SMatthew G. Knepley     ierr = PetscSNPrintf(name, PETSC_MAX_PATH_LEN-1, "Patch matrix for Point %D", point);CHKERRQ(ierr);
20532aa6f319SMatthew G. Knepley     ierr = PetscObjectSetName((PetscObject) mat, name);CHKERRQ(ierr);
20542aa6f319SMatthew G. Knepley     ierr = ObjectView((PetscObject) mat, patch->viewerMatrix, patch->formatMatrix);CHKERRQ(ierr);
20552aa6f319SMatthew G. Knepley   }
20564bbf5ea8SMatthew G. Knepley   ierr = PetscLogEventEnd(PC_Patch_ComputeOp, pc, 0, 0, 0);CHKERRQ(ierr);
20574bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
20584bbf5ea8SMatthew G. Knepley }
20594bbf5ea8SMatthew G. Knepley 
20600904074fSPatrick Farrell PetscErrorCode PCPatch_ScatterLocal_Private(PC pc, PetscInt p, Vec x, Vec y, InsertMode mode, ScatterMode scat, PatchScatterType scattertype)
20614bbf5ea8SMatthew G. Knepley {
20624bbf5ea8SMatthew G. Knepley   PC_PATCH          *patch     = (PC_PATCH *) pc->data;
20634bbf5ea8SMatthew G. Knepley   const PetscScalar *xArray    = NULL;
20644bbf5ea8SMatthew G. Knepley   PetscScalar       *yArray    = NULL;
20654bbf5ea8SMatthew G. Knepley   const PetscInt    *gtolArray = NULL;
20664bbf5ea8SMatthew G. Knepley   PetscInt           dof, offset, lidx;
20674bbf5ea8SMatthew G. Knepley   PetscErrorCode     ierr;
20684bbf5ea8SMatthew G. Knepley 
20694bbf5ea8SMatthew G. Knepley   PetscFunctionBeginHot;
20704bbf5ea8SMatthew G. Knepley   ierr = PetscLogEventBegin(PC_Patch_Scatter, pc, 0, 0, 0);CHKERRQ(ierr);
20714bbf5ea8SMatthew G. Knepley   ierr = VecGetArrayRead(x, &xArray);CHKERRQ(ierr);
20724bbf5ea8SMatthew G. Knepley   ierr = VecGetArray(y, &yArray);CHKERRQ(ierr);
20730904074fSPatrick Farrell   if (scattertype == SCATTER_WITHARTIFICIAL) {
2074c2e6f3c0SFlorian Wechsung     ierr = PetscSectionGetDof(patch->gtolCountsWithArtificial, p, &dof);CHKERRQ(ierr);
2075c2e6f3c0SFlorian Wechsung     ierr = PetscSectionGetOffset(patch->gtolCountsWithArtificial, p, &offset);CHKERRQ(ierr);
2076c2e6f3c0SFlorian Wechsung     ierr = ISGetIndices(patch->gtolWithArtificial, &gtolArray);CHKERRQ(ierr);
20770904074fSPatrick Farrell   } else if (scattertype == SCATTER_WITHALL) {
20780904074fSPatrick Farrell     ierr = PetscSectionGetDof(patch->gtolCountsWithAll, p, &dof);CHKERRQ(ierr);
20790904074fSPatrick Farrell     ierr = PetscSectionGetOffset(patch->gtolCountsWithAll, p, &offset);CHKERRQ(ierr);
20800904074fSPatrick Farrell     ierr = ISGetIndices(patch->gtolWithAll, &gtolArray);CHKERRQ(ierr);
2081c2e6f3c0SFlorian Wechsung   } else {
20824bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetDof(patch->gtolCounts, p, &dof);CHKERRQ(ierr);
20834bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetOffset(patch->gtolCounts, p, &offset);CHKERRQ(ierr);
20844bbf5ea8SMatthew G. Knepley     ierr = ISGetIndices(patch->gtol, &gtolArray);CHKERRQ(ierr);
2085c2e6f3c0SFlorian Wechsung   }
20864bbf5ea8SMatthew G. Knepley   if (mode == INSERT_VALUES && scat != SCATTER_FORWARD) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "Can't insert if not scattering forward\n");
20874bbf5ea8SMatthew G. Knepley   if (mode == ADD_VALUES    && scat != SCATTER_REVERSE) SETERRQ(PETSC_COMM_SELF, PETSC_ERR_ARG_INCOMP, "Can't add if not scattering reverse\n");
20884bbf5ea8SMatthew G. Knepley   for (lidx = 0; lidx < dof; ++lidx) {
20894bbf5ea8SMatthew G. Knepley     const PetscInt gidx = gtolArray[offset+lidx];
20904bbf5ea8SMatthew G. Knepley 
20914bbf5ea8SMatthew G. Knepley     if (mode == INSERT_VALUES) yArray[lidx]  = xArray[gidx]; /* Forward */
20924bbf5ea8SMatthew G. Knepley     else                       yArray[gidx] += xArray[lidx]; /* Reverse */
20934bbf5ea8SMatthew G. Knepley   }
20940904074fSPatrick Farrell   if (scattertype == SCATTER_WITHARTIFICIAL) {
2095c2e6f3c0SFlorian Wechsung     ierr = ISRestoreIndices(patch->gtolWithArtificial, &gtolArray);CHKERRQ(ierr);
20960904074fSPatrick Farrell   } else if (scattertype == SCATTER_WITHALL) {
20970904074fSPatrick Farrell     ierr = ISRestoreIndices(patch->gtolWithAll, &gtolArray);CHKERRQ(ierr);
2098c2e6f3c0SFlorian Wechsung   } else {
20994bbf5ea8SMatthew G. Knepley     ierr = ISRestoreIndices(patch->gtol, &gtolArray);CHKERRQ(ierr);
2100c2e6f3c0SFlorian Wechsung   }
21014bbf5ea8SMatthew G. Knepley   ierr = VecRestoreArrayRead(x, &xArray);CHKERRQ(ierr);
21024bbf5ea8SMatthew G. Knepley   ierr = VecRestoreArray(y, &yArray);CHKERRQ(ierr);
21034bbf5ea8SMatthew G. Knepley   ierr = PetscLogEventEnd(PC_Patch_Scatter, pc, 0, 0, 0);CHKERRQ(ierr);
21044bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
21054bbf5ea8SMatthew G. Knepley }
21064bbf5ea8SMatthew G. Knepley 
2107dadc69c5SMatthew G. Knepley static PetscErrorCode PCSetUp_PATCH_Linear(PC pc)
2108dadc69c5SMatthew G. Knepley {
2109dadc69c5SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
2110dadc69c5SMatthew G. Knepley   const char    *prefix;
2111dadc69c5SMatthew G. Knepley   PetscInt       i;
2112dadc69c5SMatthew G. Knepley   PetscErrorCode ierr;
2113dadc69c5SMatthew G. Knepley 
2114dadc69c5SMatthew G. Knepley   PetscFunctionBegin;
2115dadc69c5SMatthew G. Knepley   if (!pc->setupcalled) {
2116dadc69c5SMatthew G. Knepley     ierr = PetscMalloc1(patch->npatch, &patch->solver);CHKERRQ(ierr);
2117dadc69c5SMatthew G. Knepley     ierr = PCGetOptionsPrefix(pc, &prefix);CHKERRQ(ierr);
2118dadc69c5SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {
2119dadc69c5SMatthew G. Knepley       KSP ksp;
2120dadc69c5SMatthew G. Knepley       PC  subpc;
2121dadc69c5SMatthew G. Knepley 
2122dadc69c5SMatthew G. Knepley       ierr = KSPCreate(PETSC_COMM_SELF, &ksp);CHKERRQ(ierr);
2123ddad275aSPatrick Farrell       ierr = KSPSetErrorIfNotConverged(ksp, pc->erroriffailure);CHKERRQ(ierr);
2124dadc69c5SMatthew G. Knepley       ierr = KSPSetOptionsPrefix(ksp, prefix);CHKERRQ(ierr);
2125dadc69c5SMatthew G. Knepley       ierr = KSPAppendOptionsPrefix(ksp, "sub_");CHKERRQ(ierr);
2126dadc69c5SMatthew G. Knepley       ierr = PetscObjectIncrementTabLevel((PetscObject) ksp, (PetscObject) pc, 1);CHKERRQ(ierr);
2127dadc69c5SMatthew G. Knepley       ierr = KSPGetPC(ksp, &subpc);CHKERRQ(ierr);
2128dadc69c5SMatthew G. Knepley       ierr = PetscObjectIncrementTabLevel((PetscObject) subpc, (PetscObject) pc, 1);CHKERRQ(ierr);
2129dadc69c5SMatthew G. Knepley       ierr = PetscLogObjectParent((PetscObject) pc, (PetscObject) ksp);CHKERRQ(ierr);
2130dadc69c5SMatthew G. Knepley       patch->solver[i] = (PetscObject) ksp;
2131dadc69c5SMatthew G. Knepley     }
2132dadc69c5SMatthew G. Knepley   }
2133dadc69c5SMatthew G. Knepley   if (patch->save_operators) {
2134dadc69c5SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {
2135dadc69c5SMatthew G. Knepley       ierr = MatZeroEntries(patch->mat[i]);CHKERRQ(ierr);
213634d8b122SPatrick Farrell       ierr = PCPatchComputeOperator_Internal(pc, NULL, patch->mat[i], i, PETSC_FALSE);CHKERRQ(ierr);
2137dadc69c5SMatthew G. Knepley       ierr = KSPSetOperators((KSP) patch->solver[i], patch->mat[i], patch->mat[i]);CHKERRQ(ierr);
2138dadc69c5SMatthew G. Knepley     }
2139dadc69c5SMatthew G. Knepley   }
214034d8b122SPatrick Farrell   if(patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
214134d8b122SPatrick Farrell     for (i = 0; i < patch->npatch; ++i) {
21421202d238SPatrick Farrell       /* Instead of padding patch->patchUpdate with zeros to get */
21431202d238SPatrick Farrell       /* patch->patchUpdateWithArtificial and then multiplying with the matrix, */
214434d8b122SPatrick Farrell       /* just get rid of the columns that correspond to the dofs with */
214534d8b122SPatrick Farrell       /* artificial bcs. That's of course fairly inefficient, hopefully we */
214634d8b122SPatrick Farrell       /* can just assemble the rectangular matrix in the first place. */
214734d8b122SPatrick Farrell       Mat matSquare;
214834d8b122SPatrick Farrell       IS rowis;
214934d8b122SPatrick Farrell       PetscInt dof;
215034d8b122SPatrick Farrell 
215134d8b122SPatrick Farrell       ierr = MatGetSize(patch->mat[i], &dof, NULL);CHKERRQ(ierr);
215234d8b122SPatrick Farrell       if (dof == 0) {
215334d8b122SPatrick Farrell         patch->matWithArtificial[i] = NULL;
215434d8b122SPatrick Farrell         continue;
215534d8b122SPatrick Farrell       }
215634d8b122SPatrick Farrell 
215734d8b122SPatrick Farrell       ierr = PCPatchCreateMatrix_Private(pc, i, &matSquare, PETSC_TRUE);CHKERRQ(ierr);
215834d8b122SPatrick Farrell       ierr = MatZeroEntries(matSquare);CHKERRQ(ierr);
215934d8b122SPatrick Farrell       ierr = PCPatchComputeOperator_Internal(pc, NULL, matSquare, i, PETSC_TRUE);CHKERRQ(ierr);
216034d8b122SPatrick Farrell 
216134d8b122SPatrick Farrell       ierr = MatGetSize(matSquare, &dof, NULL);CHKERRQ(ierr);
216234d8b122SPatrick Farrell       ierr = ISCreateStride(PETSC_COMM_SELF, dof, 0, 1, &rowis); CHKERRQ(ierr);
216334d8b122SPatrick Farrell       if(pc->setupcalled) {
216434d8b122SPatrick Farrell         ierr = MatCreateSubMatrix(matSquare, rowis, patch->dofMappingWithoutToWithArtificial[i], MAT_REUSE_MATRIX, &patch->matWithArtificial[i]); CHKERRQ(ierr);
216534d8b122SPatrick Farrell       } else {
216634d8b122SPatrick Farrell         ierr = MatCreateSubMatrix(matSquare, rowis, patch->dofMappingWithoutToWithArtificial[i], MAT_INITIAL_MATRIX, &patch->matWithArtificial[i]); CHKERRQ(ierr);
216734d8b122SPatrick Farrell       }
216834d8b122SPatrick Farrell       ierr = ISDestroy(&rowis); CHKERRQ(ierr);
216934d8b122SPatrick Farrell       ierr = MatDestroy(&matSquare);CHKERRQ(ierr);
217034d8b122SPatrick Farrell     }
217134d8b122SPatrick Farrell   }
2172dadc69c5SMatthew G. Knepley   PetscFunctionReturn(0);
2173dadc69c5SMatthew G. Knepley }
2174dadc69c5SMatthew G. Knepley 
21754bbf5ea8SMatthew G. Knepley static PetscErrorCode PCSetUp_PATCH(PC pc)
21764bbf5ea8SMatthew G. Knepley {
21774bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
2178557beb66SLawrence Mitchell   PetscInt       i;
217939fd2e8aSPatrick Farrell   PetscBool       isNonlinear;
21804bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
21814bbf5ea8SMatthew G. Knepley 
21824bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
21834bbf5ea8SMatthew G. Knepley   if (!pc->setupcalled) {
21844bbf5ea8SMatthew G. Knepley     PetscInt pStart, pEnd, p;
21854bbf5ea8SMatthew G. Knepley     PetscInt localSize;
21864bbf5ea8SMatthew G. Knepley 
21874bbf5ea8SMatthew G. Knepley     ierr = PetscLogEventBegin(PC_Patch_CreatePatches, pc, 0, 0, 0);CHKERRQ(ierr);
21884bbf5ea8SMatthew G. Knepley 
2189debbdec3SPatrick Farrell     isNonlinear = patch->isNonlinear;
21905f824522SMatthew G. Knepley     if (!patch->nsubspaces) {
21915f824522SMatthew G. Knepley       DM           dm;
21925f824522SMatthew G. Knepley       PetscDS      prob;
21935f824522SMatthew G. Knepley       PetscSection s;
2194e72c1634SMatthew G. Knepley       PetscInt     cStart, cEnd, c, Nf, f, numGlobalBcs = 0, *globalBcs, *Nb, totNb = 0, **cellDofs;
21955f824522SMatthew G. Knepley 
21965f824522SMatthew G. Knepley       ierr = PCGetDM(pc, &dm);CHKERRQ(ierr);
21975f824522SMatthew G. Knepley       if (!dm) SETERRQ(PetscObjectComm((PetscObject) pc), PETSC_ERR_ARG_WRONG, "Must set DM for PCPATCH or call PCPatchSetDiscretisationInfo()");
21985f824522SMatthew G. Knepley       ierr = DMGetDefaultSection(dm, &s);CHKERRQ(ierr);
21995f824522SMatthew G. Knepley       ierr = PetscSectionGetNumFields(s, &Nf);CHKERRQ(ierr);
22005f824522SMatthew G. Knepley       ierr = PetscSectionGetChart(s, &pStart, &pEnd);CHKERRQ(ierr);
22015f824522SMatthew G. Knepley       for (p = pStart; p < pEnd; ++p) {
22025f824522SMatthew G. Knepley         PetscInt cdof;
22035f824522SMatthew G. Knepley         ierr = PetscSectionGetConstraintDof(s, p, &cdof);CHKERRQ(ierr);
22045f824522SMatthew G. Knepley         numGlobalBcs += cdof;
22055f824522SMatthew G. Knepley       }
22065f824522SMatthew G. Knepley       ierr = DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd);CHKERRQ(ierr);
22075f824522SMatthew G. Knepley       ierr = DMGetDS(dm, &prob);CHKERRQ(ierr);
22085f824522SMatthew G. Knepley       ierr = PetscMalloc3(Nf, &Nb, Nf, &cellDofs, numGlobalBcs, &globalBcs);CHKERRQ(ierr);
22095f824522SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
22105f824522SMatthew G. Knepley         PetscFE        fe;
22115f824522SMatthew G. Knepley         PetscDualSpace sp;
22125f824522SMatthew G. Knepley         PetscInt       cdoff = 0;
22135f824522SMatthew G. Knepley 
22145f824522SMatthew G. Knepley         ierr = PetscDSGetDiscretization(prob, f, (PetscObject *) &fe);CHKERRQ(ierr);
22155f824522SMatthew G. Knepley         /* ierr = PetscFEGetNumComponents(fe, &Nc[f]);CHKERRQ(ierr); */
22165f824522SMatthew G. Knepley         ierr = PetscFEGetDualSpace(fe, &sp);CHKERRQ(ierr);
22175f824522SMatthew G. Knepley         ierr = PetscDualSpaceGetDimension(sp, &Nb[f]);CHKERRQ(ierr);
22185f824522SMatthew G. Knepley         totNb += Nb[f];
22195f824522SMatthew G. Knepley 
22205f824522SMatthew G. Knepley         ierr = PetscMalloc1((cEnd-cStart)*Nb[f], &cellDofs[f]);CHKERRQ(ierr);
22215f824522SMatthew G. Knepley         for (c = cStart; c < cEnd; ++c) {
22225f824522SMatthew G. Knepley           PetscInt *closure = NULL;
22235f824522SMatthew G. Knepley           PetscInt  clSize  = 0, cl;
22245f824522SMatthew G. Knepley 
22255f824522SMatthew G. Knepley           ierr = DMPlexGetTransitiveClosure(dm, c, PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
22265f824522SMatthew G. Knepley           for (cl = 0; cl < clSize*2; cl += 2) {
22275f824522SMatthew G. Knepley             const PetscInt p = closure[cl];
22285f824522SMatthew G. Knepley             PetscInt       fdof, d, foff;
22295f824522SMatthew G. Knepley 
22305f824522SMatthew G. Knepley             ierr = PetscSectionGetFieldDof(s, p, f, &fdof);CHKERRQ(ierr);
22315f824522SMatthew G. Knepley             ierr = PetscSectionGetFieldOffset(s, p, f, &foff);CHKERRQ(ierr);
22325f824522SMatthew G. Knepley             for (d = 0; d < fdof; ++d, ++cdoff) cellDofs[f][cdoff] = foff + d;
22335f824522SMatthew G. Knepley           }
22345f824522SMatthew G. Knepley           ierr = DMPlexRestoreTransitiveClosure(dm, c, PETSC_TRUE, &clSize, &closure);CHKERRQ(ierr);
22355f824522SMatthew G. Knepley         }
22365f824522SMatthew G. Knepley         if (cdoff != (cEnd-cStart)*Nb[f]) SETERRQ4(PetscObjectComm((PetscObject) pc), PETSC_ERR_ARG_SIZ, "Total number of cellDofs %D for field %D should be Nc (%D) * cellDof (%D)", cdoff, f, cEnd-cStart, Nb[f]);
22375f824522SMatthew G. Knepley       }
22385f824522SMatthew G. Knepley       numGlobalBcs = 0;
22395f824522SMatthew G. Knepley       for (p = pStart; p < pEnd; ++p) {
22405f824522SMatthew G. Knepley         const PetscInt *ind;
22415f824522SMatthew G. Knepley         PetscInt        off, cdof, d;
22425f824522SMatthew G. Knepley 
22435f824522SMatthew G. Knepley         ierr = PetscSectionGetOffset(s, p, &off);CHKERRQ(ierr);
22445f824522SMatthew G. Knepley         ierr = PetscSectionGetConstraintDof(s, p, &cdof);CHKERRQ(ierr);
22455f824522SMatthew G. Knepley         ierr = PetscSectionGetConstraintIndices(s, p, &ind);CHKERRQ(ierr);
22465f824522SMatthew G. Knepley         for (d = 0; d < cdof; ++d) globalBcs[numGlobalBcs++] = off + ind[d];
22475f824522SMatthew G. Knepley       }
22485f824522SMatthew G. Knepley 
22495f824522SMatthew G. Knepley       ierr = PCPatchSetDiscretisationInfoCombined(pc, dm, Nb, (const PetscInt **) cellDofs, numGlobalBcs, globalBcs, numGlobalBcs, globalBcs);CHKERRQ(ierr);
22505f824522SMatthew G. Knepley       for (f = 0; f < Nf; ++f) {
22515f824522SMatthew G. Knepley         ierr = PetscFree(cellDofs[f]);CHKERRQ(ierr);
22525f824522SMatthew G. Knepley       }
22535f824522SMatthew G. Knepley       ierr = PetscFree3(Nb, cellDofs, globalBcs);CHKERRQ(ierr);
225492d50984SMatthew G. Knepley       ierr = PCPatchSetComputeFunction(pc, PCPatchComputeFunction_DMPlex_Private, NULL);CHKERRQ(ierr);
22555f824522SMatthew G. Knepley       ierr = PCPatchSetComputeOperator(pc, PCPatchComputeOperator_DMPlex_Private, NULL);CHKERRQ(ierr);
22565f824522SMatthew G. Knepley     }
22575f824522SMatthew G. Knepley 
22584bbf5ea8SMatthew G. Knepley     localSize = patch->subspaceOffsets[patch->nsubspaces];
22591202d238SPatrick Farrell     ierr = VecCreateSeq(PETSC_COMM_SELF, localSize, &patch->localRHS);CHKERRQ(ierr);
22601202d238SPatrick Farrell     ierr = VecSetUp(patch->localRHS);CHKERRQ(ierr);
22611202d238SPatrick Farrell     ierr = VecDuplicate(patch->localRHS, &patch->localUpdate);CHKERRQ(ierr);
22624bbf5ea8SMatthew G. Knepley     ierr = PCPatchCreateCellPatches(pc);CHKERRQ(ierr);
22634bbf5ea8SMatthew G. Knepley     ierr = PCPatchCreateCellPatchDiscretisationInfo(pc);CHKERRQ(ierr);
22644bbf5ea8SMatthew G. Knepley 
22654bbf5ea8SMatthew G. Knepley     /* OK, now build the work vectors */
22664bbf5ea8SMatthew G. Knepley     ierr = PetscSectionGetChart(patch->gtolCounts, &pStart, &pEnd);CHKERRQ(ierr);
22671202d238SPatrick Farrell     ierr = PetscMalloc1(patch->npatch, &patch->patchRHS);CHKERRQ(ierr);
22681202d238SPatrick Farrell     ierr = PetscMalloc1(patch->npatch, &patch->patchUpdate);CHKERRQ(ierr);
2269c2e6f3c0SFlorian Wechsung 
227061c4b389SFlorian Wechsung     if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
22711202d238SPatrick Farrell       ierr = PetscMalloc1(patch->npatch, &patch->patchRHSWithArtificial);CHKERRQ(ierr);
2272c2e6f3c0SFlorian Wechsung       ierr = PetscMalloc1(patch->npatch, &patch->dofMappingWithoutToWithArtificial);CHKERRQ(ierr);
2273c2e6f3c0SFlorian Wechsung     }
22740904074fSPatrick Farrell     if (isNonlinear) {
22750904074fSPatrick Farrell       ierr = PetscMalloc1(patch->npatch, &patch->dofMappingWithoutToWithAll);CHKERRQ(ierr);
22760904074fSPatrick Farrell     }
22774bbf5ea8SMatthew G. Knepley     for (p = pStart; p < pEnd; ++p) {
22784bbf5ea8SMatthew G. Knepley       PetscInt dof;
22794bbf5ea8SMatthew G. Knepley 
22804bbf5ea8SMatthew G. Knepley       ierr = PetscSectionGetDof(patch->gtolCounts, p, &dof);CHKERRQ(ierr);
22811202d238SPatrick Farrell       ierr = VecCreateSeq(PETSC_COMM_SELF, dof, &patch->patchRHS[p-pStart]);CHKERRQ(ierr);
22821202d238SPatrick Farrell       ierr = VecSetUp(patch->patchRHS[p-pStart]);CHKERRQ(ierr);
22831202d238SPatrick Farrell       ierr = VecCreateSeq(PETSC_COMM_SELF, dof, &patch->patchUpdate[p-pStart]);CHKERRQ(ierr);
22841202d238SPatrick Farrell       ierr = VecSetUp(patch->patchUpdate[p-pStart]);CHKERRQ(ierr);
22850904074fSPatrick Farrell       if (patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
22863bb0e8f7SKarl Rupp         const PetscInt    *gtolArray, *gtolArrayWithArtificial = NULL;
22873bb0e8f7SKarl Rupp         PetscInt           numPatchDofs, offset;
22883bb0e8f7SKarl Rupp         PetscInt           numPatchDofsWithArtificial, offsetWithArtificial;
22893bb0e8f7SKarl Rupp         PetscInt           dofWithoutArtificialCounter = 0;
22903bb0e8f7SKarl Rupp         PetscInt          *patchWithoutArtificialToWithArtificialArray;
22913bb0e8f7SKarl Rupp 
2292c2e6f3c0SFlorian Wechsung         ierr = PetscSectionGetDof(patch->gtolCountsWithArtificial, p, &dof);CHKERRQ(ierr);
22931202d238SPatrick Farrell         ierr = VecCreateSeq(PETSC_COMM_SELF, dof, &patch->patchRHSWithArtificial[p-pStart]);CHKERRQ(ierr);
22941202d238SPatrick Farrell         ierr = VecSetUp(patch->patchRHSWithArtificial[p-pStart]);CHKERRQ(ierr);
2295c2e6f3c0SFlorian Wechsung 
2296e047a90bSFlorian Wechsung         /* Now build the mapping that for a dof in a patch WITHOUT dofs that have artificial bcs gives the */
2297e047a90bSFlorian Wechsung         /* the index in the patch with all dofs */
2298c2e6f3c0SFlorian Wechsung         ierr = ISGetIndices(patch->gtol, &gtolArray);CHKERRQ(ierr);
229963deea8eSPatrick Farrell 
2300c2e6f3c0SFlorian Wechsung         ierr = PetscSectionGetDof(patch->gtolCounts, p, &numPatchDofs);CHKERRQ(ierr);
230147aca4a6SPatrick Farrell         if (numPatchDofs == 0) {
230247aca4a6SPatrick Farrell           patch->dofMappingWithoutToWithArtificial[p-pStart] = NULL;
230347aca4a6SPatrick Farrell           continue;
230447aca4a6SPatrick Farrell         }
230563deea8eSPatrick Farrell 
2306c2e6f3c0SFlorian Wechsung         ierr = PetscSectionGetOffset(patch->gtolCounts, p, &offset);CHKERRQ(ierr);
2307c2e6f3c0SFlorian Wechsung         ierr = ISGetIndices(patch->gtolWithArtificial, &gtolArrayWithArtificial);CHKERRQ(ierr);
2308c2e6f3c0SFlorian Wechsung         ierr = PetscSectionGetDof(patch->gtolCountsWithArtificial, p, &numPatchDofsWithArtificial);CHKERRQ(ierr);
2309c2e6f3c0SFlorian Wechsung         ierr = PetscSectionGetOffset(patch->gtolCountsWithArtificial, p, &offsetWithArtificial);CHKERRQ(ierr);
2310c2e6f3c0SFlorian Wechsung 
2311c2e6f3c0SFlorian Wechsung         ierr = PetscMalloc1(numPatchDofs, &patchWithoutArtificialToWithArtificialArray);CHKERRQ(ierr);
2312b0c21b6aSKarl Rupp         for (i=0; i<numPatchDofsWithArtificial; i++) {
2313e047a90bSFlorian Wechsung           if (gtolArrayWithArtificial[i+offsetWithArtificial] == gtolArray[offset+dofWithoutArtificialCounter]) {
2314c2e6f3c0SFlorian Wechsung             patchWithoutArtificialToWithArtificialArray[dofWithoutArtificialCounter] = i;
2315c2e6f3c0SFlorian Wechsung             dofWithoutArtificialCounter++;
2316c2e6f3c0SFlorian Wechsung             if (dofWithoutArtificialCounter == numPatchDofs)
2317c2e6f3c0SFlorian Wechsung               break;
2318c2e6f3c0SFlorian Wechsung           }
2319c2e6f3c0SFlorian Wechsung         }
2320168bb5e4SPatrick Farrell         ierr = ISCreateGeneral(PETSC_COMM_SELF, numPatchDofs, patchWithoutArtificialToWithArtificialArray, PETSC_OWN_POINTER, &patch->dofMappingWithoutToWithArtificial[p-pStart]);CHKERRQ(ierr);
2321c2e6f3c0SFlorian Wechsung         ierr = ISRestoreIndices(patch->gtol, &gtolArray);CHKERRQ(ierr);
2322c2e6f3c0SFlorian Wechsung         ierr = ISRestoreIndices(patch->gtolWithArtificial, &gtolArrayWithArtificial);CHKERRQ(ierr);
2323c2e6f3c0SFlorian Wechsung       }
23240904074fSPatrick Farrell       if (isNonlinear) {
23250904074fSPatrick Farrell         const PetscInt    *gtolArray, *gtolArrayWithAll = NULL;
23260904074fSPatrick Farrell         PetscInt           numPatchDofs, offset;
23270904074fSPatrick Farrell         PetscInt           numPatchDofsWithAll, offsetWithAll;
23280904074fSPatrick Farrell         PetscInt           dofWithoutAllCounter = 0;
23290904074fSPatrick Farrell         PetscInt          *patchWithoutAllToWithAllArray;
23300904074fSPatrick Farrell 
23310904074fSPatrick Farrell         /* Now build the mapping that for a dof in a patch WITHOUT dofs that have artificial bcs gives the */
23320904074fSPatrick Farrell         /* the index in the patch with all dofs */
23330904074fSPatrick Farrell         ierr = ISGetIndices(patch->gtol, &gtolArray);CHKERRQ(ierr);
23340904074fSPatrick Farrell 
23350904074fSPatrick Farrell         ierr = PetscSectionGetDof(patch->gtolCounts, p, &numPatchDofs);CHKERRQ(ierr);
233647aca4a6SPatrick Farrell         if (numPatchDofs == 0) {
2337b88cb22dSPatrick Farrell           patch->dofMappingWithoutToWithAll[p-pStart] = NULL;
233847aca4a6SPatrick Farrell           continue;
233947aca4a6SPatrick Farrell         }
23400904074fSPatrick Farrell 
23410904074fSPatrick Farrell         ierr = PetscSectionGetOffset(patch->gtolCounts, p, &offset);CHKERRQ(ierr);
23420904074fSPatrick Farrell         ierr = ISGetIndices(patch->gtolWithAll, &gtolArrayWithAll);CHKERRQ(ierr);
23430904074fSPatrick Farrell         ierr = PetscSectionGetDof(patch->gtolCountsWithAll, p, &numPatchDofsWithAll);CHKERRQ(ierr);
23440904074fSPatrick Farrell         ierr = PetscSectionGetOffset(patch->gtolCountsWithAll, p, &offsetWithAll);CHKERRQ(ierr);
23450904074fSPatrick Farrell 
23460904074fSPatrick Farrell         ierr = PetscMalloc1(numPatchDofs, &patchWithoutAllToWithAllArray);CHKERRQ(ierr);
23470904074fSPatrick Farrell 
23480904074fSPatrick Farrell         for (i=0; i<numPatchDofsWithAll; i++) {
23490904074fSPatrick Farrell           if (gtolArrayWithAll[i+offsetWithAll] == gtolArray[offset+dofWithoutAllCounter]) {
23500904074fSPatrick Farrell             patchWithoutAllToWithAllArray[dofWithoutAllCounter] = i;
23510904074fSPatrick Farrell             dofWithoutAllCounter++;
23520904074fSPatrick Farrell             if (dofWithoutAllCounter == numPatchDofs)
23530904074fSPatrick Farrell               break;
23540904074fSPatrick Farrell           }
23550904074fSPatrick Farrell         }
2356168bb5e4SPatrick Farrell         ierr = ISCreateGeneral(PETSC_COMM_SELF, numPatchDofs, patchWithoutAllToWithAllArray, PETSC_OWN_POINTER, &patch->dofMappingWithoutToWithAll[p-pStart]);CHKERRQ(ierr);
23570904074fSPatrick Farrell         ierr = ISRestoreIndices(patch->gtol, &gtolArray);CHKERRQ(ierr);
23580904074fSPatrick Farrell         ierr = ISRestoreIndices(patch->gtolWithAll, &gtolArrayWithAll);CHKERRQ(ierr);
23590904074fSPatrick Farrell       }
23604bbf5ea8SMatthew G. Knepley     }
23614bbf5ea8SMatthew G. Knepley     if (patch->save_operators) {
23624bbf5ea8SMatthew G. Knepley       ierr = PetscMalloc1(patch->npatch, &patch->mat);CHKERRQ(ierr);
23634bbf5ea8SMatthew G. Knepley       for (i = 0; i < patch->npatch; ++i) {
2364c2e6f3c0SFlorian Wechsung         ierr = PCPatchCreateMatrix_Private(pc, i, &patch->mat[i], PETSC_FALSE);CHKERRQ(ierr);
23654bbf5ea8SMatthew G. Knepley       }
23664bbf5ea8SMatthew G. Knepley     }
23674bbf5ea8SMatthew G. Knepley     ierr = PetscLogEventEnd(PC_Patch_CreatePatches, pc, 0, 0, 0);CHKERRQ(ierr);
23684bbf5ea8SMatthew G. Knepley 
23694bbf5ea8SMatthew G. Knepley     /* If desired, calculate weights for dof multiplicity */
23704bbf5ea8SMatthew G. Knepley     if (patch->partition_of_unity) {
23713bb0e8f7SKarl Rupp       PetscScalar *input = NULL;
23723bb0e8f7SKarl Rupp       PetscScalar *output = NULL;
23733bb0e8f7SKarl Rupp       Vec global;
23743bb0e8f7SKarl Rupp 
23751202d238SPatrick Farrell       ierr = VecDuplicate(patch->localRHS, &patch->dof_weights);CHKERRQ(ierr);
237661c4b389SFlorian Wechsung       if(patch->local_composition_type == PC_COMPOSITE_ADDITIVE) {
23774bbf5ea8SMatthew G. Knepley         for (i = 0; i < patch->npatch; ++i) {
23784bbf5ea8SMatthew G. Knepley           PetscInt dof;
23794bbf5ea8SMatthew G. Knepley 
23804bbf5ea8SMatthew G. Knepley           ierr = PetscSectionGetDof(patch->gtolCounts, i+pStart, &dof);CHKERRQ(ierr);
23814bbf5ea8SMatthew G. Knepley           if (dof <= 0) continue;
23821202d238SPatrick Farrell           ierr = VecSet(patch->patchRHS[i], 1.0);CHKERRQ(ierr);
23830904074fSPatrick Farrell           ierr = PCPatch_ScatterLocal_Private(pc, i+pStart, patch->patchRHS[i], patch->dof_weights, ADD_VALUES, SCATTER_REVERSE, SCATTER_INTERIOR);CHKERRQ(ierr);
23844bbf5ea8SMatthew G. Knepley         }
2385c2e6f3c0SFlorian Wechsung       } else {
2386e047a90bSFlorian Wechsung         /* multiplicative is actually only locally multiplicative and globally additive. need the pou where the mesh decomposition overlaps */
2387c2e6f3c0SFlorian Wechsung         ierr = VecSet(patch->dof_weights, 1.0);CHKERRQ(ierr);
23884bbf5ea8SMatthew G. Knepley       }
2389d132cafaSFlorian Wechsung 
2390d132cafaSFlorian Wechsung       VecDuplicate(patch->dof_weights, &global);
2391d132cafaSFlorian Wechsung       VecSet(global, 0.);
2392d132cafaSFlorian Wechsung 
2393d132cafaSFlorian Wechsung       ierr = VecGetArray(patch->dof_weights, &input);CHKERRQ(ierr);
2394d132cafaSFlorian Wechsung       ierr = VecGetArray(global, &output);CHKERRQ(ierr);
2395d132cafaSFlorian Wechsung       ierr = PetscSFReduceBegin(patch->defaultSF, MPIU_SCALAR, input, output, MPI_SUM);CHKERRQ(ierr);
2396d132cafaSFlorian Wechsung       ierr = PetscSFReduceEnd(patch->defaultSF, MPIU_SCALAR, input, output, MPI_SUM);CHKERRQ(ierr);
2397d132cafaSFlorian Wechsung       ierr = VecRestoreArray(patch->dof_weights, &input);CHKERRQ(ierr);
2398d132cafaSFlorian Wechsung       ierr = VecRestoreArray(global, &output);CHKERRQ(ierr);
2399d132cafaSFlorian Wechsung 
240005528938SFlorian Wechsung       ierr = VecReciprocal(global);CHKERRQ(ierr);
2401d132cafaSFlorian Wechsung 
2402d132cafaSFlorian Wechsung       ierr = VecGetArray(patch->dof_weights, &output);CHKERRQ(ierr);
2403d132cafaSFlorian Wechsung       ierr = VecGetArray(global, &input);CHKERRQ(ierr);
2404d132cafaSFlorian Wechsung       ierr = PetscSFBcastBegin(patch->defaultSF, MPIU_SCALAR, input, output);CHKERRQ(ierr);
2405d132cafaSFlorian Wechsung       ierr = PetscSFBcastEnd(patch->defaultSF, MPIU_SCALAR, input, output);CHKERRQ(ierr);
2406d132cafaSFlorian Wechsung       ierr = VecRestoreArray(patch->dof_weights, &output);CHKERRQ(ierr);
2407d132cafaSFlorian Wechsung       ierr = VecRestoreArray(global, &input);CHKERRQ(ierr);
2408d132cafaSFlorian Wechsung       ierr = VecDestroy(&global);CHKERRQ(ierr);
24094bbf5ea8SMatthew G. Knepley     }
241061c4b389SFlorian Wechsung     if(patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE && patch->save_operators) {
241196b79ebeSFlorian Wechsung       ierr = PetscMalloc1(patch->npatch, &patch->matWithArtificial);CHKERRQ(ierr);
24124bbf5ea8SMatthew G. Knepley     }
24134bbf5ea8SMatthew G. Knepley   }
2414dadc69c5SMatthew G. Knepley   ierr = (*patch->setupsolver)(pc);CHKERRQ(ierr);
2415dadc69c5SMatthew G. Knepley   PetscFunctionReturn(0);
24164bbf5ea8SMatthew G. Knepley }
2417dadc69c5SMatthew G. Knepley 
2418dadc69c5SMatthew G. Knepley static PetscErrorCode PCApply_PATCH_Linear(PC pc, PetscInt i, Vec x, Vec y)
2419dadc69c5SMatthew G. Knepley {
2420dadc69c5SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
2421dadc69c5SMatthew G. Knepley   KSP            ksp   = (KSP) patch->solver[i];
2422dadc69c5SMatthew G. Knepley   PetscErrorCode ierr;
2423dadc69c5SMatthew G. Knepley 
2424dadc69c5SMatthew G. Knepley   PetscFunctionBegin;
2425dadc69c5SMatthew G. Knepley   if (!patch->save_operators) {
2426dadc69c5SMatthew G. Knepley     Mat mat;
2427dadc69c5SMatthew G. Knepley 
242834d8b122SPatrick Farrell     ierr = PCPatchCreateMatrix_Private(pc, i, &mat, PETSC_FALSE);CHKERRQ(ierr);
2429dadc69c5SMatthew G. Knepley     /* Populate operator here. */
243034d8b122SPatrick Farrell     ierr = PCPatchComputeOperator_Internal(pc, NULL, mat, i, PETSC_FALSE);CHKERRQ(ierr);
2431dadc69c5SMatthew G. Knepley     ierr = KSPSetOperators(ksp, mat, mat);CHKERRQ(ierr);
2432dadc69c5SMatthew G. Knepley     /* Drop reference so the KSPSetOperators below will blow it away. */
2433dadc69c5SMatthew G. Knepley     ierr = MatDestroy(&mat);CHKERRQ(ierr);
2434dadc69c5SMatthew G. Knepley   }
2435dadc69c5SMatthew G. Knepley   ierr = PetscLogEventBegin(PC_Patch_Solve, pc, 0, 0, 0);CHKERRQ(ierr);
2436dadc69c5SMatthew G. Knepley   if (!ksp->setfromoptionscalled) {
2437dadc69c5SMatthew G. Knepley     ierr = KSPSetFromOptions(ksp);CHKERRQ(ierr);
2438dadc69c5SMatthew G. Knepley   }
2439dadc69c5SMatthew G. Knepley   ierr = KSPSolve(ksp, x, y);CHKERRQ(ierr);
2440ddad275aSPatrick Farrell   ierr = KSPCheckSolve(ksp, pc, y);CHKERRQ(ierr);
2441dadc69c5SMatthew G. Knepley   ierr = PetscLogEventEnd(PC_Patch_Solve, pc, 0, 0, 0);CHKERRQ(ierr);
2442dadc69c5SMatthew G. Knepley   if (!patch->save_operators) {
2443dadc69c5SMatthew G. Knepley     PC pc;
2444dadc69c5SMatthew G. Knepley     ierr = KSPSetOperators(ksp, NULL, NULL);CHKERRQ(ierr);
2445dadc69c5SMatthew G. Knepley     ierr = KSPGetPC(ksp, &pc);CHKERRQ(ierr);
2446dadc69c5SMatthew G. Knepley     /* Destroy PC context too, otherwise the factored matrix hangs around. */
2447dadc69c5SMatthew G. Knepley     ierr = PCReset(pc);CHKERRQ(ierr);
24484bbf5ea8SMatthew G. Knepley   }
24494bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
24504bbf5ea8SMatthew G. Knepley }
24514bbf5ea8SMatthew G. Knepley 
24526c9c532dSPatrick Farrell static PetscErrorCode PCUpdateMultiplicative_PATCH_Linear(PC pc, PetscInt i, PetscInt pStart)
24536c9c532dSPatrick Farrell {
24546c9c532dSPatrick Farrell   PC_PATCH      *patch = (PC_PATCH *) pc->data;
24556c9c532dSPatrick Farrell   Mat multMat;
24566c9c532dSPatrick Farrell   PetscErrorCode ierr;
24576c9c532dSPatrick Farrell 
24584d04e9f1SPatrick Farrell   PetscFunctionBegin;
24594d04e9f1SPatrick Farrell 
24606c9c532dSPatrick Farrell   if (patch->save_operators) {
24616c9c532dSPatrick Farrell     multMat = patch->matWithArtificial[i];
24626c9c532dSPatrick Farrell   } else {
24636c9c532dSPatrick Farrell     /*Very inefficient, hopefully we can just assemble the rectangular matrix in the first place.*/
24646c9c532dSPatrick Farrell     Mat matSquare;
24656c9c532dSPatrick Farrell     PetscInt dof;
24666c9c532dSPatrick Farrell     IS rowis;
24676c9c532dSPatrick Farrell     ierr = PCPatchCreateMatrix_Private(pc, i, &matSquare, PETSC_TRUE);CHKERRQ(ierr);
24686c9c532dSPatrick Farrell     ierr = MatZeroEntries(matSquare);CHKERRQ(ierr);
24696c9c532dSPatrick Farrell     ierr = PCPatchComputeOperator_Internal(pc, NULL, matSquare, i, PETSC_TRUE);CHKERRQ(ierr);
24706c9c532dSPatrick Farrell     ierr = MatGetSize(matSquare, &dof, NULL);CHKERRQ(ierr);
24716c9c532dSPatrick Farrell     ierr = ISCreateStride(PETSC_COMM_SELF, dof, 0, 1, &rowis); CHKERRQ(ierr);
24726c9c532dSPatrick Farrell     ierr = MatCreateSubMatrix(matSquare, rowis, patch->dofMappingWithoutToWithArtificial[i], MAT_INITIAL_MATRIX, &multMat); CHKERRQ(ierr);
24736c9c532dSPatrick Farrell     ierr = MatDestroy(&matSquare);CHKERRQ(ierr);
24746c9c532dSPatrick Farrell     ierr = ISDestroy(&rowis); CHKERRQ(ierr);
24756c9c532dSPatrick Farrell   }
24766c9c532dSPatrick Farrell   ierr = MatMult(multMat, patch->patchUpdate[i], patch->patchRHSWithArtificial[i]); CHKERRQ(ierr);
24776c9c532dSPatrick Farrell   ierr = VecScale(patch->patchRHSWithArtificial[i], -1.0); CHKERRQ(ierr);
24780904074fSPatrick Farrell   ierr = PCPatch_ScatterLocal_Private(pc, i + pStart, patch->patchRHSWithArtificial[i], patch->localRHS, ADD_VALUES, SCATTER_REVERSE, SCATTER_WITHARTIFICIAL); CHKERRQ(ierr);
24796c9c532dSPatrick Farrell   if (!patch->save_operators) {
24806c9c532dSPatrick Farrell     ierr = MatDestroy(&multMat); CHKERRQ(ierr);
24816c9c532dSPatrick Farrell   }
24824d04e9f1SPatrick Farrell   PetscFunctionReturn(0);
24836c9c532dSPatrick Farrell }
24846c9c532dSPatrick Farrell 
24854bbf5ea8SMatthew G. Knepley static PetscErrorCode PCApply_PATCH(PC pc, Vec x, Vec y)
24864bbf5ea8SMatthew G. Knepley {
24874bbf5ea8SMatthew G. Knepley   PC_PATCH          *patch    = (PC_PATCH *) pc->data;
24881202d238SPatrick Farrell   const PetscScalar *globalRHS  = NULL;
24891202d238SPatrick Farrell   PetscScalar       *localRHS   = NULL;
24901202d238SPatrick Farrell   PetscScalar       *globalUpdate  = NULL;
24914bbf5ea8SMatthew G. Knepley   const PetscInt    *bcNodes  = NULL;
24924bbf5ea8SMatthew G. Knepley   PetscInt           nsweep   = patch->symmetrise_sweep ? 2 : 1;
24934bbf5ea8SMatthew G. Knepley   PetscInt           start[2] = {0, 0};
24944bbf5ea8SMatthew G. Knepley   PetscInt           end[2]   = {-1, -1};
24954bbf5ea8SMatthew G. Knepley   const PetscInt     inc[2]   = {1, -1};
24961202d238SPatrick Farrell   const PetscScalar *localUpdate;
24974bbf5ea8SMatthew G. Knepley   const PetscInt    *iterationSet;
24984bbf5ea8SMatthew G. Knepley   PetscInt           pStart, numBcs, n, sweep, bc, j;
24994bbf5ea8SMatthew G. Knepley   PetscErrorCode     ierr;
25004bbf5ea8SMatthew G. Knepley 
25014bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
25024bbf5ea8SMatthew G. Knepley   ierr = PetscLogEventBegin(PC_Patch_Apply, pc, 0, 0, 0);CHKERRQ(ierr);
25034bbf5ea8SMatthew G. Knepley   ierr = PetscOptionsPushGetViewerOff(PETSC_TRUE);CHKERRQ(ierr);
250492d50984SMatthew G. Knepley   /* start, end, inc have 2 entries to manage a second backward sweep if we symmetrize */
25054bbf5ea8SMatthew G. Knepley   end[0]   = patch->npatch;
25064bbf5ea8SMatthew G. Knepley   start[1] = patch->npatch-1;
25074bbf5ea8SMatthew G. Knepley   if (patch->user_patches) {
25084bbf5ea8SMatthew G. Knepley     ierr = ISGetLocalSize(patch->iterationSet, &end[0]);CHKERRQ(ierr);
25094bbf5ea8SMatthew G. Knepley     start[1] = end[0] - 1;
25104bbf5ea8SMatthew G. Knepley     ierr = ISGetIndices(patch->iterationSet, &iterationSet);CHKERRQ(ierr);
25114bbf5ea8SMatthew G. Knepley   }
25124bbf5ea8SMatthew G. Knepley   /* Scatter from global space into overlapped local spaces */
25131202d238SPatrick Farrell   ierr = VecGetArrayRead(x, &globalRHS);CHKERRQ(ierr);
25141202d238SPatrick Farrell   ierr = VecGetArray(patch->localRHS, &localRHS);CHKERRQ(ierr);
25151202d238SPatrick Farrell   ierr = PetscSFBcastBegin(patch->defaultSF, MPIU_SCALAR, globalRHS, localRHS);CHKERRQ(ierr);
25161202d238SPatrick Farrell   ierr = PetscSFBcastEnd(patch->defaultSF, MPIU_SCALAR, globalRHS, localRHS);CHKERRQ(ierr);
25171202d238SPatrick Farrell   ierr = VecRestoreArrayRead(x, &globalRHS);CHKERRQ(ierr);
25181202d238SPatrick Farrell   ierr = VecRestoreArray(patch->localRHS, &localRHS);CHKERRQ(ierr);
25194bbf5ea8SMatthew G. Knepley 
25201202d238SPatrick Farrell   ierr = VecSet(patch->localUpdate, 0.0);CHKERRQ(ierr);
25214bbf5ea8SMatthew G. Knepley   ierr = PetscSectionGetChart(patch->gtolCounts, &pStart, NULL);CHKERRQ(ierr);
25224bbf5ea8SMatthew G. Knepley   for (sweep = 0; sweep < nsweep; sweep++) {
25234bbf5ea8SMatthew G. Knepley     for (j = start[sweep]; j*inc[sweep] < end[sweep]*inc[sweep]; j += inc[sweep]) {
25244bbf5ea8SMatthew G. Knepley       PetscInt i       = patch->user_patches ? iterationSet[j] : j;
25254bbf5ea8SMatthew G. Knepley       PetscInt start, len;
25264bbf5ea8SMatthew G. Knepley 
25274bbf5ea8SMatthew G. Knepley       ierr = PetscSectionGetDof(patch->gtolCounts, i+pStart, &len);CHKERRQ(ierr);
25284bbf5ea8SMatthew G. Knepley       ierr = PetscSectionGetOffset(patch->gtolCounts, i+pStart, &start);CHKERRQ(ierr);
25294bbf5ea8SMatthew G. Knepley       /* TODO: Squash out these guys in the setup as well. */
25304bbf5ea8SMatthew G. Knepley       if (len <= 0) continue;
25314bbf5ea8SMatthew G. Knepley       /* TODO: Do we need different scatters for X and Y? */
25320904074fSPatrick Farrell       ierr = PCPatch_ScatterLocal_Private(pc, i+pStart, patch->localRHS, patch->patchRHS[i], INSERT_VALUES, SCATTER_FORWARD, SCATTER_INTERIOR);CHKERRQ(ierr);
25331202d238SPatrick Farrell       ierr = (*patch->applysolver)(pc, i, patch->patchRHS[i], patch->patchUpdate[i]);CHKERRQ(ierr);
25340904074fSPatrick Farrell       ierr = PCPatch_ScatterLocal_Private(pc, i+pStart, patch->patchUpdate[i], patch->localUpdate, ADD_VALUES, SCATTER_REVERSE, SCATTER_INTERIOR);CHKERRQ(ierr);
253561c4b389SFlorian Wechsung       if(patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
25366c9c532dSPatrick Farrell         ierr = (*patch->updatemultiplicative)(pc, i, pStart);CHKERRQ(ierr);
2537c2e6f3c0SFlorian Wechsung       }
25384bbf5ea8SMatthew G. Knepley     }
25394bbf5ea8SMatthew G. Knepley   }
25404bbf5ea8SMatthew G. Knepley   if (patch->user_patches) {ierr = ISRestoreIndices(patch->iterationSet, &iterationSet);CHKERRQ(ierr);}
25414bbf5ea8SMatthew G. Knepley   /* XXX: should we do this on the global vector? */
254273ec7555SLawrence Mitchell   if (patch->partition_of_unity) {
25431202d238SPatrick Farrell     ierr = VecPointwiseMult(patch->localUpdate, patch->localUpdate, patch->dof_weights);CHKERRQ(ierr);
25444bbf5ea8SMatthew G. Knepley   }
25451202d238SPatrick Farrell   /* Now patch->localUpdate contains the solution of the patch solves, so we need to combine them all. */
25464bbf5ea8SMatthew G. Knepley   ierr = VecSet(y, 0.0);CHKERRQ(ierr);
25471202d238SPatrick Farrell   ierr = VecGetArray(y, &globalUpdate);CHKERRQ(ierr);
25481202d238SPatrick Farrell   ierr = VecGetArrayRead(patch->localUpdate, &localUpdate);CHKERRQ(ierr);
25491202d238SPatrick Farrell   ierr = PetscSFReduceBegin(patch->defaultSF, MPIU_SCALAR, localUpdate, globalUpdate, MPI_SUM);CHKERRQ(ierr);
25501202d238SPatrick Farrell   ierr = PetscSFReduceEnd(patch->defaultSF, MPIU_SCALAR, localUpdate, globalUpdate, MPI_SUM);CHKERRQ(ierr);
25511202d238SPatrick Farrell   ierr = VecRestoreArrayRead(patch->localUpdate, &localUpdate);CHKERRQ(ierr);
25524bbf5ea8SMatthew G. Knepley 
25534bbf5ea8SMatthew G. Knepley   /* Now we need to send the global BC values through */
25541202d238SPatrick Farrell   ierr = VecGetArrayRead(x, &globalRHS);CHKERRQ(ierr);
25554bbf5ea8SMatthew G. Knepley   ierr = ISGetSize(patch->globalBcNodes, &numBcs);CHKERRQ(ierr);
25564bbf5ea8SMatthew G. Knepley   ierr = ISGetIndices(patch->globalBcNodes, &bcNodes);CHKERRQ(ierr);
25574bbf5ea8SMatthew G. Knepley   ierr = VecGetLocalSize(x, &n);CHKERRQ(ierr);
25584bbf5ea8SMatthew G. Knepley   for (bc = 0; bc < numBcs; ++bc) {
25594bbf5ea8SMatthew G. Knepley     const PetscInt idx = bcNodes[bc];
25601202d238SPatrick Farrell     if (idx < n) globalUpdate[idx] = globalRHS[idx];
25614bbf5ea8SMatthew G. Knepley   }
25624bbf5ea8SMatthew G. Knepley 
25634bbf5ea8SMatthew G. Knepley   ierr = ISRestoreIndices(patch->globalBcNodes, &bcNodes);CHKERRQ(ierr);
25641202d238SPatrick Farrell   ierr = VecRestoreArrayRead(x, &globalRHS);CHKERRQ(ierr);
25651202d238SPatrick Farrell   ierr = VecRestoreArray(y, &globalUpdate);CHKERRQ(ierr);
25664bbf5ea8SMatthew G. Knepley 
25674bbf5ea8SMatthew G. Knepley   ierr = PetscOptionsPopGetViewerOff();CHKERRQ(ierr);
25684bbf5ea8SMatthew G. Knepley   ierr = PetscLogEventEnd(PC_Patch_Apply, pc, 0, 0, 0);CHKERRQ(ierr);
25694bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
25704bbf5ea8SMatthew G. Knepley }
25714bbf5ea8SMatthew G. Knepley 
2572dadc69c5SMatthew G. Knepley static PetscErrorCode PCReset_PATCH_Linear(PC pc)
2573dadc69c5SMatthew G. Knepley {
2574dadc69c5SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
2575dadc69c5SMatthew G. Knepley   PetscInt       i;
2576dadc69c5SMatthew G. Knepley   PetscErrorCode ierr;
2577dadc69c5SMatthew G. Knepley 
2578dadc69c5SMatthew G. Knepley   PetscFunctionBegin;
2579dadc69c5SMatthew G. Knepley   if (patch->solver) {
2580dadc69c5SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {ierr = KSPReset((KSP) patch->solver[i]);CHKERRQ(ierr);}
2581dadc69c5SMatthew G. Knepley   }
2582dadc69c5SMatthew G. Knepley   PetscFunctionReturn(0);
2583dadc69c5SMatthew G. Knepley }
2584dadc69c5SMatthew G. Knepley 
25854bbf5ea8SMatthew G. Knepley static PetscErrorCode PCReset_PATCH(PC pc)
25864bbf5ea8SMatthew G. Knepley {
25874bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
25884bbf5ea8SMatthew G. Knepley   PetscInt       i;
25894bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
25904bbf5ea8SMatthew G. Knepley 
25914bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
25924bbf5ea8SMatthew G. Knepley   /* TODO: Get rid of all these ifs */
25934bbf5ea8SMatthew G. Knepley   ierr = PetscSFDestroy(&patch->defaultSF);CHKERRQ(ierr);
25944bbf5ea8SMatthew G. Knepley   ierr = PetscSectionDestroy(&patch->cellCounts);CHKERRQ(ierr);
25955f824522SMatthew G. Knepley   ierr = PetscSectionDestroy(&patch->pointCounts);CHKERRQ(ierr);
25964bbf5ea8SMatthew G. Knepley   ierr = PetscSectionDestroy(&patch->cellNumbering);CHKERRQ(ierr);
25974bbf5ea8SMatthew G. Knepley   ierr = PetscSectionDestroy(&patch->gtolCounts);CHKERRQ(ierr);
25984bbf5ea8SMatthew G. Knepley   ierr = ISDestroy(&patch->gtol);CHKERRQ(ierr);
25994bbf5ea8SMatthew G. Knepley   ierr = ISDestroy(&patch->cells);CHKERRQ(ierr);
26005f824522SMatthew G. Knepley   ierr = ISDestroy(&patch->points);CHKERRQ(ierr);
26014bbf5ea8SMatthew G. Knepley   ierr = ISDestroy(&patch->dofs);CHKERRQ(ierr);
26025f824522SMatthew G. Knepley   ierr = ISDestroy(&patch->offs);CHKERRQ(ierr);
26035f824522SMatthew G. Knepley   ierr = PetscSectionDestroy(&patch->patchSection);CHKERRQ(ierr);
26044bbf5ea8SMatthew G. Knepley   ierr = ISDestroy(&patch->ghostBcNodes);CHKERRQ(ierr);
26054bbf5ea8SMatthew G. Knepley   ierr = ISDestroy(&patch->globalBcNodes);CHKERRQ(ierr);
260611ac8bb0SFlorian Wechsung   ierr = PetscSectionDestroy(&patch->gtolCountsWithArtificial);CHKERRQ(ierr);
260711ac8bb0SFlorian Wechsung   ierr = ISDestroy(&patch->gtolWithArtificial);CHKERRQ(ierr);
260811ac8bb0SFlorian Wechsung   ierr = ISDestroy(&patch->dofsWithArtificial);CHKERRQ(ierr);
260911ac8bb0SFlorian Wechsung   ierr = ISDestroy(&patch->offsWithArtificial);CHKERRQ(ierr);
26100904074fSPatrick Farrell   ierr = PetscSectionDestroy(&patch->gtolCountsWithAll);CHKERRQ(ierr);
26110904074fSPatrick Farrell   ierr = ISDestroy(&patch->gtolWithAll);CHKERRQ(ierr);
26120904074fSPatrick Farrell   ierr = ISDestroy(&patch->dofsWithAll);CHKERRQ(ierr);
26130904074fSPatrick Farrell   ierr = ISDestroy(&patch->offsWithAll);CHKERRQ(ierr);
261411ac8bb0SFlorian Wechsung 
26154bbf5ea8SMatthew G. Knepley 
26165f824522SMatthew G. Knepley   if (patch->dofSection) for (i = 0; i < patch->nsubspaces; i++) {ierr = PetscSectionDestroy(&patch->dofSection[i]);CHKERRQ(ierr);}
26174bbf5ea8SMatthew G. Knepley   ierr = PetscFree(patch->dofSection);CHKERRQ(ierr);
26184bbf5ea8SMatthew G. Knepley   ierr = PetscFree(patch->bs);CHKERRQ(ierr);
26194bbf5ea8SMatthew G. Knepley   ierr = PetscFree(patch->nodesPerCell);CHKERRQ(ierr);
26205f824522SMatthew G. Knepley   if (patch->cellNodeMap) for (i = 0; i < patch->nsubspaces; i++) {ierr = PetscFree(patch->cellNodeMap[i]);CHKERRQ(ierr);}
26214bbf5ea8SMatthew G. Knepley   ierr = PetscFree(patch->cellNodeMap);CHKERRQ(ierr);
26224bbf5ea8SMatthew G. Knepley   ierr = PetscFree(patch->subspaceOffsets);CHKERRQ(ierr);
26234bbf5ea8SMatthew G. Knepley 
2624dadc69c5SMatthew G. Knepley   ierr = (*patch->resetsolver)(pc);CHKERRQ(ierr);
26254bbf5ea8SMatthew G. Knepley 
2626e4c66b91SPatrick Farrell   if (patch->subspaces_to_exclude) {
2627e4c66b91SPatrick Farrell     PetscHSetIDestroy(&patch->subspaces_to_exclude);
2628e4c66b91SPatrick Farrell   }
2629e4c66b91SPatrick Farrell 
26301202d238SPatrick Farrell   ierr = VecDestroy(&patch->localRHS);CHKERRQ(ierr);
26311202d238SPatrick Farrell   ierr = VecDestroy(&patch->localUpdate);CHKERRQ(ierr);
26321202d238SPatrick Farrell   if (patch->patchRHS) {
26331202d238SPatrick Farrell     for (i = 0; i < patch->npatch; ++i) {ierr = VecDestroy(&patch->patchRHS[i]);CHKERRQ(ierr);}
26341202d238SPatrick Farrell     ierr = PetscFree(patch->patchRHS);CHKERRQ(ierr);
26354bbf5ea8SMatthew G. Knepley   }
26361202d238SPatrick Farrell   if (patch->patchUpdate) {
26371202d238SPatrick Farrell     for (i = 0; i < patch->npatch; ++i) {ierr = VecDestroy(&patch->patchUpdate[i]);CHKERRQ(ierr);}
26381202d238SPatrick Farrell     ierr = PetscFree(patch->patchUpdate);CHKERRQ(ierr);
26394bbf5ea8SMatthew G. Knepley   }
26404bbf5ea8SMatthew G. Knepley   ierr = VecDestroy(&patch->dof_weights);CHKERRQ(ierr);
26414bbf5ea8SMatthew G. Knepley   if (patch->patch_dof_weights) {
26425f824522SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {ierr = VecDestroy(&patch->patch_dof_weights[i]);CHKERRQ(ierr);}
26434bbf5ea8SMatthew G. Knepley     ierr = PetscFree(patch->patch_dof_weights);CHKERRQ(ierr);
26444bbf5ea8SMatthew G. Knepley   }
26454bbf5ea8SMatthew G. Knepley   if (patch->mat) {
26465f824522SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {ierr = MatDestroy(&patch->mat[i]);CHKERRQ(ierr);}
26474bbf5ea8SMatthew G. Knepley     ierr = PetscFree(patch->mat);CHKERRQ(ierr);
26485f824522SMatthew G. Knepley   }
264911ac8bb0SFlorian Wechsung   if (patch->matWithArtificial) {
265011ac8bb0SFlorian Wechsung     for (i = 0; i < patch->npatch; ++i) {ierr = MatDestroy(&patch->matWithArtificial[i]);CHKERRQ(ierr);}
265111ac8bb0SFlorian Wechsung     ierr = PetscFree(patch->matWithArtificial);CHKERRQ(ierr);
265211ac8bb0SFlorian Wechsung   }
26531202d238SPatrick Farrell   if (patch->patchRHSWithArtificial) {
26541202d238SPatrick Farrell     for (i = 0; i < patch->npatch; ++i) {ierr = VecDestroy(&patch->patchRHSWithArtificial[i]);CHKERRQ(ierr);}
26551202d238SPatrick Farrell     ierr = PetscFree(patch->patchRHSWithArtificial);CHKERRQ(ierr);
265611ac8bb0SFlorian Wechsung   }
265796b79ebeSFlorian Wechsung   if(patch->dofMappingWithoutToWithArtificial) {
265896b79ebeSFlorian Wechsung     for (i = 0; i < patch->npatch; ++i) {ierr = ISDestroy(&patch->dofMappingWithoutToWithArtificial[i]);CHKERRQ(ierr);}
265996b79ebeSFlorian Wechsung     ierr = PetscFree(patch->dofMappingWithoutToWithArtificial);CHKERRQ(ierr);
266096b79ebeSFlorian Wechsung 
266196b79ebeSFlorian Wechsung   }
26620904074fSPatrick Farrell   if(patch->dofMappingWithoutToWithAll) {
26630904074fSPatrick Farrell     for (i = 0; i < patch->npatch; ++i) {ierr = ISDestroy(&patch->dofMappingWithoutToWithAll[i]);CHKERRQ(ierr);}
26640904074fSPatrick Farrell     ierr = PetscFree(patch->dofMappingWithoutToWithAll);CHKERRQ(ierr);
26650904074fSPatrick Farrell 
26660904074fSPatrick Farrell   }
26674bbf5ea8SMatthew G. Knepley   ierr = PetscFree(patch->sub_mat_type);CHKERRQ(ierr);
26685f824522SMatthew G. Knepley   if (patch->userIS) {
26695f824522SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {ierr = ISDestroy(&patch->userIS[i]);CHKERRQ(ierr);}
26705f824522SMatthew G. Knepley     ierr = PetscFree(patch->userIS);CHKERRQ(ierr);
26715f824522SMatthew G. Knepley   }
26724bbf5ea8SMatthew G. Knepley   patch->bs          = 0;
26734bbf5ea8SMatthew G. Knepley   patch->cellNodeMap = NULL;
26747974b488SMatthew G. Knepley   patch->nsubspaces  = 0;
26754bbf5ea8SMatthew G. Knepley   ierr = ISDestroy(&patch->iterationSet);CHKERRQ(ierr);
26765f824522SMatthew G. Knepley 
26775f824522SMatthew G. Knepley   ierr = PetscViewerDestroy(&patch->viewerSection);CHKERRQ(ierr);
26784bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
26794bbf5ea8SMatthew G. Knepley }
26804bbf5ea8SMatthew G. Knepley 
2681dadc69c5SMatthew G. Knepley static PetscErrorCode PCDestroy_PATCH_Linear(PC pc)
26824bbf5ea8SMatthew G. Knepley {
26834bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
26844bbf5ea8SMatthew G. Knepley   PetscInt       i;
26854bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
26864bbf5ea8SMatthew G. Knepley 
26874bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
2688dadc69c5SMatthew G. Knepley   if (patch->solver) {
2689dadc69c5SMatthew G. Knepley     for (i = 0; i < patch->npatch; ++i) {ierr = KSPDestroy((KSP *) &patch->solver[i]);CHKERRQ(ierr);}
2690dadc69c5SMatthew G. Knepley     ierr = PetscFree(patch->solver);CHKERRQ(ierr);
26914bbf5ea8SMatthew G. Knepley   }
2692dadc69c5SMatthew G. Knepley   PetscFunctionReturn(0);
2693dadc69c5SMatthew G. Knepley }
2694dadc69c5SMatthew G. Knepley 
2695dadc69c5SMatthew G. Knepley static PetscErrorCode PCDestroy_PATCH(PC pc)
2696dadc69c5SMatthew G. Knepley {
2697dadc69c5SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
2698dadc69c5SMatthew G. Knepley   PetscErrorCode ierr;
2699dadc69c5SMatthew G. Knepley 
2700dadc69c5SMatthew G. Knepley   PetscFunctionBegin;
2701dadc69c5SMatthew G. Knepley   ierr = PCReset_PATCH(pc);CHKERRQ(ierr);
2702dadc69c5SMatthew G. Knepley   ierr = (*patch->destroysolver)(pc);CHKERRQ(ierr);
27034bbf5ea8SMatthew G. Knepley   ierr = PetscFree(pc->data);CHKERRQ(ierr);
27044bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
27054bbf5ea8SMatthew G. Knepley }
27064bbf5ea8SMatthew G. Knepley 
27074bbf5ea8SMatthew G. Knepley static PetscErrorCode PCSetFromOptions_PATCH(PetscOptionItems *PetscOptionsObject, PC pc)
27084bbf5ea8SMatthew G. Knepley {
27094bbf5ea8SMatthew G. Knepley   PC_PATCH            *patch = (PC_PATCH *) pc->data;
27104bbf5ea8SMatthew G. Knepley   PCPatchConstructType patchConstructionType = PC_PATCH_STAR;
27115f824522SMatthew G. Knepley   char                 sub_mat_type[PETSC_MAX_PATH_LEN];
271210534d48SPatrick Farrell   char                 option[PETSC_MAX_PATH_LEN];
27135f824522SMatthew G. Knepley   const char          *prefix;
27144bbf5ea8SMatthew G. Knepley   PetscBool            flg, dimflg, codimflg;
27155f824522SMatthew G. Knepley   MPI_Comm             comm;
2716a48c39c8SPatrick Farrell   PetscInt            *ifields, nfields, k;
27174bbf5ea8SMatthew G. Knepley   PetscErrorCode       ierr;
271861c4b389SFlorian Wechsung   PCCompositeType loctype = PC_COMPOSITE_ADDITIVE;
27194bbf5ea8SMatthew G. Knepley 
27204bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
27215f824522SMatthew G. Knepley   ierr = PetscObjectGetComm((PetscObject) pc, &comm);CHKERRQ(ierr);
27225f824522SMatthew G. Knepley   ierr = PetscObjectGetOptionsPrefix((PetscObject) pc, &prefix);CHKERRQ(ierr);
272310534d48SPatrick Farrell   ierr = PetscOptionsHead(PetscOptionsObject, "Patch solver options");CHKERRQ(ierr);
272410534d48SPatrick Farrell 
272510534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_save_operators", patch->classname);
272610534d48SPatrick Farrell   ierr = PetscOptionsBool(option,  "Store all patch operators for lifetime of object?", "PCPatchSetSaveOperators", patch->save_operators, &patch->save_operators, &flg);CHKERRQ(ierr);
272710534d48SPatrick Farrell 
272810534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_partition_of_unity", patch->classname);
272910534d48SPatrick Farrell   ierr = PetscOptionsBool(option, "Weight contributions by dof multiplicity?", "PCPatchSetPartitionOfUnity", patch->partition_of_unity, &patch->partition_of_unity, &flg);CHKERRQ(ierr);
273010534d48SPatrick Farrell 
273110534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_local_type", patch->classname);
273210534d48SPatrick Farrell   ierr = PetscOptionsEnum(option,"Type of local solver composition (additive or multiplicative)","PCPatchSetLocalComposition",PCCompositeTypes,(PetscEnum)loctype,(PetscEnum*)&loctype,&flg);CHKERRQ(ierr);
273361c4b389SFlorian Wechsung   if(flg) { ierr = PCPatchSetLocalComposition(pc, loctype);CHKERRQ(ierr);}
273410534d48SPatrick Farrell 
273510534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_construct_dim", patch->classname);
273610534d48SPatrick Farrell   ierr = PetscOptionsInt(option, "What dimension of mesh point to construct patches by? (0 = vertices)", "PCPATCH", patch->dim, &patch->dim, &dimflg);CHKERRQ(ierr);
273710534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_construct_codim", patch->classname);
273810534d48SPatrick Farrell   ierr = PetscOptionsInt(option, "What co-dimension of mesh point to construct patches by? (0 = cells)", "PCPATCH", patch->codim, &patch->codim, &codimflg);CHKERRQ(ierr);
273961c4b389SFlorian Wechsung   if (dimflg && codimflg) {SETERRQ(comm, PETSC_ERR_ARG_WRONG, "Can only set one of dimension or co-dimension");CHKERRQ(ierr);}
274010534d48SPatrick Farrell 
274110534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_construct_type", patch->classname);
274210534d48SPatrick Farrell   ierr = PetscOptionsEnum(option, "How should the patches be constructed?", "PCPatchSetConstructType", PCPatchConstructTypes, (PetscEnum) patchConstructionType, (PetscEnum *) &patchConstructionType, &flg);CHKERRQ(ierr);
27434bbf5ea8SMatthew G. Knepley   if (flg) {ierr = PCPatchSetConstructType(pc, patchConstructionType, NULL, NULL);CHKERRQ(ierr);}
274410534d48SPatrick Farrell 
274510534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_vanka_dim", patch->classname);
274610534d48SPatrick Farrell   ierr = PetscOptionsInt(option, "Topological dimension of entities for Vanka to ignore", "PCPATCH", patch->vankadim, &patch->vankadim, &flg);CHKERRQ(ierr);
274710534d48SPatrick Farrell 
274810534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_ignore_dim", patch->classname);
274910534d48SPatrick Farrell   ierr = PetscOptionsInt(option, "Topological dimension of entities for completion to ignore", "PCPATCH", patch->ignoredim, &patch->ignoredim, &flg);CHKERRQ(ierr);
275010534d48SPatrick Farrell 
2751b525f888SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_pardecomp_overlap", patch->classname);
2752b525f888SPatrick Farrell   ierr = PetscOptionsInt(option, "What overlap should we use in construct type pardecomp?", "PCPATCH", patch->pardecomp_overlap, &patch->pardecomp_overlap, &flg);CHKERRQ(ierr);
2753b525f888SPatrick Farrell 
275410534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_sub_mat_type", patch->classname);
275510534d48SPatrick Farrell   ierr = PetscOptionsFList(option, "Matrix type for patch solves", "PCPatchSetSubMatType", MatList, NULL, sub_mat_type, PETSC_MAX_PATH_LEN, &flg);CHKERRQ(ierr);
27564bbf5ea8SMatthew G. Knepley   if (flg) {ierr = PCPatchSetSubMatType(pc, sub_mat_type);CHKERRQ(ierr);}
275710534d48SPatrick Farrell 
275810534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_symmetrise_sweep", patch->classname);
275910534d48SPatrick Farrell   ierr = PetscOptionsBool(option, "Go start->end, end->start?", "PCPATCH", patch->symmetrise_sweep, &patch->symmetrise_sweep, &flg);CHKERRQ(ierr);
2760e4c66b91SPatrick Farrell 
2761a48c39c8SPatrick Farrell   /* If the user has set the number of subspaces, use that for the buffer size,
2762a48c39c8SPatrick Farrell      otherwise use a large number */
2763a48c39c8SPatrick Farrell   if (patch->nsubspaces <= 0) {
2764a48c39c8SPatrick Farrell     nfields = 128;
2765a48c39c8SPatrick Farrell   } else {
2766a48c39c8SPatrick Farrell     nfields = patch->nsubspaces;
2767a48c39c8SPatrick Farrell   }
2768a48c39c8SPatrick Farrell   ierr = PetscMalloc1(nfields, &ifields);CHKERRQ(ierr);
276910534d48SPatrick Farrell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_exclude_subspaces", patch->classname);
277010534d48SPatrick Farrell   ierr = PetscOptionsGetIntArray(((PetscObject)pc)->options,((PetscObject)pc)->prefix,option,ifields,&nfields,&flg);CHKERRQ(ierr);
2771e4c66b91SPatrick Farrell   if (flg && (patchConstructionType == PC_PATCH_USER)) SETERRQ(comm, PETSC_ERR_ARG_INCOMP, "We cannot support excluding a subspace with user patches because we do not index patches with a mesh point");
2772e4c66b91SPatrick Farrell   if (flg) {
2773e4c66b91SPatrick Farrell     PetscHSetIClear(patch->subspaces_to_exclude);
277459b66c28SPatrick Farrell     for (k = 0; k < nfields; k++) {
2775e4c66b91SPatrick Farrell       PetscHSetIAdd(patch->subspaces_to_exclude, ifields[k]);
2776e4c66b91SPatrick Farrell     }
2777e4c66b91SPatrick Farrell   }
277859b66c28SPatrick Farrell   ierr = PetscFree(ifields);CHKERRQ(ierr);
27795f824522SMatthew G. Knepley 
2780fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_patches_view", patch->classname);CHKERRQ(ierr);
278110534d48SPatrick Farrell   ierr = PetscOptionsBool(option, "Print out information during patch construction", "PCPATCH", patch->viewPatches, &patch->viewPatches, &flg);CHKERRQ(ierr);
2782fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_cells_view", patch->classname);CHKERRQ(ierr);
278310534d48SPatrick Farrell   ierr = PetscOptionsGetViewer(comm,((PetscObject) pc)->options, prefix, option, &patch->viewerCells, &patch->formatCells, &patch->viewCells);CHKERRQ(ierr);
2784fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_interior_facets_view", patch->classname);CHKERRQ(ierr);
2785fbb82ab5SLawrence Mitchell   ierr = PetscOptionsGetViewer(comm,((PetscObject) pc)->options, prefix, option, &patch->viewerIntFacets, &patch->formatIntFacets, &patch->viewIntFacets);CHKERRQ(ierr);
2786fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_exterior_facets_view", patch->classname);CHKERRQ(ierr);
2787fbb82ab5SLawrence Mitchell   ierr = PetscOptionsGetViewer(comm,((PetscObject) pc)->options, prefix, option, &patch->viewerExtFacets, &patch->formatExtFacets, &patch->viewExtFacets);CHKERRQ(ierr);
2788fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_points_view", patch->classname);CHKERRQ(ierr);
278910534d48SPatrick Farrell   ierr = PetscOptionsGetViewer(comm,((PetscObject) pc)->options, prefix, option, &patch->viewerPoints, &patch->formatPoints, &patch->viewPoints);CHKERRQ(ierr);
2790fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_section_view", patch->classname);CHKERRQ(ierr);
279110534d48SPatrick Farrell   ierr = PetscOptionsGetViewer(comm,((PetscObject) pc)->options, prefix, option, &patch->viewerSection, &patch->formatSection, &patch->viewSection);CHKERRQ(ierr);
2792fbb82ab5SLawrence Mitchell   ierr = PetscSNPrintf(option, PETSC_MAX_PATH_LEN, "-%s_patch_mat_view", patch->classname);CHKERRQ(ierr);
279310534d48SPatrick Farrell   ierr = PetscOptionsGetViewer(comm,((PetscObject) pc)->options, prefix, option, &patch->viewerMatrix, &patch->formatMatrix, &patch->viewMatrix);CHKERRQ(ierr);
27944bbf5ea8SMatthew G. Knepley   ierr = PetscOptionsTail();CHKERRQ(ierr);
27955f824522SMatthew G. Knepley   patch->optionsSet = PETSC_TRUE;
27964bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
27974bbf5ea8SMatthew G. Knepley }
27984bbf5ea8SMatthew G. Knepley 
27994bbf5ea8SMatthew G. Knepley static PetscErrorCode PCSetUpOnBlocks_PATCH(PC pc)
28004bbf5ea8SMatthew G. Knepley {
28014bbf5ea8SMatthew G. Knepley   PC_PATCH          *patch = (PC_PATCH*) pc->data;
28024bbf5ea8SMatthew G. Knepley   KSPConvergedReason reason;
28034bbf5ea8SMatthew G. Knepley   PetscInt           i;
28044bbf5ea8SMatthew G. Knepley   PetscErrorCode     ierr;
28054bbf5ea8SMatthew G. Knepley 
28064bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
2807a1eac568SLawrence Mitchell   if (!patch->save_operators) {
2808a1eac568SLawrence Mitchell     /* Can't do this here because the sub KSPs don't have an operator attached yet. */
2809a1eac568SLawrence Mitchell     PetscFunctionReturn(0);
2810a1eac568SLawrence Mitchell   }
28114bbf5ea8SMatthew G. Knepley   for (i = 0; i < patch->npatch; ++i) {
2812dadc69c5SMatthew G. Knepley     if (!((KSP) patch->solver[i])->setfromoptionscalled) {
2813dadc69c5SMatthew G. Knepley       ierr = KSPSetFromOptions((KSP) patch->solver[i]);CHKERRQ(ierr);
2814a1eac568SLawrence Mitchell     }
2815dadc69c5SMatthew G. Knepley     ierr = KSPSetUp((KSP) patch->solver[i]);CHKERRQ(ierr);
2816dadc69c5SMatthew G. Knepley     ierr = KSPGetConvergedReason((KSP) patch->solver[i], &reason);CHKERRQ(ierr);
2817c0decd05SBarry Smith     if (reason == KSP_DIVERGED_PC_FAILED) pc->failedreason = PC_SUBPC_ERROR;
28184bbf5ea8SMatthew G. Knepley   }
28194bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
28204bbf5ea8SMatthew G. Knepley }
28214bbf5ea8SMatthew G. Knepley 
28224bbf5ea8SMatthew G. Knepley static PetscErrorCode PCView_PATCH(PC pc, PetscViewer viewer)
28234bbf5ea8SMatthew G. Knepley {
28244bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch = (PC_PATCH *) pc->data;
28254bbf5ea8SMatthew G. Knepley   PetscViewer    sviewer;
28264bbf5ea8SMatthew G. Knepley   PetscBool      isascii;
28274bbf5ea8SMatthew G. Knepley   PetscMPIInt    rank;
28284bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
28294bbf5ea8SMatthew G. Knepley 
28304bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
28314bbf5ea8SMatthew G. Knepley   /* TODO Redo tabbing with set tbas in new style */
28324bbf5ea8SMatthew G. Knepley   ierr = PetscObjectTypeCompare((PetscObject) viewer, PETSCVIEWERASCII, &isascii);CHKERRQ(ierr);
28334bbf5ea8SMatthew G. Knepley   if (!isascii) PetscFunctionReturn(0);
28344bbf5ea8SMatthew G. Knepley   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject) pc), &rank);CHKERRQ(ierr);
28354bbf5ea8SMatthew G. Knepley   ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
28364bbf5ea8SMatthew G. Knepley   ierr = PetscViewerASCIIPrintf(viewer, "Subspace Correction preconditioner with %d patches\n", patch->npatch);CHKERRQ(ierr);
283761c4b389SFlorian Wechsung   if(patch->local_composition_type == PC_COMPOSITE_MULTIPLICATIVE) {
2838c2e6f3c0SFlorian Wechsung     ierr = PetscViewerASCIIPrintf(viewer, "Schwarz type: multiplicative\n");CHKERRQ(ierr);
2839e047a90bSFlorian Wechsung   } else {
284073ec7555SLawrence Mitchell     ierr = PetscViewerASCIIPrintf(viewer, "Schwarz type: additive\n");CHKERRQ(ierr);
2841c2e6f3c0SFlorian Wechsung   }
28424bbf5ea8SMatthew G. Knepley   if (patch->partition_of_unity) {ierr = PetscViewerASCIIPrintf(viewer, "Weighting by partition of unity\n");CHKERRQ(ierr);}
28434bbf5ea8SMatthew G. Knepley   else                           {ierr = PetscViewerASCIIPrintf(viewer, "Not weighting by partition of unity\n");CHKERRQ(ierr);}
28444bbf5ea8SMatthew G. Knepley   if (patch->symmetrise_sweep) {ierr = PetscViewerASCIIPrintf(viewer, "Symmetrising sweep (start->end, then end->start)\n");CHKERRQ(ierr);}
28454bbf5ea8SMatthew G. Knepley   else                         {ierr = PetscViewerASCIIPrintf(viewer, "Not symmetrising sweep\n");CHKERRQ(ierr);}
28464bbf5ea8SMatthew G. Knepley   if (!patch->save_operators) {ierr = PetscViewerASCIIPrintf(viewer, "Not saving patch operators (rebuilt every PCApply)\n");CHKERRQ(ierr);}
28474bbf5ea8SMatthew G. Knepley   else                        {ierr = PetscViewerASCIIPrintf(viewer, "Saving patch operators (rebuilt every PCSetUp)\n");CHKERRQ(ierr);}
28484bbf5ea8SMatthew G. Knepley   if (patch->patchconstructop == PCPatchConstruct_Star)       {ierr = PetscViewerASCIIPrintf(viewer, "Patch construction operator: star\n");CHKERRQ(ierr);}
28494bbf5ea8SMatthew G. Knepley   else if (patch->patchconstructop == PCPatchConstruct_Vanka) {ierr = PetscViewerASCIIPrintf(viewer, "Patch construction operator: Vanka\n");CHKERRQ(ierr);}
28504bbf5ea8SMatthew G. Knepley   else if (patch->patchconstructop == PCPatchConstruct_User)  {ierr = PetscViewerASCIIPrintf(viewer, "Patch construction operator: user-specified\n");CHKERRQ(ierr);}
28514bbf5ea8SMatthew G. Knepley   else                                                        {ierr = PetscViewerASCIIPrintf(viewer, "Patch construction operator: unknown\n");CHKERRQ(ierr);}
28525d30859aSPatrick Farrell 
28535d30859aSPatrick Farrell   if (patch->isNonlinear) {
28545d30859aSPatrick Farrell     ierr = PetscViewerASCIIPrintf(viewer, "SNES on patches (all same):\n");CHKERRQ(ierr);
28555d30859aSPatrick Farrell   } else {
28565d30859aSPatrick Farrell     ierr = PetscViewerASCIIPrintf(viewer, "KSP on patches (all same):\n");CHKERRQ(ierr);
28575d30859aSPatrick Farrell   }
2858dadc69c5SMatthew G. Knepley   if (patch->solver) {
28594bbf5ea8SMatthew G. Knepley     ierr = PetscViewerGetSubViewer(viewer, PETSC_COMM_SELF, &sviewer);CHKERRQ(ierr);
28604bbf5ea8SMatthew G. Knepley     if (!rank) {
28614bbf5ea8SMatthew G. Knepley       ierr = PetscViewerASCIIPushTab(sviewer);CHKERRQ(ierr);
2862dadc69c5SMatthew G. Knepley       ierr = PetscObjectView(patch->solver[0], sviewer);CHKERRQ(ierr);
28634bbf5ea8SMatthew G. Knepley       ierr = PetscViewerASCIIPopTab(sviewer);CHKERRQ(ierr);
28644bbf5ea8SMatthew G. Knepley     }
28654bbf5ea8SMatthew G. Knepley     ierr = PetscViewerRestoreSubViewer(viewer, PETSC_COMM_SELF, &sviewer);CHKERRQ(ierr);
28664bbf5ea8SMatthew G. Knepley   } else {
28674bbf5ea8SMatthew G. Knepley     ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
2868dadc69c5SMatthew G. Knepley     ierr = PetscViewerASCIIPrintf(viewer, "Solver not yet set.\n");CHKERRQ(ierr);
28694bbf5ea8SMatthew G. Knepley     ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
28704bbf5ea8SMatthew G. Knepley   }
28714bbf5ea8SMatthew G. Knepley   ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
28724bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
28734bbf5ea8SMatthew G. Knepley }
28744bbf5ea8SMatthew G. Knepley 
2875e5893cccSMatthew G. Knepley /*MC
287698ed095eSMatthew G. Knepley   PCPATCH - A PC object that encapsulates flexible definition of blocks for overlapping and non-overlapping
287798ed095eSMatthew G. Knepley             small block additive preconditioners. Block definition is based on topology from
2878e5893cccSMatthew G. Knepley             a DM and equation numbering from a PetscSection.
2879e5893cccSMatthew G. Knepley 
2880e5893cccSMatthew G. Knepley   Options Database Keys:
2881e5893cccSMatthew G. Knepley + -pc_patch_cells_view   - Views the process local cell numbers for each patch
2882e5893cccSMatthew G. Knepley . -pc_patch_points_view  - Views the process local mesh point numbers for each patch
2883e5893cccSMatthew G. Knepley . -pc_patch_g2l_view     - Views the map between global dofs and patch local dofs for each patch
2884e5893cccSMatthew G. Knepley . -pc_patch_patches_view - Views the global dofs associated with each patch and its boundary
2885e5893cccSMatthew G. Knepley - -pc_patch_sub_mat_view - Views the matrix associated with each patch
2886e5893cccSMatthew G. Knepley 
2887e5893cccSMatthew G. Knepley   Level: intermediate
2888e5893cccSMatthew G. Knepley 
2889e5893cccSMatthew G. Knepley .seealso: PCType, PCCreate(), PCSetType()
2890e5893cccSMatthew G. Knepley M*/
2891642283e9SMatthew G. Knepley PETSC_EXTERN PetscErrorCode PCCreate_Patch(PC pc)
28924bbf5ea8SMatthew G. Knepley {
28934bbf5ea8SMatthew G. Knepley   PC_PATCH      *patch;
28944bbf5ea8SMatthew G. Knepley   PetscErrorCode ierr;
28954bbf5ea8SMatthew G. Knepley 
28964bbf5ea8SMatthew G. Knepley   PetscFunctionBegin;
28974bbf5ea8SMatthew G. Knepley   ierr = PetscNewLog(pc, &patch);CHKERRQ(ierr);
28984bbf5ea8SMatthew G. Knepley 
2899e4c66b91SPatrick Farrell   if (patch->subspaces_to_exclude) {
2900e4c66b91SPatrick Farrell     PetscHSetIDestroy(&patch->subspaces_to_exclude);
2901e4c66b91SPatrick Farrell   }
2902e4c66b91SPatrick Farrell   PetscHSetICreate(&patch->subspaces_to_exclude);
2903e4c66b91SPatrick Farrell 
290410534d48SPatrick Farrell   patch->classname = "pc";
2905debbdec3SPatrick Farrell   patch->isNonlinear = PETSC_FALSE;
290610534d48SPatrick Farrell 
29074bbf5ea8SMatthew G. Knepley   /* Set some defaults */
29085f824522SMatthew G. Knepley   patch->combined           = PETSC_FALSE;
29094bbf5ea8SMatthew G. Knepley   patch->save_operators     = PETSC_TRUE;
291061c4b389SFlorian Wechsung   patch->local_composition_type = PC_COMPOSITE_ADDITIVE;
29114bbf5ea8SMatthew G. Knepley   patch->partition_of_unity = PETSC_FALSE;
29124bbf5ea8SMatthew G. Knepley   patch->codim              = -1;
29134bbf5ea8SMatthew G. Knepley   patch->dim                = -1;
29144bbf5ea8SMatthew G. Knepley   patch->vankadim           = -1;
29155f824522SMatthew G. Knepley   patch->ignoredim          = -1;
2916b525f888SPatrick Farrell   patch->pardecomp_overlap  = 0;
29174bbf5ea8SMatthew G. Knepley   patch->patchconstructop   = PCPatchConstruct_Star;
29184bbf5ea8SMatthew G. Knepley   patch->symmetrise_sweep   = PETSC_FALSE;
29195f824522SMatthew G. Knepley   patch->npatch             = 0;
29204bbf5ea8SMatthew G. Knepley   patch->userIS             = NULL;
29215f824522SMatthew G. Knepley   patch->optionsSet         = PETSC_FALSE;
29224bbf5ea8SMatthew G. Knepley   patch->iterationSet       = NULL;
29234bbf5ea8SMatthew G. Knepley   patch->user_patches       = PETSC_FALSE;
29245f824522SMatthew G. Knepley   ierr = PetscStrallocpy(MATDENSE, (char **) &patch->sub_mat_type);CHKERRQ(ierr);
29255f824522SMatthew G. Knepley   patch->viewPatches        = PETSC_FALSE;
29265f824522SMatthew G. Knepley   patch->viewCells          = PETSC_FALSE;
29275f824522SMatthew G. Knepley   patch->viewPoints         = PETSC_FALSE;
29285f824522SMatthew G. Knepley   patch->viewSection        = PETSC_FALSE;
29295f824522SMatthew G. Knepley   patch->viewMatrix         = PETSC_FALSE;
2930dadc69c5SMatthew G. Knepley   patch->setupsolver        = PCSetUp_PATCH_Linear;
2931dadc69c5SMatthew G. Knepley   patch->applysolver        = PCApply_PATCH_Linear;
2932dadc69c5SMatthew G. Knepley   patch->resetsolver        = PCReset_PATCH_Linear;
2933dadc69c5SMatthew G. Knepley   patch->destroysolver      = PCDestroy_PATCH_Linear;
29346c9c532dSPatrick Farrell   patch->updatemultiplicative = PCUpdateMultiplicative_PATCH_Linear;
293547aca4a6SPatrick Farrell   patch->dofMappingWithoutToWithArtificial = NULL;
293647aca4a6SPatrick Farrell   patch->dofMappingWithoutToWithAll = NULL;
29374bbf5ea8SMatthew G. Knepley 
29384bbf5ea8SMatthew G. Knepley   pc->data                 = (void *) patch;
29394bbf5ea8SMatthew G. Knepley   pc->ops->apply           = PCApply_PATCH;
29404bbf5ea8SMatthew G. Knepley   pc->ops->applytranspose  = 0; /* PCApplyTranspose_PATCH; */
29414bbf5ea8SMatthew G. Knepley   pc->ops->setup           = PCSetUp_PATCH;
29424bbf5ea8SMatthew G. Knepley   pc->ops->reset           = PCReset_PATCH;
29434bbf5ea8SMatthew G. Knepley   pc->ops->destroy         = PCDestroy_PATCH;
29444bbf5ea8SMatthew G. Knepley   pc->ops->setfromoptions  = PCSetFromOptions_PATCH;
29454bbf5ea8SMatthew G. Knepley   pc->ops->setuponblocks   = PCSetUpOnBlocks_PATCH;
29464bbf5ea8SMatthew G. Knepley   pc->ops->view            = PCView_PATCH;
29474bbf5ea8SMatthew G. Knepley   pc->ops->applyrichardson = 0;
29484bbf5ea8SMatthew G. Knepley 
29494bbf5ea8SMatthew G. Knepley   PetscFunctionReturn(0);
29504bbf5ea8SMatthew G. Knepley }
2951