14b9ad928SBarry Smith /* 24b9ad928SBarry Smith This file defines an additive Schwarz preconditioner for any Mat implementation. 34b9ad928SBarry Smith 44b9ad928SBarry Smith Note that each processor may have any number of subdomains. But in order to 54b9ad928SBarry Smith deal easily with the VecScatter(), we treat each processor as if it has the 64b9ad928SBarry Smith same number of subdomains. 74b9ad928SBarry Smith 84b9ad928SBarry Smith n - total number of true subdomains on all processors 94b9ad928SBarry Smith n_local_true - actual number of subdomains on this processor 104b9ad928SBarry Smith n_local = maximum over all processors of n_local_true 114b9ad928SBarry Smith */ 124b9ad928SBarry Smith 1334eca32bSPierre Jolivet #include <petsc/private/pcasmimpl.h> /*I "petscpc.h" I*/ 14*46233b44SBarry Smith #include <petsc/private/matimpl.h> 154b9ad928SBarry Smith 16d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCView_ASM(PC pc, PetscViewer viewer) 17d71ae5a4SJacob Faibussowitsch { 1892bb6962SLisandro Dalcin PC_ASM *osm = (PC_ASM *)pc->data; 1913f74950SBarry Smith PetscMPIInt rank; 204d219a6aSLisandro Dalcin PetscInt i, bsz; 21ace3abfcSBarry Smith PetscBool iascii, isstring; 224b9ad928SBarry Smith PetscViewer sviewer; 23ed155784SPierre Jolivet PetscViewerFormat format; 24ed155784SPierre Jolivet const char *prefix; 254b9ad928SBarry Smith 264b9ad928SBarry Smith PetscFunctionBegin; 279566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERASCII, &iascii)); 289566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)viewer, PETSCVIEWERSTRING, &isstring)); 2932077d6dSBarry Smith if (iascii) { 303d03bb48SJed Brown char overlaps[256] = "user-defined overlap", blocks[256] = "total subdomain blocks not yet set"; 3163a3b9bcSJacob Faibussowitsch if (osm->overlap >= 0) PetscCall(PetscSNPrintf(overlaps, sizeof(overlaps), "amount of overlap = %" PetscInt_FMT, osm->overlap)); 3263a3b9bcSJacob Faibussowitsch if (osm->n > 0) PetscCall(PetscSNPrintf(blocks, sizeof(blocks), "total subdomain blocks = %" PetscInt_FMT, osm->n)); 339566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPrintf(viewer, " %s, %s\n", blocks, overlaps)); 349566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPrintf(viewer, " restriction/interpolation type - %s\n", PCASMTypes[osm->type])); 359566063dSJacob Faibussowitsch if (osm->dm_subdomains) PetscCall(PetscViewerASCIIPrintf(viewer, " Additive Schwarz: using DM to define subdomains\n")); 369566063dSJacob Faibussowitsch if (osm->loctype != PC_COMPOSITE_ADDITIVE) PetscCall(PetscViewerASCIIPrintf(viewer, " Additive Schwarz: local solve composition type - %s\n", PCCompositeTypes[osm->loctype])); 379566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)pc), &rank)); 389566063dSJacob Faibussowitsch PetscCall(PetscViewerGetFormat(viewer, &format)); 39ed155784SPierre Jolivet if (format != PETSC_VIEWER_ASCII_INFO_DETAIL) { 404d219a6aSLisandro Dalcin if (osm->ksp) { 419566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPrintf(viewer, " Local solver information for first block is in the following KSP and PC objects on rank 0:\n")); 429566063dSJacob Faibussowitsch PetscCall(PCGetOptionsPrefix(pc, &prefix)); 439566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPrintf(viewer, " Use -%sksp_view ::ascii_info_detail to display information for all blocks\n", prefix ? prefix : "")); 449566063dSJacob Faibussowitsch PetscCall(PetscViewerGetSubViewer(viewer, PETSC_COMM_SELF, &sviewer)); 45dd400576SPatrick Sanan if (rank == 0) { 469566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushTab(viewer)); 479566063dSJacob Faibussowitsch PetscCall(KSPView(osm->ksp[0], sviewer)); 489566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopTab(viewer)); 494b9ad928SBarry Smith } 509566063dSJacob Faibussowitsch PetscCall(PetscViewerRestoreSubViewer(viewer, PETSC_COMM_SELF, &sviewer)); 514d219a6aSLisandro Dalcin } 524b9ad928SBarry Smith } else { 539566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushSynchronized(viewer)); 5463a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerASCIISynchronizedPrintf(viewer, " [%d] number of local blocks = %" PetscInt_FMT "\n", (int)rank, osm->n_local_true)); 559566063dSJacob Faibussowitsch PetscCall(PetscViewerFlush(viewer)); 569566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPrintf(viewer, " Local solver information for each block is in the following KSP and PC objects:\n")); 579566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushTab(viewer)); 589566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPrintf(viewer, "- - - - - - - - - - - - - - - - - -\n")); 599566063dSJacob Faibussowitsch PetscCall(PetscViewerGetSubViewer(viewer, PETSC_COMM_SELF, &sviewer)); 60dd2fa690SBarry Smith for (i = 0; i < osm->n_local_true; i++) { 619566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->is[i], &bsz)); 6263a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerASCIISynchronizedPrintf(sviewer, "[%d] local block number %" PetscInt_FMT ", size = %" PetscInt_FMT "\n", (int)rank, i, bsz)); 639566063dSJacob Faibussowitsch PetscCall(KSPView(osm->ksp[i], sviewer)); 649566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIISynchronizedPrintf(sviewer, "- - - - - - - - - - - - - - - - - -\n")); 654b9ad928SBarry Smith } 669566063dSJacob Faibussowitsch PetscCall(PetscViewerRestoreSubViewer(viewer, PETSC_COMM_SELF, &sviewer)); 679566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopTab(viewer)); 689566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopSynchronized(viewer)); 694b9ad928SBarry Smith } 704b9ad928SBarry Smith } else if (isstring) { 7163a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerStringSPrintf(viewer, " blocks=%" PetscInt_FMT ", overlap=%" PetscInt_FMT ", type=%s", osm->n, osm->overlap, PCASMTypes[osm->type])); 729566063dSJacob Faibussowitsch PetscCall(PetscViewerGetSubViewer(viewer, PETSC_COMM_SELF, &sviewer)); 739566063dSJacob Faibussowitsch if (osm->ksp) PetscCall(KSPView(osm->ksp[0], sviewer)); 749566063dSJacob Faibussowitsch PetscCall(PetscViewerRestoreSubViewer(viewer, PETSC_COMM_SELF, &sviewer)); 754b9ad928SBarry Smith } 763ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 774b9ad928SBarry Smith } 784b9ad928SBarry Smith 79d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMPrintSubdomains(PC pc) 80d71ae5a4SJacob Faibussowitsch { 8192bb6962SLisandro Dalcin PC_ASM *osm = (PC_ASM *)pc->data; 8292bb6962SLisandro Dalcin const char *prefix; 8392bb6962SLisandro Dalcin char fname[PETSC_MAX_PATH_LEN + 1]; 84643535aeSDmitry Karpeev PetscViewer viewer, sviewer; 85643535aeSDmitry Karpeev char *s; 8692bb6962SLisandro Dalcin PetscInt i, j, nidx; 8792bb6962SLisandro Dalcin const PetscInt *idx; 88643535aeSDmitry Karpeev PetscMPIInt rank, size; 89846783a0SBarry Smith 9092bb6962SLisandro Dalcin PetscFunctionBegin; 919566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)pc), &size)); 929566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)pc), &rank)); 939566063dSJacob Faibussowitsch PetscCall(PCGetOptionsPrefix(pc, &prefix)); 949566063dSJacob Faibussowitsch PetscCall(PetscOptionsGetString(NULL, prefix, "-pc_asm_print_subdomains", fname, sizeof(fname), NULL)); 95c6a7a370SJeremy L Thompson if (fname[0] == 0) PetscCall(PetscStrncpy(fname, "stdout", sizeof(fname))); 969566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIOpen(PetscObjectComm((PetscObject)pc), fname, &viewer)); 97643535aeSDmitry Karpeev for (i = 0; i < osm->n_local; i++) { 98643535aeSDmitry Karpeev if (i < osm->n_local_true) { 999566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->is[i], &nidx)); 1009566063dSJacob Faibussowitsch PetscCall(ISGetIndices(osm->is[i], &idx)); 101643535aeSDmitry Karpeev /* Print to a string viewer; no more than 15 characters per index plus 512 char for the header.*/ 10236a9e3b9SBarry Smith #define len 16 * (nidx + 1) + 512 1039566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(len, &s)); 1049566063dSJacob Faibussowitsch PetscCall(PetscViewerStringOpen(PETSC_COMM_SELF, s, len, &sviewer)); 10536a9e3b9SBarry Smith #undef len 10663a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerStringSPrintf(sviewer, "[%d:%d] Subdomain %" PetscInt_FMT " with overlap:\n", rank, size, i)); 10748a46eb9SPierre Jolivet for (j = 0; j < nidx; j++) PetscCall(PetscViewerStringSPrintf(sviewer, "%" PetscInt_FMT " ", idx[j])); 1089566063dSJacob Faibussowitsch PetscCall(ISRestoreIndices(osm->is[i], &idx)); 1099566063dSJacob Faibussowitsch PetscCall(PetscViewerStringSPrintf(sviewer, "\n")); 1109566063dSJacob Faibussowitsch PetscCall(PetscViewerDestroy(&sviewer)); 1119566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushSynchronized(viewer)); 11263a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerASCIISynchronizedPrintf(viewer, "%s", s)); 1139566063dSJacob Faibussowitsch PetscCall(PetscViewerFlush(viewer)); 1149566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopSynchronized(viewer)); 1159566063dSJacob Faibussowitsch PetscCall(PetscFree(s)); 1162b691e39SMatthew Knepley if (osm->is_local) { 117643535aeSDmitry Karpeev /* Print to a string viewer; no more than 15 characters per index plus 512 char for the header.*/ 11836a9e3b9SBarry Smith #define len 16 * (nidx + 1) + 512 1199566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(len, &s)); 1209566063dSJacob Faibussowitsch PetscCall(PetscViewerStringOpen(PETSC_COMM_SELF, s, len, &sviewer)); 12136a9e3b9SBarry Smith #undef len 12263a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerStringSPrintf(sviewer, "[%d:%d] Subdomain %" PetscInt_FMT " without overlap:\n", rank, size, i)); 1239566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->is_local[i], &nidx)); 1249566063dSJacob Faibussowitsch PetscCall(ISGetIndices(osm->is_local[i], &idx)); 12548a46eb9SPierre Jolivet for (j = 0; j < nidx; j++) PetscCall(PetscViewerStringSPrintf(sviewer, "%" PetscInt_FMT " ", idx[j])); 1269566063dSJacob Faibussowitsch PetscCall(ISRestoreIndices(osm->is_local[i], &idx)); 1279566063dSJacob Faibussowitsch PetscCall(PetscViewerStringSPrintf(sviewer, "\n")); 1289566063dSJacob Faibussowitsch PetscCall(PetscViewerDestroy(&sviewer)); 1299566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushSynchronized(viewer)); 13063a3b9bcSJacob Faibussowitsch PetscCall(PetscViewerASCIISynchronizedPrintf(viewer, "%s", s)); 1319566063dSJacob Faibussowitsch PetscCall(PetscViewerFlush(viewer)); 1329566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopSynchronized(viewer)); 1339566063dSJacob Faibussowitsch PetscCall(PetscFree(s)); 134643535aeSDmitry Karpeev } 1352fa5cd67SKarl Rupp } else { 136643535aeSDmitry Karpeev /* Participate in collective viewer calls. */ 1379566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushSynchronized(viewer)); 1389566063dSJacob Faibussowitsch PetscCall(PetscViewerFlush(viewer)); 1399566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopSynchronized(viewer)); 140643535aeSDmitry Karpeev /* Assume either all ranks have is_local or none do. */ 141643535aeSDmitry Karpeev if (osm->is_local) { 1429566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPushSynchronized(viewer)); 1439566063dSJacob Faibussowitsch PetscCall(PetscViewerFlush(viewer)); 1449566063dSJacob Faibussowitsch PetscCall(PetscViewerASCIIPopSynchronized(viewer)); 145643535aeSDmitry Karpeev } 146fdc48646SDmitry Karpeev } 14792bb6962SLisandro Dalcin } 1489566063dSJacob Faibussowitsch PetscCall(PetscViewerFlush(viewer)); 1499566063dSJacob Faibussowitsch PetscCall(PetscViewerDestroy(&viewer)); 1503ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 15192bb6962SLisandro Dalcin } 15292bb6962SLisandro Dalcin 153d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCSetUp_ASM(PC pc) 154d71ae5a4SJacob Faibussowitsch { 1554b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 15657501b6eSBarry Smith PetscBool flg; 15787e86712SBarry Smith PetscInt i, m, m_local; 1584b9ad928SBarry Smith MatReuse scall = MAT_REUSE_MATRIX; 1594b9ad928SBarry Smith IS isl; 1604b9ad928SBarry Smith KSP ksp; 1614b9ad928SBarry Smith PC subpc; 1622dcb1b2aSMatthew Knepley const char *prefix, *pprefix; 16323ce1328SBarry Smith Vec vec; 1640298fd71SBarry Smith DM *domain_dm = NULL; 1654b9ad928SBarry Smith 1664b9ad928SBarry Smith PetscFunctionBegin; 1674b9ad928SBarry Smith if (!pc->setupcalled) { 168265a2120SBarry Smith PetscInt m; 16992bb6962SLisandro Dalcin 1702b837212SDmitry Karpeev /* Note: if subdomains have been set either via PCASMSetTotalSubdomains() or via PCASMSetLocalSubdomains(), osm->n_local_true will not be PETSC_DECIDE */ 1712b837212SDmitry Karpeev if (osm->n_local_true == PETSC_DECIDE) { 17269ca1f37SDmitry Karpeev /* no subdomains given */ 17365db9045SDmitry Karpeev /* try pc->dm first, if allowed */ 174d709ea83SDmitry Karpeev if (osm->dm_subdomains && pc->dm) { 175feb221f8SDmitry Karpeev PetscInt num_domains, d; 176feb221f8SDmitry Karpeev char **domain_names; 1778d4ac253SDmitry Karpeev IS *inner_domain_is, *outer_domain_is; 1789566063dSJacob Faibussowitsch PetscCall(DMCreateDomainDecomposition(pc->dm, &num_domains, &domain_names, &inner_domain_is, &outer_domain_is, &domain_dm)); 179704f0395SPatrick Sanan osm->overlap = -1; /* We do not want to increase the overlap of the IS. 180704f0395SPatrick Sanan A future improvement of this code might allow one to use 181704f0395SPatrick Sanan DM-defined subdomains and also increase the overlap, 182704f0395SPatrick Sanan but that is not currently supported */ 1831baa6e33SBarry Smith if (num_domains) PetscCall(PCASMSetLocalSubdomains(pc, num_domains, outer_domain_is, inner_domain_is)); 184feb221f8SDmitry Karpeev for (d = 0; d < num_domains; ++d) { 1859566063dSJacob Faibussowitsch if (domain_names) PetscCall(PetscFree(domain_names[d])); 1869566063dSJacob Faibussowitsch if (inner_domain_is) PetscCall(ISDestroy(&inner_domain_is[d])); 1879566063dSJacob Faibussowitsch if (outer_domain_is) PetscCall(ISDestroy(&outer_domain_is[d])); 188feb221f8SDmitry Karpeev } 1899566063dSJacob Faibussowitsch PetscCall(PetscFree(domain_names)); 1909566063dSJacob Faibussowitsch PetscCall(PetscFree(inner_domain_is)); 1919566063dSJacob Faibussowitsch PetscCall(PetscFree(outer_domain_is)); 192feb221f8SDmitry Karpeev } 1932b837212SDmitry Karpeev if (osm->n_local_true == PETSC_DECIDE) { 19469ca1f37SDmitry Karpeev /* still no subdomains; use one subdomain per processor */ 1952b837212SDmitry Karpeev osm->n_local_true = 1; 196feb221f8SDmitry Karpeev } 1972b837212SDmitry Karpeev } 1982b837212SDmitry Karpeev { /* determine the global and max number of subdomains */ 1999371c9d4SSatish Balay struct { 2009371c9d4SSatish Balay PetscInt max, sum; 2019371c9d4SSatish Balay } inwork, outwork; 202c10200c1SHong Zhang PetscMPIInt size; 203c10200c1SHong Zhang 2046ac3741eSJed Brown inwork.max = osm->n_local_true; 2056ac3741eSJed Brown inwork.sum = osm->n_local_true; 2061c2dc1cbSBarry Smith PetscCall(MPIU_Allreduce(&inwork, &outwork, 1, MPIU_2INT, MPIU_MAXSUM_OP, PetscObjectComm((PetscObject)pc))); 2076ac3741eSJed Brown osm->n_local = outwork.max; 2086ac3741eSJed Brown osm->n = outwork.sum; 209c10200c1SHong Zhang 2109566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)pc), &size)); 211c10200c1SHong Zhang if (outwork.max == 1 && outwork.sum == size) { 2127dae84e0SHong Zhang /* osm->n_local_true = 1 on all processes, set this option may enable use of optimized MatCreateSubMatrices() implementation */ 2139566063dSJacob Faibussowitsch PetscCall(MatSetOption(pc->pmat, MAT_SUBMAT_SINGLEIS, PETSC_TRUE)); 214c10200c1SHong Zhang } 2154b9ad928SBarry Smith } 21678904715SLisandro Dalcin if (!osm->is) { /* create the index sets */ 2179566063dSJacob Faibussowitsch PetscCall(PCASMCreateSubdomains(pc->pmat, osm->n_local_true, &osm->is)); 2184b9ad928SBarry Smith } 219f5234e35SJed Brown if (osm->n_local_true > 1 && !osm->is_local) { 2209566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &osm->is_local)); 221f5234e35SJed Brown for (i = 0; i < osm->n_local_true; i++) { 222f5234e35SJed Brown if (osm->overlap > 0) { /* With positive overlap, osm->is[i] will be modified */ 2239566063dSJacob Faibussowitsch PetscCall(ISDuplicate(osm->is[i], &osm->is_local[i])); 2249566063dSJacob Faibussowitsch PetscCall(ISCopy(osm->is[i], osm->is_local[i])); 225f5234e35SJed Brown } else { 2269566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject)osm->is[i])); 227f5234e35SJed Brown osm->is_local[i] = osm->is[i]; 228f5234e35SJed Brown } 229f5234e35SJed Brown } 230f5234e35SJed Brown } 2319566063dSJacob Faibussowitsch PetscCall(PCGetOptionsPrefix(pc, &prefix)); 2323d03bb48SJed Brown if (osm->overlap > 0) { 2334b9ad928SBarry Smith /* Extend the "overlapping" regions by a number of steps */ 2349566063dSJacob Faibussowitsch PetscCall(MatIncreaseOverlap(pc->pmat, osm->n_local_true, osm->is, osm->overlap)); 2353d03bb48SJed Brown } 2366ed231c7SMatthew Knepley if (osm->sort_indices) { 23792bb6962SLisandro Dalcin for (i = 0; i < osm->n_local_true; i++) { 2389566063dSJacob Faibussowitsch PetscCall(ISSort(osm->is[i])); 23948a46eb9SPierre Jolivet if (osm->is_local) PetscCall(ISSort(osm->is_local[i])); 2404b9ad928SBarry Smith } 2416ed231c7SMatthew Knepley } 24298d3e228SPierre Jolivet flg = PETSC_FALSE; 24398d3e228SPierre Jolivet PetscCall(PetscOptionsHasName(NULL, prefix, "-pc_asm_print_subdomains", &flg)); 24498d3e228SPierre Jolivet if (flg) PetscCall(PCASMPrintSubdomains(pc)); 245f6991133SBarry Smith if (!osm->ksp) { 24678904715SLisandro Dalcin /* Create the local solvers */ 2479566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &osm->ksp)); 24848a46eb9SPierre Jolivet if (domain_dm) PetscCall(PetscInfo(pc, "Setting up ASM subproblems using the embedded DM\n")); 24992bb6962SLisandro Dalcin for (i = 0; i < osm->n_local_true; i++) { 2509566063dSJacob Faibussowitsch PetscCall(KSPCreate(PETSC_COMM_SELF, &ksp)); 2513821be0aSBarry Smith PetscCall(KSPSetNestLevel(ksp, pc->kspnestlevel)); 2529566063dSJacob Faibussowitsch PetscCall(KSPSetErrorIfNotConverged(ksp, pc->erroriffailure)); 2539566063dSJacob Faibussowitsch PetscCall(PetscObjectIncrementTabLevel((PetscObject)ksp, (PetscObject)pc, 1)); 2549566063dSJacob Faibussowitsch PetscCall(KSPSetType(ksp, KSPPREONLY)); 2559566063dSJacob Faibussowitsch PetscCall(KSPGetPC(ksp, &subpc)); 2569566063dSJacob Faibussowitsch PetscCall(PCGetOptionsPrefix(pc, &prefix)); 2579566063dSJacob Faibussowitsch PetscCall(KSPSetOptionsPrefix(ksp, prefix)); 2589566063dSJacob Faibussowitsch PetscCall(KSPAppendOptionsPrefix(ksp, "sub_")); 259feb221f8SDmitry Karpeev if (domain_dm) { 2609566063dSJacob Faibussowitsch PetscCall(KSPSetDM(ksp, domain_dm[i])); 2619566063dSJacob Faibussowitsch PetscCall(KSPSetDMActive(ksp, PETSC_FALSE)); 2629566063dSJacob Faibussowitsch PetscCall(DMDestroy(&domain_dm[i])); 263feb221f8SDmitry Karpeev } 2644b9ad928SBarry Smith osm->ksp[i] = ksp; 2654b9ad928SBarry Smith } 2661baa6e33SBarry Smith if (domain_dm) PetscCall(PetscFree(domain_dm)); 267f6991133SBarry Smith } 2681dd8081eSeaulisa 2699566063dSJacob Faibussowitsch PetscCall(ISConcatenate(PETSC_COMM_SELF, osm->n_local_true, osm->is, &osm->lis)); 2709566063dSJacob Faibussowitsch PetscCall(ISSortRemoveDups(osm->lis)); 2719566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->lis, &m)); 2721dd8081eSeaulisa 2734b9ad928SBarry Smith scall = MAT_INITIAL_MATRIX; 2744b9ad928SBarry Smith } else { 2754b9ad928SBarry Smith /* 2764b9ad928SBarry Smith Destroy the blocks from the previous iteration 2774b9ad928SBarry Smith */ 278e09e08ccSBarry Smith if (pc->flag == DIFFERENT_NONZERO_PATTERN) { 2799566063dSJacob Faibussowitsch PetscCall(MatDestroyMatrices(osm->n_local_true, &osm->pmat)); 2804b9ad928SBarry Smith scall = MAT_INITIAL_MATRIX; 2814b9ad928SBarry Smith } 2824b9ad928SBarry Smith } 2834b9ad928SBarry Smith 284b58cb649SBarry Smith /* Destroy previous submatrices of a different type than pc->pmat since MAT_REUSE_MATRIX won't work in that case */ 28582b5ce2aSStefano Zampini if (scall == MAT_REUSE_MATRIX && osm->sub_mat_type) { 28648a46eb9SPierre Jolivet if (osm->n_local_true > 0) PetscCall(MatDestroySubMatrices(osm->n_local_true, &osm->pmat)); 287b58cb649SBarry Smith scall = MAT_INITIAL_MATRIX; 288b58cb649SBarry Smith } 289b58cb649SBarry Smith 29092bb6962SLisandro Dalcin /* 29192bb6962SLisandro Dalcin Extract out the submatrices 29292bb6962SLisandro Dalcin */ 2939566063dSJacob Faibussowitsch PetscCall(MatCreateSubMatrices(pc->pmat, osm->n_local_true, osm->is, osm->is, scall, &osm->pmat)); 29492bb6962SLisandro Dalcin if (scall == MAT_INITIAL_MATRIX) { 2959566063dSJacob Faibussowitsch PetscCall(PetscObjectGetOptionsPrefix((PetscObject)pc->pmat, &pprefix)); 296aa624791SPierre Jolivet for (i = 0; i < osm->n_local_true; i++) PetscCall(PetscObjectSetOptionsPrefix((PetscObject)osm->pmat[i], pprefix)); 29792bb6962SLisandro Dalcin } 29880ec0b7dSPatrick Sanan 29980ec0b7dSPatrick Sanan /* Convert the types of the submatrices (if needbe) */ 30080ec0b7dSPatrick Sanan if (osm->sub_mat_type) { 30148a46eb9SPierre Jolivet for (i = 0; i < osm->n_local_true; i++) PetscCall(MatConvert(osm->pmat[i], osm->sub_mat_type, MAT_INPLACE_MATRIX, &(osm->pmat[i]))); 30280ec0b7dSPatrick Sanan } 30380ec0b7dSPatrick Sanan 30480ec0b7dSPatrick Sanan if (!pc->setupcalled) { 30556ea09ceSStefano Zampini VecType vtype; 30656ea09ceSStefano Zampini 30780ec0b7dSPatrick Sanan /* Create the local work vectors (from the local matrices) and scatter contexts */ 3089566063dSJacob Faibussowitsch PetscCall(MatCreateVecs(pc->pmat, &vec, NULL)); 3095b3c0d42Seaulisa 310677c7726SPierre Jolivet PetscCheck(!osm->is_local || osm->n_local_true == 1 || (osm->type != PC_ASM_INTERPOLATE && osm->type != PC_ASM_NONE), PetscObjectComm((PetscObject)pc), PETSC_ERR_SUP, "Cannot use interpolate or none PCASMType if is_local was provided to PCASMSetLocalSubdomains() with more than a single subdomain"); 311677c7726SPierre Jolivet if (osm->is_local && osm->type != PC_ASM_BASIC && osm->loctype == PC_COMPOSITE_ADDITIVE) PetscCall(PetscMalloc1(osm->n_local_true, &osm->lprolongation)); 3129566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &osm->lrestriction)); 3139566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &osm->x)); 3149566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &osm->y)); 315347574c9Seaulisa 3169566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->lis, &m)); 3179566063dSJacob Faibussowitsch PetscCall(ISCreateStride(PETSC_COMM_SELF, m, 0, 1, &isl)); 3189566063dSJacob Faibussowitsch PetscCall(MatGetVecType(osm->pmat[0], &vtype)); 3199566063dSJacob Faibussowitsch PetscCall(VecCreate(PETSC_COMM_SELF, &osm->lx)); 3209566063dSJacob Faibussowitsch PetscCall(VecSetSizes(osm->lx, m, m)); 3219566063dSJacob Faibussowitsch PetscCall(VecSetType(osm->lx, vtype)); 3229566063dSJacob Faibussowitsch PetscCall(VecDuplicate(osm->lx, &osm->ly)); 3239566063dSJacob Faibussowitsch PetscCall(VecScatterCreate(vec, osm->lis, osm->lx, isl, &osm->restriction)); 3249566063dSJacob Faibussowitsch PetscCall(ISDestroy(&isl)); 325347574c9Seaulisa 32680ec0b7dSPatrick Sanan for (i = 0; i < osm->n_local_true; ++i) { 3275b3c0d42Seaulisa ISLocalToGlobalMapping ltog; 3285b3c0d42Seaulisa IS isll; 3295b3c0d42Seaulisa const PetscInt *idx_is; 3305b3c0d42Seaulisa PetscInt *idx_lis, nout; 3315b3c0d42Seaulisa 3329566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->is[i], &m)); 3339566063dSJacob Faibussowitsch PetscCall(MatCreateVecs(osm->pmat[i], &osm->x[i], NULL)); 3349566063dSJacob Faibussowitsch PetscCall(VecDuplicate(osm->x[i], &osm->y[i])); 33555817e79SBarry Smith 336b0de9f23SBarry Smith /* generate a scatter from ly to y[i] picking all the overlapping is[i] entries */ 3379566063dSJacob Faibussowitsch PetscCall(ISLocalToGlobalMappingCreateIS(osm->lis, <og)); 3389566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->is[i], &m)); 3399566063dSJacob Faibussowitsch PetscCall(ISGetIndices(osm->is[i], &idx_is)); 3409566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(m, &idx_lis)); 3419566063dSJacob Faibussowitsch PetscCall(ISGlobalToLocalMappingApply(ltog, IS_GTOLM_DROP, m, idx_is, &nout, idx_lis)); 3427827d75bSBarry Smith PetscCheck(nout == m, PETSC_COMM_SELF, PETSC_ERR_PLIB, "is not a subset of lis"); 3439566063dSJacob Faibussowitsch PetscCall(ISRestoreIndices(osm->is[i], &idx_is)); 3449566063dSJacob Faibussowitsch PetscCall(ISCreateGeneral(PETSC_COMM_SELF, m, idx_lis, PETSC_OWN_POINTER, &isll)); 3459566063dSJacob Faibussowitsch PetscCall(ISLocalToGlobalMappingDestroy(<og)); 3469566063dSJacob Faibussowitsch PetscCall(ISCreateStride(PETSC_COMM_SELF, m, 0, 1, &isl)); 3479566063dSJacob Faibussowitsch PetscCall(VecScatterCreate(osm->ly, isll, osm->y[i], isl, &osm->lrestriction[i])); 3489566063dSJacob Faibussowitsch PetscCall(ISDestroy(&isll)); 3499566063dSJacob Faibussowitsch PetscCall(ISDestroy(&isl)); 350910cf402Sprj- if (osm->lprolongation) { /* generate a scatter from y[i] to ly picking only the the non-overlapping is_local[i] entries */ 351d8b3b5e3Seaulisa ISLocalToGlobalMapping ltog; 352d8b3b5e3Seaulisa IS isll, isll_local; 353d8b3b5e3Seaulisa const PetscInt *idx_local; 354d8b3b5e3Seaulisa PetscInt *idx1, *idx2, nout; 355d8b3b5e3Seaulisa 3569566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(osm->is_local[i], &m_local)); 3579566063dSJacob Faibussowitsch PetscCall(ISGetIndices(osm->is_local[i], &idx_local)); 358d8b3b5e3Seaulisa 3599566063dSJacob Faibussowitsch PetscCall(ISLocalToGlobalMappingCreateIS(osm->is[i], <og)); 3609566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(m_local, &idx1)); 3619566063dSJacob Faibussowitsch PetscCall(ISGlobalToLocalMappingApply(ltog, IS_GTOLM_DROP, m_local, idx_local, &nout, idx1)); 3629566063dSJacob Faibussowitsch PetscCall(ISLocalToGlobalMappingDestroy(<og)); 3637827d75bSBarry Smith PetscCheck(nout == m_local, PETSC_COMM_SELF, PETSC_ERR_PLIB, "is_local not a subset of is"); 3649566063dSJacob Faibussowitsch PetscCall(ISCreateGeneral(PETSC_COMM_SELF, m_local, idx1, PETSC_OWN_POINTER, &isll)); 365d8b3b5e3Seaulisa 3669566063dSJacob Faibussowitsch PetscCall(ISLocalToGlobalMappingCreateIS(osm->lis, <og)); 3679566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(m_local, &idx2)); 3689566063dSJacob Faibussowitsch PetscCall(ISGlobalToLocalMappingApply(ltog, IS_GTOLM_DROP, m_local, idx_local, &nout, idx2)); 3699566063dSJacob Faibussowitsch PetscCall(ISLocalToGlobalMappingDestroy(<og)); 3707827d75bSBarry Smith PetscCheck(nout == m_local, PETSC_COMM_SELF, PETSC_ERR_PLIB, "is_local not a subset of lis"); 3719566063dSJacob Faibussowitsch PetscCall(ISCreateGeneral(PETSC_COMM_SELF, m_local, idx2, PETSC_OWN_POINTER, &isll_local)); 372d8b3b5e3Seaulisa 3739566063dSJacob Faibussowitsch PetscCall(ISRestoreIndices(osm->is_local[i], &idx_local)); 3749566063dSJacob Faibussowitsch PetscCall(VecScatterCreate(osm->y[i], isll, osm->ly, isll_local, &osm->lprolongation[i])); 375d8b3b5e3Seaulisa 3769566063dSJacob Faibussowitsch PetscCall(ISDestroy(&isll)); 3779566063dSJacob Faibussowitsch PetscCall(ISDestroy(&isll_local)); 378d8b3b5e3Seaulisa } 37980ec0b7dSPatrick Sanan } 3809566063dSJacob Faibussowitsch PetscCall(VecDestroy(&vec)); 38180ec0b7dSPatrick Sanan } 38280ec0b7dSPatrick Sanan 383fb745f2cSMatthew G. Knepley if (osm->loctype == PC_COMPOSITE_MULTIPLICATIVE) { 384235cc4ceSMatthew G. Knepley IS *cis; 385235cc4ceSMatthew G. Knepley PetscInt c; 386235cc4ceSMatthew G. Knepley 3879566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &cis)); 388235cc4ceSMatthew G. Knepley for (c = 0; c < osm->n_local_true; ++c) cis[c] = osm->lis; 3899566063dSJacob Faibussowitsch PetscCall(MatCreateSubMatrices(pc->pmat, osm->n_local_true, osm->is, cis, scall, &osm->lmats)); 3909566063dSJacob Faibussowitsch PetscCall(PetscFree(cis)); 391fb745f2cSMatthew G. Knepley } 3924b9ad928SBarry Smith 3934b9ad928SBarry Smith /* Return control to the user so that the submatrices can be modified (e.g., to apply 3944b9ad928SBarry Smith different boundary conditions for the submatrices than for the global problem) */ 3959566063dSJacob Faibussowitsch PetscCall(PCModifySubMatrices(pc, osm->n_local_true, osm->is, osm->is, osm->pmat, pc->modifysubmatricesP)); 3964b9ad928SBarry Smith 39792bb6962SLisandro Dalcin /* 39892bb6962SLisandro Dalcin Loop over subdomains putting them into local ksp 39992bb6962SLisandro Dalcin */ 4009566063dSJacob Faibussowitsch PetscCall(KSPGetOptionsPrefix(osm->ksp[0], &prefix)); 40192bb6962SLisandro Dalcin for (i = 0; i < osm->n_local_true; i++) { 4029566063dSJacob Faibussowitsch PetscCall(KSPSetOperators(osm->ksp[i], osm->pmat[i], osm->pmat[i])); 4039566063dSJacob Faibussowitsch PetscCall(MatSetOptionsPrefix(osm->pmat[i], prefix)); 40448a46eb9SPierre Jolivet if (!pc->setupcalled) PetscCall(KSPSetFromOptions(osm->ksp[i])); 40592bb6962SLisandro Dalcin } 4063ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 4074b9ad928SBarry Smith } 4084b9ad928SBarry Smith 409d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCSetUpOnBlocks_ASM(PC pc) 410d71ae5a4SJacob Faibussowitsch { 4114b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 41213f74950SBarry Smith PetscInt i; 413539c167fSBarry Smith KSPConvergedReason reason; 4144b9ad928SBarry Smith 4154b9ad928SBarry Smith PetscFunctionBegin; 4164b9ad928SBarry Smith for (i = 0; i < osm->n_local_true; i++) { 4179566063dSJacob Faibussowitsch PetscCall(KSPSetUp(osm->ksp[i])); 4189566063dSJacob Faibussowitsch PetscCall(KSPGetConvergedReason(osm->ksp[i], &reason)); 419ad540459SPierre Jolivet if (reason == KSP_DIVERGED_PC_FAILED) pc->failedreason = PC_SUBPC_ERROR; 4204b9ad928SBarry Smith } 4213ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 4224b9ad928SBarry Smith } 4234b9ad928SBarry Smith 424d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCApply_ASM(PC pc, Vec x, Vec y) 425d71ae5a4SJacob Faibussowitsch { 4264b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 4271dd8081eSeaulisa PetscInt i, n_local_true = osm->n_local_true; 4284b9ad928SBarry Smith ScatterMode forward = SCATTER_FORWARD, reverse = SCATTER_REVERSE; 4294b9ad928SBarry Smith 4304b9ad928SBarry Smith PetscFunctionBegin; 4314b9ad928SBarry Smith /* 43248e38a8aSPierre Jolivet support for limiting the restriction or interpolation to only local 4334b9ad928SBarry Smith subdomain values (leaving the other values 0). 4344b9ad928SBarry Smith */ 4354b9ad928SBarry Smith if (!(osm->type & PC_ASM_RESTRICT)) { 4364b9ad928SBarry Smith forward = SCATTER_FORWARD_LOCAL; 4374b9ad928SBarry Smith /* have to zero the work RHS since scatter may leave some slots empty */ 4389566063dSJacob Faibussowitsch PetscCall(VecSet(osm->lx, 0.0)); 4394b9ad928SBarry Smith } 440ad540459SPierre Jolivet if (!(osm->type & PC_ASM_INTERPOLATE)) reverse = SCATTER_REVERSE_LOCAL; 4414b9ad928SBarry Smith 4420fdf79fbSJacob Faibussowitsch PetscCheck(osm->loctype == PC_COMPOSITE_MULTIPLICATIVE || osm->loctype == PC_COMPOSITE_ADDITIVE, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONG, "Invalid local composition type: %s", PCCompositeTypes[osm->loctype]); 443b0de9f23SBarry Smith /* zero the global and the local solutions */ 4449566063dSJacob Faibussowitsch PetscCall(VecSet(y, 0.0)); 4459566063dSJacob Faibussowitsch PetscCall(VecSet(osm->ly, 0.0)); 446347574c9Seaulisa 44748e38a8aSPierre Jolivet /* copy the global RHS to local RHS including the ghost nodes */ 4489566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->restriction, x, osm->lx, INSERT_VALUES, forward)); 4499566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->restriction, x, osm->lx, INSERT_VALUES, forward)); 450347574c9Seaulisa 45148e38a8aSPierre Jolivet /* restrict local RHS to the overlapping 0-block RHS */ 4529566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[0], osm->lx, osm->x[0], INSERT_VALUES, forward)); 4539566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[0], osm->lx, osm->x[0], INSERT_VALUES, forward)); 454d8b3b5e3Seaulisa 45512cd4985SMatthew G. Knepley /* do the local solves */ 45612cd4985SMatthew G. Knepley for (i = 0; i < n_local_true; ++i) { 457b0de9f23SBarry Smith /* solve the overlapping i-block */ 4589566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(PC_ApplyOnBlocks, osm->ksp[i], osm->x[i], osm->y[i], 0)); 4599566063dSJacob Faibussowitsch PetscCall(KSPSolve(osm->ksp[i], osm->x[i], osm->y[i])); 4609566063dSJacob Faibussowitsch PetscCall(KSPCheckSolve(osm->ksp[i], pc, osm->y[i])); 4619566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(PC_ApplyOnBlocks, osm->ksp[i], osm->x[i], osm->y[i], 0)); 462d8b3b5e3Seaulisa 463677c7726SPierre Jolivet if (osm->lprolongation && osm->type != PC_ASM_INTERPOLATE) { /* interpolate the non-overlapping i-block solution to the local solution (only for restrictive additive) */ 4649566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lprolongation[i], osm->y[i], osm->ly, ADD_VALUES, forward)); 4659566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lprolongation[i], osm->y[i], osm->ly, ADD_VALUES, forward)); 46648e38a8aSPierre Jolivet } else { /* interpolate the overlapping i-block solution to the local solution */ 4679566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[i], osm->y[i], osm->ly, ADD_VALUES, reverse)); 4689566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[i], osm->y[i], osm->ly, ADD_VALUES, reverse)); 469d8b3b5e3Seaulisa } 470347574c9Seaulisa 471347574c9Seaulisa if (i < n_local_true - 1) { 47248e38a8aSPierre Jolivet /* restrict local RHS to the overlapping (i+1)-block RHS */ 4739566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[i + 1], osm->lx, osm->x[i + 1], INSERT_VALUES, forward)); 4749566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[i + 1], osm->lx, osm->x[i + 1], INSERT_VALUES, forward)); 475347574c9Seaulisa 476347574c9Seaulisa if (osm->loctype == PC_COMPOSITE_MULTIPLICATIVE) { 4778966356dSPierre Jolivet /* update the overlapping (i+1)-block RHS using the current local solution */ 4789566063dSJacob Faibussowitsch PetscCall(MatMult(osm->lmats[i + 1], osm->ly, osm->y[i + 1])); 4799566063dSJacob Faibussowitsch PetscCall(VecAXPBY(osm->x[i + 1], -1., 1., osm->y[i + 1])); 4807c3d802fSMatthew G. Knepley } 48112cd4985SMatthew G. Knepley } 48212cd4985SMatthew G. Knepley } 48348e38a8aSPierre Jolivet /* add the local solution to the global solution including the ghost nodes */ 4849566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->restriction, osm->ly, y, ADD_VALUES, reverse)); 4859566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->restriction, osm->ly, y, ADD_VALUES, reverse)); 4863ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 4874b9ad928SBarry Smith } 4884b9ad928SBarry Smith 489d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCMatApply_ASM(PC pc, Mat X, Mat Y) 490d71ae5a4SJacob Faibussowitsch { 49148e38a8aSPierre Jolivet PC_ASM *osm = (PC_ASM *)pc->data; 49248e38a8aSPierre Jolivet Mat Z, W; 49348e38a8aSPierre Jolivet Vec x; 49448e38a8aSPierre Jolivet PetscInt i, m, N; 49548e38a8aSPierre Jolivet ScatterMode forward = SCATTER_FORWARD, reverse = SCATTER_REVERSE; 49648e38a8aSPierre Jolivet 49748e38a8aSPierre Jolivet PetscFunctionBegin; 4987827d75bSBarry Smith PetscCheck(osm->n_local_true <= 1, PetscObjectComm((PetscObject)pc), PETSC_ERR_SUP, "Not yet implemented"); 49948e38a8aSPierre Jolivet /* 50048e38a8aSPierre Jolivet support for limiting the restriction or interpolation to only local 50148e38a8aSPierre Jolivet subdomain values (leaving the other values 0). 50248e38a8aSPierre Jolivet */ 50348e38a8aSPierre Jolivet if (!(osm->type & PC_ASM_RESTRICT)) { 50448e38a8aSPierre Jolivet forward = SCATTER_FORWARD_LOCAL; 50548e38a8aSPierre Jolivet /* have to zero the work RHS since scatter may leave some slots empty */ 5069566063dSJacob Faibussowitsch PetscCall(VecSet(osm->lx, 0.0)); 50748e38a8aSPierre Jolivet } 508ad540459SPierre Jolivet if (!(osm->type & PC_ASM_INTERPOLATE)) reverse = SCATTER_REVERSE_LOCAL; 5099566063dSJacob Faibussowitsch PetscCall(VecGetLocalSize(osm->x[0], &m)); 5109566063dSJacob Faibussowitsch PetscCall(MatGetSize(X, NULL, &N)); 5119566063dSJacob Faibussowitsch PetscCall(MatCreateSeqDense(PETSC_COMM_SELF, m, N, NULL, &Z)); 5120fdf79fbSJacob Faibussowitsch 5130fdf79fbSJacob Faibussowitsch PetscCheck(osm->loctype == PC_COMPOSITE_MULTIPLICATIVE || osm->loctype == PC_COMPOSITE_ADDITIVE, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONG, "Invalid local composition type: %s", PCCompositeTypes[osm->loctype]); 51448e38a8aSPierre Jolivet /* zero the global and the local solutions */ 5159566063dSJacob Faibussowitsch PetscCall(MatZeroEntries(Y)); 5169566063dSJacob Faibussowitsch PetscCall(VecSet(osm->ly, 0.0)); 51748e38a8aSPierre Jolivet 51848e38a8aSPierre Jolivet for (i = 0; i < N; ++i) { 5199566063dSJacob Faibussowitsch PetscCall(MatDenseGetColumnVecRead(X, i, &x)); 52048e38a8aSPierre Jolivet /* copy the global RHS to local RHS including the ghost nodes */ 5219566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->restriction, x, osm->lx, INSERT_VALUES, forward)); 5229566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->restriction, x, osm->lx, INSERT_VALUES, forward)); 5239566063dSJacob Faibussowitsch PetscCall(MatDenseRestoreColumnVecRead(X, i, &x)); 52448e38a8aSPierre Jolivet 5259566063dSJacob Faibussowitsch PetscCall(MatDenseGetColumnVecWrite(Z, i, &x)); 52648e38a8aSPierre Jolivet /* restrict local RHS to the overlapping 0-block RHS */ 5279566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[0], osm->lx, x, INSERT_VALUES, forward)); 5289566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[0], osm->lx, x, INSERT_VALUES, forward)); 5299566063dSJacob Faibussowitsch PetscCall(MatDenseRestoreColumnVecWrite(Z, i, &x)); 53048e38a8aSPierre Jolivet } 5319566063dSJacob Faibussowitsch PetscCall(MatCreateSeqDense(PETSC_COMM_SELF, m, N, NULL, &W)); 53248e38a8aSPierre Jolivet /* solve the overlapping 0-block */ 5339566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(PC_ApplyOnBlocks, osm->ksp[0], Z, W, 0)); 5349566063dSJacob Faibussowitsch PetscCall(KSPMatSolve(osm->ksp[0], Z, W)); 5359566063dSJacob Faibussowitsch PetscCall(KSPCheckSolve(osm->ksp[0], pc, NULL)); 5369566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(PC_ApplyOnBlocks, osm->ksp[0], Z, W, 0)); 5379566063dSJacob Faibussowitsch PetscCall(MatDestroy(&Z)); 53848e38a8aSPierre Jolivet 53948e38a8aSPierre Jolivet for (i = 0; i < N; ++i) { 5409566063dSJacob Faibussowitsch PetscCall(VecSet(osm->ly, 0.0)); 5419566063dSJacob Faibussowitsch PetscCall(MatDenseGetColumnVecRead(W, i, &x)); 542677c7726SPierre Jolivet if (osm->lprolongation && osm->type != PC_ASM_INTERPOLATE) { /* interpolate the non-overlapping 0-block solution to the local solution (only for restrictive additive) */ 5439566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lprolongation[0], x, osm->ly, ADD_VALUES, forward)); 5449566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lprolongation[0], x, osm->ly, ADD_VALUES, forward)); 54548e38a8aSPierre Jolivet } else { /* interpolate the overlapping 0-block solution to the local solution */ 5469566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[0], x, osm->ly, ADD_VALUES, reverse)); 5479566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[0], x, osm->ly, ADD_VALUES, reverse)); 54848e38a8aSPierre Jolivet } 5499566063dSJacob Faibussowitsch PetscCall(MatDenseRestoreColumnVecRead(W, i, &x)); 55048e38a8aSPierre Jolivet 5519566063dSJacob Faibussowitsch PetscCall(MatDenseGetColumnVecWrite(Y, i, &x)); 55248e38a8aSPierre Jolivet /* add the local solution to the global solution including the ghost nodes */ 5539566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->restriction, osm->ly, x, ADD_VALUES, reverse)); 5549566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->restriction, osm->ly, x, ADD_VALUES, reverse)); 5559566063dSJacob Faibussowitsch PetscCall(MatDenseRestoreColumnVecWrite(Y, i, &x)); 55648e38a8aSPierre Jolivet } 5579566063dSJacob Faibussowitsch PetscCall(MatDestroy(&W)); 5583ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 55948e38a8aSPierre Jolivet } 56048e38a8aSPierre Jolivet 561d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCApplyTranspose_ASM(PC pc, Vec x, Vec y) 562d71ae5a4SJacob Faibussowitsch { 5634b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 5641dd8081eSeaulisa PetscInt i, n_local_true = osm->n_local_true; 5654b9ad928SBarry Smith ScatterMode forward = SCATTER_FORWARD, reverse = SCATTER_REVERSE; 5664b9ad928SBarry Smith 5674b9ad928SBarry Smith PetscFunctionBegin; 5684b9ad928SBarry Smith /* 5694b9ad928SBarry Smith Support for limiting the restriction or interpolation to only local 5704b9ad928SBarry Smith subdomain values (leaving the other values 0). 5714b9ad928SBarry Smith 5724b9ad928SBarry Smith Note: these are reversed from the PCApply_ASM() because we are applying the 5734b9ad928SBarry Smith transpose of the three terms 5744b9ad928SBarry Smith */ 575d8b3b5e3Seaulisa 5764b9ad928SBarry Smith if (!(osm->type & PC_ASM_INTERPOLATE)) { 5774b9ad928SBarry Smith forward = SCATTER_FORWARD_LOCAL; 5784b9ad928SBarry Smith /* have to zero the work RHS since scatter may leave some slots empty */ 5799566063dSJacob Faibussowitsch PetscCall(VecSet(osm->lx, 0.0)); 5804b9ad928SBarry Smith } 5812fa5cd67SKarl Rupp if (!(osm->type & PC_ASM_RESTRICT)) reverse = SCATTER_REVERSE_LOCAL; 5824b9ad928SBarry Smith 583b0de9f23SBarry Smith /* zero the global and the local solutions */ 5849566063dSJacob Faibussowitsch PetscCall(VecSet(y, 0.0)); 5859566063dSJacob Faibussowitsch PetscCall(VecSet(osm->ly, 0.0)); 586d8b3b5e3Seaulisa 587b0de9f23SBarry Smith /* Copy the global RHS to local RHS including the ghost nodes */ 5889566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->restriction, x, osm->lx, INSERT_VALUES, forward)); 5899566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->restriction, x, osm->lx, INSERT_VALUES, forward)); 590d8b3b5e3Seaulisa 591b0de9f23SBarry Smith /* Restrict local RHS to the overlapping 0-block RHS */ 5929566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[0], osm->lx, osm->x[0], INSERT_VALUES, forward)); 5939566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[0], osm->lx, osm->x[0], INSERT_VALUES, forward)); 594d8b3b5e3Seaulisa 5954b9ad928SBarry Smith /* do the local solves */ 596d8b3b5e3Seaulisa for (i = 0; i < n_local_true; ++i) { 597b0de9f23SBarry Smith /* solve the overlapping i-block */ 5989566063dSJacob Faibussowitsch PetscCall(PetscLogEventBegin(PC_ApplyOnBlocks, osm->ksp[i], osm->x[i], osm->y[i], 0)); 5999566063dSJacob Faibussowitsch PetscCall(KSPSolveTranspose(osm->ksp[i], osm->x[i], osm->y[i])); 6009566063dSJacob Faibussowitsch PetscCall(KSPCheckSolve(osm->ksp[i], pc, osm->y[i])); 6019566063dSJacob Faibussowitsch PetscCall(PetscLogEventEnd(PC_ApplyOnBlocks, osm->ksp[i], osm->x[i], osm->y[i], 0)); 602d8b3b5e3Seaulisa 603a681a0f1SPierre Jolivet if (osm->lprolongation && osm->type != PC_ASM_RESTRICT) { /* interpolate the non-overlapping i-block solution to the local solution */ 6049566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lprolongation[i], osm->y[i], osm->ly, ADD_VALUES, forward)); 6059566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lprolongation[i], osm->y[i], osm->ly, ADD_VALUES, forward)); 606910cf402Sprj- } else { /* interpolate the overlapping i-block solution to the local solution */ 6079566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[i], osm->y[i], osm->ly, ADD_VALUES, reverse)); 6089566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[i], osm->y[i], osm->ly, ADD_VALUES, reverse)); 6094b9ad928SBarry Smith } 610d8b3b5e3Seaulisa 611d8b3b5e3Seaulisa if (i < n_local_true - 1) { 612b0de9f23SBarry Smith /* Restrict local RHS to the overlapping (i+1)-block RHS */ 6139566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->lrestriction[i + 1], osm->lx, osm->x[i + 1], INSERT_VALUES, forward)); 6149566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->lrestriction[i + 1], osm->lx, osm->x[i + 1], INSERT_VALUES, forward)); 6154b9ad928SBarry Smith } 6164b9ad928SBarry Smith } 617b0de9f23SBarry Smith /* Add the local solution to the global solution including the ghost nodes */ 6189566063dSJacob Faibussowitsch PetscCall(VecScatterBegin(osm->restriction, osm->ly, y, ADD_VALUES, reverse)); 6199566063dSJacob Faibussowitsch PetscCall(VecScatterEnd(osm->restriction, osm->ly, y, ADD_VALUES, reverse)); 6203ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 6214b9ad928SBarry Smith } 6224b9ad928SBarry Smith 623d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCReset_ASM(PC pc) 624d71ae5a4SJacob Faibussowitsch { 6254b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 62613f74950SBarry Smith PetscInt i; 6274b9ad928SBarry Smith 6284b9ad928SBarry Smith PetscFunctionBegin; 62992bb6962SLisandro Dalcin if (osm->ksp) { 63048a46eb9SPierre Jolivet for (i = 0; i < osm->n_local_true; i++) PetscCall(KSPReset(osm->ksp[i])); 63192bb6962SLisandro Dalcin } 632e09e08ccSBarry Smith if (osm->pmat) { 63348a46eb9SPierre Jolivet if (osm->n_local_true > 0) PetscCall(MatDestroySubMatrices(osm->n_local_true, &osm->pmat)); 63492bb6962SLisandro Dalcin } 6351dd8081eSeaulisa if (osm->lrestriction) { 6369566063dSJacob Faibussowitsch PetscCall(VecScatterDestroy(&osm->restriction)); 6371dd8081eSeaulisa for (i = 0; i < osm->n_local_true; i++) { 6389566063dSJacob Faibussowitsch PetscCall(VecScatterDestroy(&osm->lrestriction[i])); 6399566063dSJacob Faibussowitsch if (osm->lprolongation) PetscCall(VecScatterDestroy(&osm->lprolongation[i])); 6409566063dSJacob Faibussowitsch PetscCall(VecDestroy(&osm->x[i])); 6419566063dSJacob Faibussowitsch PetscCall(VecDestroy(&osm->y[i])); 6424b9ad928SBarry Smith } 6439566063dSJacob Faibussowitsch PetscCall(PetscFree(osm->lrestriction)); 6449566063dSJacob Faibussowitsch if (osm->lprolongation) PetscCall(PetscFree(osm->lprolongation)); 6459566063dSJacob Faibussowitsch PetscCall(PetscFree(osm->x)); 6469566063dSJacob Faibussowitsch PetscCall(PetscFree(osm->y)); 64792bb6962SLisandro Dalcin } 6489566063dSJacob Faibussowitsch PetscCall(PCASMDestroySubdomains(osm->n_local_true, osm->is, osm->is_local)); 6499566063dSJacob Faibussowitsch PetscCall(ISDestroy(&osm->lis)); 6509566063dSJacob Faibussowitsch PetscCall(VecDestroy(&osm->lx)); 6519566063dSJacob Faibussowitsch PetscCall(VecDestroy(&osm->ly)); 65248a46eb9SPierre Jolivet if (osm->loctype == PC_COMPOSITE_MULTIPLICATIVE) PetscCall(MatDestroyMatrices(osm->n_local_true, &osm->lmats)); 6532fa5cd67SKarl Rupp 6549566063dSJacob Faibussowitsch PetscCall(PetscFree(osm->sub_mat_type)); 65580ec0b7dSPatrick Sanan 6560a545947SLisandro Dalcin osm->is = NULL; 6570a545947SLisandro Dalcin osm->is_local = NULL; 6583ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 659e91c6855SBarry Smith } 660e91c6855SBarry Smith 661d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCDestroy_ASM(PC pc) 662d71ae5a4SJacob Faibussowitsch { 663e91c6855SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 664e91c6855SBarry Smith PetscInt i; 665e91c6855SBarry Smith 666e91c6855SBarry Smith PetscFunctionBegin; 6679566063dSJacob Faibussowitsch PetscCall(PCReset_ASM(pc)); 668e91c6855SBarry Smith if (osm->ksp) { 66948a46eb9SPierre Jolivet for (i = 0; i < osm->n_local_true; i++) PetscCall(KSPDestroy(&osm->ksp[i])); 6709566063dSJacob Faibussowitsch PetscCall(PetscFree(osm->ksp)); 671e91c6855SBarry Smith } 6729566063dSJacob Faibussowitsch PetscCall(PetscFree(pc->data)); 67396322394SPierre Jolivet 6749566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetLocalSubdomains_C", NULL)); 6759566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetTotalSubdomains_C", NULL)); 6769566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetOverlap_C", NULL)); 6779566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetType_C", NULL)); 6789566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetType_C", NULL)); 6799566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetLocalType_C", NULL)); 6809566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetLocalType_C", NULL)); 6819566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetSortIndices_C", NULL)); 6829566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetSubKSP_C", NULL)); 6839566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetSubMatType_C", NULL)); 6849566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetSubMatType_C", NULL)); 6853ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 6864b9ad928SBarry Smith } 6874b9ad928SBarry Smith 688d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCSetFromOptions_ASM(PC pc, PetscOptionItems *PetscOptionsObject) 689d71ae5a4SJacob Faibussowitsch { 6904b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 6919dcbbd2bSBarry Smith PetscInt blocks, ovl; 69257501b6eSBarry Smith PetscBool flg; 69392bb6962SLisandro Dalcin PCASMType asmtype; 69412cd4985SMatthew G. Knepley PCCompositeType loctype; 69580ec0b7dSPatrick Sanan char sub_mat_type[256]; 6964b9ad928SBarry Smith 6974b9ad928SBarry Smith PetscFunctionBegin; 698d0609cedSBarry Smith PetscOptionsHeadBegin(PetscOptionsObject, "Additive Schwarz options"); 6999566063dSJacob Faibussowitsch PetscCall(PetscOptionsBool("-pc_asm_dm_subdomains", "Use DMCreateDomainDecomposition() to define subdomains", "PCASMSetDMSubdomains", osm->dm_subdomains, &osm->dm_subdomains, &flg)); 7009566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-pc_asm_blocks", "Number of subdomains", "PCASMSetTotalSubdomains", osm->n, &blocks, &flg)); 70165db9045SDmitry Karpeev if (flg) { 7029566063dSJacob Faibussowitsch PetscCall(PCASMSetTotalSubdomains(pc, blocks, NULL, NULL)); 703d709ea83SDmitry Karpeev osm->dm_subdomains = PETSC_FALSE; 70465db9045SDmitry Karpeev } 7059566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-pc_asm_local_blocks", "Number of local subdomains", "PCASMSetLocalSubdomains", osm->n_local_true, &blocks, &flg)); 706342c94f9SMatthew G. Knepley if (flg) { 7079566063dSJacob Faibussowitsch PetscCall(PCASMSetLocalSubdomains(pc, blocks, NULL, NULL)); 708342c94f9SMatthew G. Knepley osm->dm_subdomains = PETSC_FALSE; 709342c94f9SMatthew G. Knepley } 7109566063dSJacob Faibussowitsch PetscCall(PetscOptionsInt("-pc_asm_overlap", "Number of grid points overlap", "PCASMSetOverlap", osm->overlap, &ovl, &flg)); 71165db9045SDmitry Karpeev if (flg) { 7129566063dSJacob Faibussowitsch PetscCall(PCASMSetOverlap(pc, ovl)); 713d709ea83SDmitry Karpeev osm->dm_subdomains = PETSC_FALSE; 71465db9045SDmitry Karpeev } 71590d69ab7SBarry Smith flg = PETSC_FALSE; 7169566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnum("-pc_asm_type", "Type of restriction/extension", "PCASMSetType", PCASMTypes, (PetscEnum)osm->type, (PetscEnum *)&asmtype, &flg)); 7179566063dSJacob Faibussowitsch if (flg) PetscCall(PCASMSetType(pc, asmtype)); 71812cd4985SMatthew G. Knepley flg = PETSC_FALSE; 7199566063dSJacob Faibussowitsch PetscCall(PetscOptionsEnum("-pc_asm_local_type", "Type of local solver composition", "PCASMSetLocalType", PCCompositeTypes, (PetscEnum)osm->loctype, (PetscEnum *)&loctype, &flg)); 7209566063dSJacob Faibussowitsch if (flg) PetscCall(PCASMSetLocalType(pc, loctype)); 7219566063dSJacob Faibussowitsch PetscCall(PetscOptionsFList("-pc_asm_sub_mat_type", "Subsolve Matrix Type", "PCASMSetSubMatType", MatList, NULL, sub_mat_type, 256, &flg)); 7221baa6e33SBarry Smith if (flg) PetscCall(PCASMSetSubMatType(pc, sub_mat_type)); 723d0609cedSBarry Smith PetscOptionsHeadEnd(); 7243ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 7254b9ad928SBarry Smith } 7264b9ad928SBarry Smith 727d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetLocalSubdomains_ASM(PC pc, PetscInt n, IS is[], IS is_local[]) 728d71ae5a4SJacob Faibussowitsch { 7294b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 73092bb6962SLisandro Dalcin PetscInt i; 7314b9ad928SBarry Smith 7324b9ad928SBarry Smith PetscFunctionBegin; 73363a3b9bcSJacob Faibussowitsch PetscCheck(n >= 1, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Each process must have 1 or more blocks, n = %" PetscInt_FMT, n); 7347827d75bSBarry Smith PetscCheck(!pc->setupcalled || (n == osm->n_local_true && !is), PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONGSTATE, "PCASMSetLocalSubdomains() should be called before calling PCSetUp()."); 735e7e72b3dSBarry Smith 7364b9ad928SBarry Smith if (!pc->setupcalled) { 73792bb6962SLisandro Dalcin if (is) { 7389566063dSJacob Faibussowitsch for (i = 0; i < n; i++) PetscCall(PetscObjectReference((PetscObject)is[i])); 73992bb6962SLisandro Dalcin } 740832fc9a5SMatthew Knepley if (is_local) { 7419566063dSJacob Faibussowitsch for (i = 0; i < n; i++) PetscCall(PetscObjectReference((PetscObject)is_local[i])); 742832fc9a5SMatthew Knepley } 7439566063dSJacob Faibussowitsch PetscCall(PCASMDestroySubdomains(osm->n_local_true, osm->is, osm->is_local)); 7442fa5cd67SKarl Rupp 74507517c86SMark Adams if (osm->ksp && osm->n_local_true != n) { 74607517c86SMark Adams for (i = 0; i < osm->n_local_true; i++) PetscCall(KSPDestroy(&osm->ksp[i])); 74707517c86SMark Adams PetscCall(PetscFree(osm->ksp)); 74807517c86SMark Adams } 74907517c86SMark Adams 7504b9ad928SBarry Smith osm->n_local_true = n; 7510a545947SLisandro Dalcin osm->is = NULL; 7520a545947SLisandro Dalcin osm->is_local = NULL; 75392bb6962SLisandro Dalcin if (is) { 7549566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(n, &osm->is)); 7552fa5cd67SKarl Rupp for (i = 0; i < n; i++) osm->is[i] = is[i]; 7563d03bb48SJed Brown /* Flag indicating that the user has set overlapping subdomains so PCASM should not increase their size. */ 7573d03bb48SJed Brown osm->overlap = -1; 75892bb6962SLisandro Dalcin } 7592b691e39SMatthew Knepley if (is_local) { 7609566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(n, &osm->is_local)); 7612fa5cd67SKarl Rupp for (i = 0; i < n; i++) osm->is_local[i] = is_local[i]; 762a35b7b57SDmitry Karpeev if (!is) { 7639566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(osm->n_local_true, &osm->is)); 764a35b7b57SDmitry Karpeev for (i = 0; i < osm->n_local_true; i++) { 765a35b7b57SDmitry Karpeev if (osm->overlap > 0) { /* With positive overlap, osm->is[i] will be modified */ 7669566063dSJacob Faibussowitsch PetscCall(ISDuplicate(osm->is_local[i], &osm->is[i])); 7679566063dSJacob Faibussowitsch PetscCall(ISCopy(osm->is_local[i], osm->is[i])); 768a35b7b57SDmitry Karpeev } else { 7699566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject)osm->is_local[i])); 770a35b7b57SDmitry Karpeev osm->is[i] = osm->is_local[i]; 771a35b7b57SDmitry Karpeev } 772a35b7b57SDmitry Karpeev } 773a35b7b57SDmitry Karpeev } 7742b691e39SMatthew Knepley } 7754b9ad928SBarry Smith } 7763ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 7774b9ad928SBarry Smith } 7784b9ad928SBarry Smith 779d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetTotalSubdomains_ASM(PC pc, PetscInt N, IS *is, IS *is_local) 780d71ae5a4SJacob Faibussowitsch { 7814b9ad928SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 78213f74950SBarry Smith PetscMPIInt rank, size; 78378904715SLisandro Dalcin PetscInt n; 7844b9ad928SBarry Smith 7854b9ad928SBarry Smith PetscFunctionBegin; 78663a3b9bcSJacob Faibussowitsch PetscCheck(N >= 1, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_OUTOFRANGE, "Number of total blocks must be > 0, N = %" PetscInt_FMT, N); 7877827d75bSBarry Smith PetscCheck(!is && !is_local, PetscObjectComm((PetscObject)pc), PETSC_ERR_SUP, "Use PCASMSetLocalSubdomains() to set specific index sets\n\they cannot be set globally yet."); 7884b9ad928SBarry Smith 7894b9ad928SBarry Smith /* 790880770e9SJed Brown Split the subdomains equally among all processors 7914b9ad928SBarry Smith */ 7929566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)pc), &rank)); 7939566063dSJacob Faibussowitsch PetscCallMPI(MPI_Comm_size(PetscObjectComm((PetscObject)pc), &size)); 7944b9ad928SBarry Smith n = N / size + ((N % size) > rank); 79563a3b9bcSJacob Faibussowitsch PetscCheck(n, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Process %d must have at least one block: total processors %d total blocks %" PetscInt_FMT, (int)rank, (int)size, N); 7967827d75bSBarry Smith PetscCheck(!pc->setupcalled || n == osm->n_local_true, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONGSTATE, "PCASMSetTotalSubdomains() should be called before PCSetUp()."); 7974b9ad928SBarry Smith if (!pc->setupcalled) { 7989566063dSJacob Faibussowitsch PetscCall(PCASMDestroySubdomains(osm->n_local_true, osm->is, osm->is_local)); 7992fa5cd67SKarl Rupp 8004b9ad928SBarry Smith osm->n_local_true = n; 8010a545947SLisandro Dalcin osm->is = NULL; 8020a545947SLisandro Dalcin osm->is_local = NULL; 8034b9ad928SBarry Smith } 8043ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 8054b9ad928SBarry Smith } 8064b9ad928SBarry Smith 807d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetOverlap_ASM(PC pc, PetscInt ovl) 808d71ae5a4SJacob Faibussowitsch { 80992bb6962SLisandro Dalcin PC_ASM *osm = (PC_ASM *)pc->data; 8104b9ad928SBarry Smith 8114b9ad928SBarry Smith PetscFunctionBegin; 8127827d75bSBarry Smith PetscCheck(ovl >= 0, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_OUTOFRANGE, "Negative overlap value requested"); 8137827d75bSBarry Smith PetscCheck(!pc->setupcalled || ovl == osm->overlap, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONGSTATE, "PCASMSetOverlap() should be called before PCSetUp()."); 8142fa5cd67SKarl Rupp if (!pc->setupcalled) osm->overlap = ovl; 8153ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 8164b9ad928SBarry Smith } 8174b9ad928SBarry Smith 818d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetType_ASM(PC pc, PCASMType type) 819d71ae5a4SJacob Faibussowitsch { 82092bb6962SLisandro Dalcin PC_ASM *osm = (PC_ASM *)pc->data; 8214b9ad928SBarry Smith 8224b9ad928SBarry Smith PetscFunctionBegin; 8234b9ad928SBarry Smith osm->type = type; 824bf108f30SBarry Smith osm->type_set = PETSC_TRUE; 8253ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 8264b9ad928SBarry Smith } 8274b9ad928SBarry Smith 828d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMGetType_ASM(PC pc, PCASMType *type) 829d71ae5a4SJacob Faibussowitsch { 830c60c7ad4SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 831c60c7ad4SBarry Smith 832c60c7ad4SBarry Smith PetscFunctionBegin; 833c60c7ad4SBarry Smith *type = osm->type; 8343ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 835c60c7ad4SBarry Smith } 836c60c7ad4SBarry Smith 837d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetLocalType_ASM(PC pc, PCCompositeType type) 838d71ae5a4SJacob Faibussowitsch { 83912cd4985SMatthew G. Knepley PC_ASM *osm = (PC_ASM *)pc->data; 84012cd4985SMatthew G. Knepley 84112cd4985SMatthew G. Knepley PetscFunctionBegin; 8427827d75bSBarry Smith PetscCheck(type == PC_COMPOSITE_ADDITIVE || type == PC_COMPOSITE_MULTIPLICATIVE, PetscObjectComm((PetscObject)pc), PETSC_ERR_SUP, "Only supports additive or multiplicative as the local type"); 84312cd4985SMatthew G. Knepley osm->loctype = type; 8443ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 84512cd4985SMatthew G. Knepley } 84612cd4985SMatthew G. Knepley 847d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMGetLocalType_ASM(PC pc, PCCompositeType *type) 848d71ae5a4SJacob Faibussowitsch { 84912cd4985SMatthew G. Knepley PC_ASM *osm = (PC_ASM *)pc->data; 85012cd4985SMatthew G. Knepley 85112cd4985SMatthew G. Knepley PetscFunctionBegin; 85212cd4985SMatthew G. Knepley *type = osm->loctype; 8533ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 85412cd4985SMatthew G. Knepley } 85512cd4985SMatthew G. Knepley 856d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetSortIndices_ASM(PC pc, PetscBool doSort) 857d71ae5a4SJacob Faibussowitsch { 8586ed231c7SMatthew Knepley PC_ASM *osm = (PC_ASM *)pc->data; 8596ed231c7SMatthew Knepley 8606ed231c7SMatthew Knepley PetscFunctionBegin; 8616ed231c7SMatthew Knepley osm->sort_indices = doSort; 8623ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 8636ed231c7SMatthew Knepley } 8646ed231c7SMatthew Knepley 865d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMGetSubKSP_ASM(PC pc, PetscInt *n_local, PetscInt *first_local, KSP **ksp) 866d71ae5a4SJacob Faibussowitsch { 86792bb6962SLisandro Dalcin PC_ASM *osm = (PC_ASM *)pc->data; 8684b9ad928SBarry Smith 8694b9ad928SBarry Smith PetscFunctionBegin; 8707827d75bSBarry Smith PetscCheck(osm->n_local_true >= 1, PetscObjectComm((PetscObject)pc), PETSC_ERR_ORDER, "Need to call PCSetUp() on PC (or KSPSetUp() on the outer KSP object) before calling here"); 8714b9ad928SBarry Smith 8722fa5cd67SKarl Rupp if (n_local) *n_local = osm->n_local_true; 87392bb6962SLisandro Dalcin if (first_local) { 8749566063dSJacob Faibussowitsch PetscCallMPI(MPI_Scan(&osm->n_local_true, first_local, 1, MPIU_INT, MPI_SUM, PetscObjectComm((PetscObject)pc))); 87592bb6962SLisandro Dalcin *first_local -= osm->n_local_true; 87692bb6962SLisandro Dalcin } 877ed155784SPierre Jolivet if (ksp) *ksp = osm->ksp; 8783ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 8794b9ad928SBarry Smith } 8804b9ad928SBarry Smith 881d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMGetSubMatType_ASM(PC pc, MatType *sub_mat_type) 882d71ae5a4SJacob Faibussowitsch { 88380ec0b7dSPatrick Sanan PC_ASM *osm = (PC_ASM *)pc->data; 88480ec0b7dSPatrick Sanan 88580ec0b7dSPatrick Sanan PetscFunctionBegin; 88680ec0b7dSPatrick Sanan PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 8874f572ea9SToby Isaac PetscAssertPointer(sub_mat_type, 2); 88880ec0b7dSPatrick Sanan *sub_mat_type = osm->sub_mat_type; 8893ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 89080ec0b7dSPatrick Sanan } 89180ec0b7dSPatrick Sanan 892d71ae5a4SJacob Faibussowitsch static PetscErrorCode PCASMSetSubMatType_ASM(PC pc, MatType sub_mat_type) 893d71ae5a4SJacob Faibussowitsch { 89480ec0b7dSPatrick Sanan PC_ASM *osm = (PC_ASM *)pc->data; 89580ec0b7dSPatrick Sanan 89680ec0b7dSPatrick Sanan PetscFunctionBegin; 89780ec0b7dSPatrick Sanan PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 8989566063dSJacob Faibussowitsch PetscCall(PetscFree(osm->sub_mat_type)); 8999566063dSJacob Faibussowitsch PetscCall(PetscStrallocpy(sub_mat_type, (char **)&osm->sub_mat_type)); 9003ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 90180ec0b7dSPatrick Sanan } 90280ec0b7dSPatrick Sanan 9034b9ad928SBarry Smith /*@C 904f1580f4eSBarry Smith PCASMSetLocalSubdomains - Sets the local subdomains (for this processor only) for the additive Schwarz preconditioner `PCASM`. 9054b9ad928SBarry Smith 906c3339decSBarry Smith Collective 9074b9ad928SBarry Smith 9084b9ad928SBarry Smith Input Parameters: 9094b9ad928SBarry Smith + pc - the preconditioner context 9104b9ad928SBarry Smith . n - the number of subdomains for this processor (default value = 1) 9118c03b21aSDmitry Karpeev . is - the index set that defines the subdomains for this processor 91220f4b53cSBarry Smith (or `NULL` for PETSc to determine subdomains) 913f1ee410cSBarry Smith - is_local - the index sets that define the local part of the subdomains for this processor, not used unless PCASMType is PC_ASM_RESTRICT 91420f4b53cSBarry Smith (or `NULL` to not provide these) 9154b9ad928SBarry Smith 916342c94f9SMatthew G. Knepley Options Database Key: 91720f4b53cSBarry Smith . -pc_asm_local_blocks <blks> - Sets number of local blocks 91820f4b53cSBarry Smith 91920f4b53cSBarry Smith Level: advanced 920342c94f9SMatthew G. Knepley 9214b9ad928SBarry Smith Notes: 922f1580f4eSBarry Smith The `IS` numbering is in the parallel, global numbering of the vector for both is and is_local 9234b9ad928SBarry Smith 924f1580f4eSBarry Smith By default the `PCASM` preconditioner uses 1 block per processor. 9254b9ad928SBarry Smith 926f1580f4eSBarry Smith Use `PCASMSetTotalSubdomains()` to set the subdomains for all processors. 9274b9ad928SBarry Smith 928f1580f4eSBarry Smith If is_local is provided and `PCASMType` is `PC_ASM_RESTRICT` then the solution only over the is_local region is interpolated 929f1ee410cSBarry Smith back to form the global solution (this is the standard restricted additive Schwarz method) 930f1ee410cSBarry Smith 931f1580f4eSBarry Smith If the is_local is provided and `PCASMType` is `PC_ASM_INTERPOLATE` or `PC_ASM_NONE` then an error is generated since there is 932f1ee410cSBarry Smith no code to handle that case. 933f1ee410cSBarry Smith 934562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMSetOverlap()`, `PCASMGetSubKSP()`, 935f1580f4eSBarry Smith `PCASMCreateSubdomains2D()`, `PCASMGetLocalSubdomains()`, `PCASMType`, `PCASMSetType()`, `PCGASM` 9364b9ad928SBarry Smith @*/ 937d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetLocalSubdomains(PC pc, PetscInt n, IS is[], IS is_local[]) 938d71ae5a4SJacob Faibussowitsch { 9394b9ad928SBarry Smith PetscFunctionBegin; 9400700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 941cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetLocalSubdomains_C", (PC, PetscInt, IS[], IS[]), (pc, n, is, is_local)); 9423ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 9434b9ad928SBarry Smith } 9444b9ad928SBarry Smith 9454b9ad928SBarry Smith /*@C 946feb221f8SDmitry Karpeev PCASMSetTotalSubdomains - Sets the subdomains for all processors for the 947f1580f4eSBarry Smith additive Schwarz preconditioner, `PCASM`. 9484b9ad928SBarry Smith 949c3339decSBarry Smith Collective, all MPI ranks must pass in the same array of `IS` 9504b9ad928SBarry Smith 9514b9ad928SBarry Smith Input Parameters: 9524b9ad928SBarry Smith + pc - the preconditioner context 953feb221f8SDmitry Karpeev . N - the number of subdomains for all processors 954feb221f8SDmitry Karpeev . is - the index sets that define the subdomains for all processors 95520f4b53cSBarry Smith (or `NULL` to ask PETSc to determine the subdomains) 9562b691e39SMatthew Knepley - is_local - the index sets that define the local part of the subdomains for this processor 95720f4b53cSBarry Smith (or `NULL` to not provide this information) 9584b9ad928SBarry Smith 9594b9ad928SBarry Smith Options Database Key: 9604b9ad928SBarry Smith . -pc_asm_blocks <blks> - Sets total blocks 9614b9ad928SBarry Smith 96220f4b53cSBarry Smith Level: advanced 96320f4b53cSBarry Smith 9644b9ad928SBarry Smith Notes: 965f1ee410cSBarry Smith Currently you cannot use this to set the actual subdomains with the argument is or is_local. 9664b9ad928SBarry Smith 967f1580f4eSBarry Smith By default the `PCASM` preconditioner uses 1 block per processor. 9684b9ad928SBarry Smith 9694b9ad928SBarry Smith These index sets cannot be destroyed until after completion of the 970f1580f4eSBarry Smith linear solves for which the `PCASM` preconditioner is being used. 9714b9ad928SBarry Smith 972f1580f4eSBarry Smith Use `PCASMSetLocalSubdomains()` to set local subdomains. 9734b9ad928SBarry Smith 974f1580f4eSBarry Smith The `IS` numbering is in the parallel, global numbering of the vector for both is and is_local 9751093a601SBarry Smith 976562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetLocalSubdomains()`, `PCASMSetOverlap()`, `PCASMGetSubKSP()`, 977f1580f4eSBarry Smith `PCASMCreateSubdomains2D()`, `PCGASM` 9784b9ad928SBarry Smith @*/ 979d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetTotalSubdomains(PC pc, PetscInt N, IS is[], IS is_local[]) 980d71ae5a4SJacob Faibussowitsch { 9814b9ad928SBarry Smith PetscFunctionBegin; 9820700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 983cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetTotalSubdomains_C", (PC, PetscInt, IS[], IS[]), (pc, N, is, is_local)); 9843ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 9854b9ad928SBarry Smith } 9864b9ad928SBarry Smith 9874b9ad928SBarry Smith /*@ 9884b9ad928SBarry Smith PCASMSetOverlap - Sets the overlap between a pair of subdomains for the 989f1580f4eSBarry Smith additive Schwarz preconditioner, `PCASM`. 9904b9ad928SBarry Smith 991c3339decSBarry Smith Logically Collective 9924b9ad928SBarry Smith 9934b9ad928SBarry Smith Input Parameters: 9944b9ad928SBarry Smith + pc - the preconditioner context 9954b9ad928SBarry Smith - ovl - the amount of overlap between subdomains (ovl >= 0, default value = 1) 9964b9ad928SBarry Smith 9974b9ad928SBarry Smith Options Database Key: 9984b9ad928SBarry Smith . -pc_asm_overlap <ovl> - Sets overlap 9994b9ad928SBarry Smith 100020f4b53cSBarry Smith Level: intermediate 100120f4b53cSBarry Smith 10024b9ad928SBarry Smith Notes: 1003f1580f4eSBarry Smith By default the `PCASM` preconditioner uses 1 block per processor. To use 1004f1580f4eSBarry Smith multiple blocks per perocessor, see `PCASMSetTotalSubdomains()` and 1005f1580f4eSBarry Smith `PCASMSetLocalSubdomains()` (and the option -pc_asm_blocks <blks>). 10064b9ad928SBarry Smith 10074b9ad928SBarry Smith The overlap defaults to 1, so if one desires that no additional 10084b9ad928SBarry Smith overlap be computed beyond what may have been set with a call to 1009f1580f4eSBarry Smith `PCASMSetTotalSubdomains()` or `PCASMSetLocalSubdomains()`, then ovl 10104b9ad928SBarry Smith must be set to be 0. In particular, if one does not explicitly set 10114b9ad928SBarry Smith the subdomains an application code, then all overlap would be computed 1012f1580f4eSBarry Smith internally by PETSc, and using an overlap of 0 would result in an `PCASM` 10134b9ad928SBarry Smith variant that is equivalent to the block Jacobi preconditioner. 10144b9ad928SBarry Smith 1015f1ee410cSBarry Smith The default algorithm used by PETSc to increase overlap is fast, but not scalable, 1016f1ee410cSBarry Smith use the option -mat_increase_overlap_scalable when the problem and number of processes is large. 1017f1ee410cSBarry Smith 10182fe279fdSBarry Smith One can define initial index sets with any overlap via 1019f1580f4eSBarry Smith `PCASMSetLocalSubdomains()`; the routine 1020f1580f4eSBarry Smith `PCASMSetOverlap()` merely allows PETSc to extend that overlap further 10214b9ad928SBarry Smith if desired. 10224b9ad928SBarry Smith 1023562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMSetLocalSubdomains()`, `PCASMGetSubKSP()`, 1024f1580f4eSBarry Smith `PCASMCreateSubdomains2D()`, `PCASMGetLocalSubdomains()`, `MatIncreaseOverlap()`, `PCGASM` 10254b9ad928SBarry Smith @*/ 1026d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetOverlap(PC pc, PetscInt ovl) 1027d71ae5a4SJacob Faibussowitsch { 10284b9ad928SBarry Smith PetscFunctionBegin; 10290700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1030c5eb9154SBarry Smith PetscValidLogicalCollectiveInt(pc, ovl, 2); 1031cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetOverlap_C", (PC, PetscInt), (pc, ovl)); 10323ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 10334b9ad928SBarry Smith } 10344b9ad928SBarry Smith 10354b9ad928SBarry Smith /*@ 10364b9ad928SBarry Smith PCASMSetType - Sets the type of restriction and interpolation used 1037f1580f4eSBarry Smith for local problems in the additive Schwarz method, `PCASM`. 10384b9ad928SBarry Smith 1039c3339decSBarry Smith Logically Collective 10404b9ad928SBarry Smith 10414b9ad928SBarry Smith Input Parameters: 10424b9ad928SBarry Smith + pc - the preconditioner context 1043f1580f4eSBarry Smith - type - variant of `PCASM`, one of 10444b9ad928SBarry Smith .vb 10454b9ad928SBarry Smith PC_ASM_BASIC - full interpolation and restriction 104682b5ce2aSStefano Zampini PC_ASM_RESTRICT - full restriction, local processor interpolation (default) 10474b9ad928SBarry Smith PC_ASM_INTERPOLATE - full interpolation, local processor restriction 10484b9ad928SBarry Smith PC_ASM_NONE - local processor restriction and interpolation 10494b9ad928SBarry Smith .ve 10504b9ad928SBarry Smith 10514b9ad928SBarry Smith Options Database Key: 1052f1580f4eSBarry Smith . -pc_asm_type [basic,restrict,interpolate,none] - Sets `PCASMType` 10534b9ad928SBarry Smith 105420f4b53cSBarry Smith Level: intermediate 105520f4b53cSBarry Smith 1056f1580f4eSBarry Smith Note: 1057f1580f4eSBarry Smith if the is_local arguments are passed to `PCASMSetLocalSubdomains()` then they are used when `PC_ASM_RESTRICT` has been selected 1058f1ee410cSBarry Smith to limit the local processor interpolation 1059f1ee410cSBarry Smith 1060562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMGetSubKSP()`, 1061f1580f4eSBarry Smith `PCASMCreateSubdomains2D()`, `PCASMType`, `PCASMSetLocalType()`, `PCASMGetLocalType()`, `PCGASM` 10624b9ad928SBarry Smith @*/ 1063d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetType(PC pc, PCASMType type) 1064d71ae5a4SJacob Faibussowitsch { 10654b9ad928SBarry Smith PetscFunctionBegin; 10660700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1067c5eb9154SBarry Smith PetscValidLogicalCollectiveEnum(pc, type, 2); 1068cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetType_C", (PC, PCASMType), (pc, type)); 10693ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 10704b9ad928SBarry Smith } 10714b9ad928SBarry Smith 1072c60c7ad4SBarry Smith /*@ 1073c60c7ad4SBarry Smith PCASMGetType - Gets the type of restriction and interpolation used 1074f1580f4eSBarry Smith for local problems in the additive Schwarz method, `PCASM`. 1075c60c7ad4SBarry Smith 1076c3339decSBarry Smith Logically Collective 1077c60c7ad4SBarry Smith 1078c60c7ad4SBarry Smith Input Parameter: 1079c60c7ad4SBarry Smith . pc - the preconditioner context 1080c60c7ad4SBarry Smith 1081c60c7ad4SBarry Smith Output Parameter: 1082f1580f4eSBarry Smith . type - variant of `PCASM`, one of 1083c60c7ad4SBarry Smith .vb 1084c60c7ad4SBarry Smith PC_ASM_BASIC - full interpolation and restriction 1085c60c7ad4SBarry Smith PC_ASM_RESTRICT - full restriction, local processor interpolation 1086c60c7ad4SBarry Smith PC_ASM_INTERPOLATE - full interpolation, local processor restriction 1087c60c7ad4SBarry Smith PC_ASM_NONE - local processor restriction and interpolation 1088c60c7ad4SBarry Smith .ve 1089c60c7ad4SBarry Smith 1090c60c7ad4SBarry Smith Options Database Key: 1091f1580f4eSBarry Smith . -pc_asm_type [basic,restrict,interpolate,none] - Sets `PCASM` type 1092c60c7ad4SBarry Smith 1093c60c7ad4SBarry Smith Level: intermediate 1094c60c7ad4SBarry Smith 1095562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMGetSubKSP()`, `PCGASM`, 1096db781477SPatrick Sanan `PCASMCreateSubdomains2D()`, `PCASMType`, `PCASMSetType()`, `PCASMSetLocalType()`, `PCASMGetLocalType()` 1097c60c7ad4SBarry Smith @*/ 1098d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetType(PC pc, PCASMType *type) 1099d71ae5a4SJacob Faibussowitsch { 1100c60c7ad4SBarry Smith PetscFunctionBegin; 1101c60c7ad4SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1102cac4c232SBarry Smith PetscUseMethod(pc, "PCASMGetType_C", (PC, PCASMType *), (pc, type)); 11033ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 1104c60c7ad4SBarry Smith } 1105c60c7ad4SBarry Smith 110612cd4985SMatthew G. Knepley /*@ 1107f1580f4eSBarry Smith PCASMSetLocalType - Sets the type of composition used for local problems in the additive Schwarz method, `PCASM`. 110812cd4985SMatthew G. Knepley 1109c3339decSBarry Smith Logically Collective 111012cd4985SMatthew G. Knepley 111112cd4985SMatthew G. Knepley Input Parameters: 111212cd4985SMatthew G. Knepley + pc - the preconditioner context 111312cd4985SMatthew G. Knepley - type - type of composition, one of 111412cd4985SMatthew G. Knepley .vb 111512cd4985SMatthew G. Knepley PC_COMPOSITE_ADDITIVE - local additive combination 111612cd4985SMatthew G. Knepley PC_COMPOSITE_MULTIPLICATIVE - local multiplicative combination 111712cd4985SMatthew G. Knepley .ve 111812cd4985SMatthew G. Knepley 111912cd4985SMatthew G. Knepley Options Database Key: 112012cd4985SMatthew G. Knepley . -pc_asm_local_type [additive,multiplicative] - Sets local solver composition type 112112cd4985SMatthew G. Knepley 112212cd4985SMatthew G. Knepley Level: intermediate 112312cd4985SMatthew G. Knepley 1124562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetType()`, `PCASMGetType()`, `PCASMGetLocalType()`, `PCASMType`, `PCCompositeType` 112512cd4985SMatthew G. Knepley @*/ 1126d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetLocalType(PC pc, PCCompositeType type) 1127d71ae5a4SJacob Faibussowitsch { 112812cd4985SMatthew G. Knepley PetscFunctionBegin; 112912cd4985SMatthew G. Knepley PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 113012cd4985SMatthew G. Knepley PetscValidLogicalCollectiveEnum(pc, type, 2); 1131cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetLocalType_C", (PC, PCCompositeType), (pc, type)); 11323ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 113312cd4985SMatthew G. Knepley } 113412cd4985SMatthew G. Knepley 113512cd4985SMatthew G. Knepley /*@ 1136f1580f4eSBarry Smith PCASMGetLocalType - Gets the type of composition used for local problems in the additive Schwarz method, `PCASM`. 113712cd4985SMatthew G. Knepley 1138c3339decSBarry Smith Logically Collective 113912cd4985SMatthew G. Knepley 114012cd4985SMatthew G. Knepley Input Parameter: 114112cd4985SMatthew G. Knepley . pc - the preconditioner context 114212cd4985SMatthew G. Knepley 114312cd4985SMatthew G. Knepley Output Parameter: 114412cd4985SMatthew G. Knepley . type - type of composition, one of 114512cd4985SMatthew G. Knepley .vb 114612cd4985SMatthew G. Knepley PC_COMPOSITE_ADDITIVE - local additive combination 114712cd4985SMatthew G. Knepley PC_COMPOSITE_MULTIPLICATIVE - local multiplicative combination 114812cd4985SMatthew G. Knepley .ve 114912cd4985SMatthew G. Knepley 115012cd4985SMatthew G. Knepley Options Database Key: 115112cd4985SMatthew G. Knepley . -pc_asm_local_type [additive,multiplicative] - Sets local solver composition type 115212cd4985SMatthew G. Knepley 115312cd4985SMatthew G. Knepley Level: intermediate 115412cd4985SMatthew G. Knepley 1155562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetType()`, `PCASMGetType()`, `PCASMSetLocalType()`, `PCASMCreate()`, `PCASMType`, `PCCompositeType` 115612cd4985SMatthew G. Knepley @*/ 1157d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetLocalType(PC pc, PCCompositeType *type) 1158d71ae5a4SJacob Faibussowitsch { 115912cd4985SMatthew G. Knepley PetscFunctionBegin; 116012cd4985SMatthew G. Knepley PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 11614f572ea9SToby Isaac PetscAssertPointer(type, 2); 1162cac4c232SBarry Smith PetscUseMethod(pc, "PCASMGetLocalType_C", (PC, PCCompositeType *), (pc, type)); 11633ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 116412cd4985SMatthew G. Knepley } 116512cd4985SMatthew G. Knepley 11666ed231c7SMatthew Knepley /*@ 11676ed231c7SMatthew Knepley PCASMSetSortIndices - Determines whether subdomain indices are sorted. 11686ed231c7SMatthew Knepley 1169c3339decSBarry Smith Logically Collective 11706ed231c7SMatthew Knepley 11716ed231c7SMatthew Knepley Input Parameters: 11726ed231c7SMatthew Knepley + pc - the preconditioner context 11736ed231c7SMatthew Knepley - doSort - sort the subdomain indices 11746ed231c7SMatthew Knepley 11756ed231c7SMatthew Knepley Level: intermediate 11766ed231c7SMatthew Knepley 1177562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetLocalSubdomains()`, `PCASMSetTotalSubdomains()`, `PCASMGetSubKSP()`, 1178db781477SPatrick Sanan `PCASMCreateSubdomains2D()` 11796ed231c7SMatthew Knepley @*/ 1180d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetSortIndices(PC pc, PetscBool doSort) 1181d71ae5a4SJacob Faibussowitsch { 11826ed231c7SMatthew Knepley PetscFunctionBegin; 11830700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1184acfcf0e5SJed Brown PetscValidLogicalCollectiveBool(pc, doSort, 2); 1185cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetSortIndices_C", (PC, PetscBool), (pc, doSort)); 11863ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 11876ed231c7SMatthew Knepley } 11886ed231c7SMatthew Knepley 11894b9ad928SBarry Smith /*@C 1190f1580f4eSBarry Smith PCASMGetSubKSP - Gets the local `KSP` contexts for all blocks on 11914b9ad928SBarry Smith this processor. 11924b9ad928SBarry Smith 1193c3339decSBarry Smith Collective iff first_local is requested 11944b9ad928SBarry Smith 11954b9ad928SBarry Smith Input Parameter: 11964b9ad928SBarry Smith . pc - the preconditioner context 11974b9ad928SBarry Smith 11984b9ad928SBarry Smith Output Parameters: 11990298fd71SBarry Smith + n_local - the number of blocks on this processor or NULL 12000298fd71SBarry Smith . first_local - the global number of the first block on this processor or NULL, 12010298fd71SBarry Smith all processors must request or all must pass NULL 1202f1580f4eSBarry Smith - ksp - the array of `KSP` contexts 12034b9ad928SBarry Smith 120420f4b53cSBarry Smith Level: advanced 120520f4b53cSBarry Smith 1206f1580f4eSBarry Smith Notes: 1207f1580f4eSBarry Smith After `PCASMGetSubKSP()` the array of `KSP`s is not to be freed. 12084b9ad928SBarry Smith 1209f1580f4eSBarry Smith You must call `KSPSetUp()` before calling `PCASMGetSubKSP()`. 12104b9ad928SBarry Smith 1211feefa0e1SJacob Faibussowitsch Fortran Notes: 1212f1580f4eSBarry Smith The output argument 'ksp' must be an array of sufficient length or `PETSC_NULL_KSP`. The latter can be used to learn the necessary length. 1213d29017ddSJed Brown 1214562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMSetOverlap()`, 1215db781477SPatrick Sanan `PCASMCreateSubdomains2D()`, 12164b9ad928SBarry Smith @*/ 1217d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetSubKSP(PC pc, PetscInt *n_local, PetscInt *first_local, KSP *ksp[]) 1218d71ae5a4SJacob Faibussowitsch { 12194b9ad928SBarry Smith PetscFunctionBegin; 12200700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1221cac4c232SBarry Smith PetscUseMethod(pc, "PCASMGetSubKSP_C", (PC, PetscInt *, PetscInt *, KSP **), (pc, n_local, first_local, ksp)); 12223ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 12234b9ad928SBarry Smith } 12244b9ad928SBarry Smith 12254b9ad928SBarry Smith /*MC 12263b09bd56SBarry Smith PCASM - Use the (restricted) additive Schwarz method, each block is (approximately) solved with 12271d27aa22SBarry Smith its own `KSP` object, {cite}`dryja1987additive` and {cite}`1sbg` 12284b9ad928SBarry Smith 12294b9ad928SBarry Smith Options Database Keys: 12301d27aa22SBarry Smith + -pc_asm_blocks <blks> - Sets total blocks. Defaults to one block per MPI process. 12314b9ad928SBarry Smith . -pc_asm_overlap <ovl> - Sets overlap 1232f1580f4eSBarry Smith . -pc_asm_type [basic,restrict,interpolate,none] - Sets `PCASMType`, default is restrict. See `PCASMSetType()` 1233f1580f4eSBarry Smith - -pc_asm_local_type [additive, multiplicative] - Sets `PCCompositeType`, default is additive. See `PCASMSetLocalType()` 12344b9ad928SBarry Smith 12354b9ad928SBarry Smith Level: beginner 12364b9ad928SBarry Smith 1237f1580f4eSBarry Smith Notes: 1238f1580f4eSBarry Smith If you run with, for example, 3 blocks on 1 processor or 3 blocks on 3 processors you 1239f1580f4eSBarry Smith will get a different convergence rate due to the default option of -pc_asm_type restrict. Use 1240f1580f4eSBarry Smith -pc_asm_type basic to get the same convergence behavior 1241f1580f4eSBarry Smith 1242f1580f4eSBarry Smith Each processor can have one or more blocks, but a block cannot be shared by more 1243f1580f4eSBarry Smith than one processor. Use `PCGASM` for subdomains shared by multiple processes. 1244f1580f4eSBarry Smith 1245f1580f4eSBarry Smith To set options on the solvers for each block append -sub_ to all the `KSP`, and `PC` 1246f1580f4eSBarry Smith options database keys. For example, -sub_pc_type ilu -sub_pc_factor_levels 1 -sub_ksp_type preonly 1247f1580f4eSBarry Smith 1248f1580f4eSBarry Smith To set the options on the solvers separate for each block call `PCASMGetSubKSP()` 1249f1580f4eSBarry Smith and set the options directly on the resulting `KSP` object (you can access its `PC` with `KSPGetPC()`) 1250f1580f4eSBarry Smith 1251562efe2eSBarry Smith .seealso: [](ch_ksp), `PCCreate()`, `PCSetType()`, `PCType`, `PC`, `PCASMType`, `PCCompositeType`, 1252db781477SPatrick Sanan `PCBJACOBI`, `PCASMGetSubKSP()`, `PCASMSetLocalSubdomains()`, `PCASMType`, `PCASMGetType()`, `PCASMSetLocalType()`, `PCASMGetLocalType()` 1253db781477SPatrick Sanan `PCASMSetTotalSubdomains()`, `PCSetModifySubMatrices()`, `PCASMSetOverlap()`, `PCASMSetType()`, `PCCompositeType` 12544b9ad928SBarry Smith M*/ 12554b9ad928SBarry Smith 1256d71ae5a4SJacob Faibussowitsch PETSC_EXTERN PetscErrorCode PCCreate_ASM(PC pc) 1257d71ae5a4SJacob Faibussowitsch { 12584b9ad928SBarry Smith PC_ASM *osm; 12594b9ad928SBarry Smith 12604b9ad928SBarry Smith PetscFunctionBegin; 12614dfa11a4SJacob Faibussowitsch PetscCall(PetscNew(&osm)); 12622fa5cd67SKarl Rupp 12634b9ad928SBarry Smith osm->n = PETSC_DECIDE; 12644b9ad928SBarry Smith osm->n_local = 0; 12652b837212SDmitry Karpeev osm->n_local_true = PETSC_DECIDE; 12664b9ad928SBarry Smith osm->overlap = 1; 12670a545947SLisandro Dalcin osm->ksp = NULL; 12680a545947SLisandro Dalcin osm->restriction = NULL; 12690a545947SLisandro Dalcin osm->lprolongation = NULL; 12700a545947SLisandro Dalcin osm->lrestriction = NULL; 12710a545947SLisandro Dalcin osm->x = NULL; 12720a545947SLisandro Dalcin osm->y = NULL; 12730a545947SLisandro Dalcin osm->is = NULL; 12740a545947SLisandro Dalcin osm->is_local = NULL; 12750a545947SLisandro Dalcin osm->mat = NULL; 12760a545947SLisandro Dalcin osm->pmat = NULL; 12774b9ad928SBarry Smith osm->type = PC_ASM_RESTRICT; 127812cd4985SMatthew G. Knepley osm->loctype = PC_COMPOSITE_ADDITIVE; 12796ed231c7SMatthew Knepley osm->sort_indices = PETSC_TRUE; 1280d709ea83SDmitry Karpeev osm->dm_subdomains = PETSC_FALSE; 128180ec0b7dSPatrick Sanan osm->sub_mat_type = NULL; 12824b9ad928SBarry Smith 128392bb6962SLisandro Dalcin pc->data = (void *)osm; 12844b9ad928SBarry Smith pc->ops->apply = PCApply_ASM; 128548e38a8aSPierre Jolivet pc->ops->matapply = PCMatApply_ASM; 12864b9ad928SBarry Smith pc->ops->applytranspose = PCApplyTranspose_ASM; 12874b9ad928SBarry Smith pc->ops->setup = PCSetUp_ASM; 1288e91c6855SBarry Smith pc->ops->reset = PCReset_ASM; 12894b9ad928SBarry Smith pc->ops->destroy = PCDestroy_ASM; 12904b9ad928SBarry Smith pc->ops->setfromoptions = PCSetFromOptions_ASM; 12914b9ad928SBarry Smith pc->ops->setuponblocks = PCSetUpOnBlocks_ASM; 12924b9ad928SBarry Smith pc->ops->view = PCView_ASM; 12930a545947SLisandro Dalcin pc->ops->applyrichardson = NULL; 12944b9ad928SBarry Smith 12959566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetLocalSubdomains_C", PCASMSetLocalSubdomains_ASM)); 12969566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetTotalSubdomains_C", PCASMSetTotalSubdomains_ASM)); 12979566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetOverlap_C", PCASMSetOverlap_ASM)); 12989566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetType_C", PCASMSetType_ASM)); 12999566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetType_C", PCASMGetType_ASM)); 13009566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetLocalType_C", PCASMSetLocalType_ASM)); 13019566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetLocalType_C", PCASMGetLocalType_ASM)); 13029566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetSortIndices_C", PCASMSetSortIndices_ASM)); 13039566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetSubKSP_C", PCASMGetSubKSP_ASM)); 13049566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMGetSubMatType_C", PCASMGetSubMatType_ASM)); 13059566063dSJacob Faibussowitsch PetscCall(PetscObjectComposeFunction((PetscObject)pc, "PCASMSetSubMatType_C", PCASMSetSubMatType_ASM)); 13063ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 13074b9ad928SBarry Smith } 13084b9ad928SBarry Smith 130992bb6962SLisandro Dalcin /*@C 131092bb6962SLisandro Dalcin PCASMCreateSubdomains - Creates the index sets for the overlapping Schwarz 1311f1580f4eSBarry Smith preconditioner, `PCASM`, for any problem on a general grid. 131292bb6962SLisandro Dalcin 131392bb6962SLisandro Dalcin Collective 131492bb6962SLisandro Dalcin 131592bb6962SLisandro Dalcin Input Parameters: 131692bb6962SLisandro Dalcin + A - The global matrix operator 131792bb6962SLisandro Dalcin - n - the number of local blocks 131892bb6962SLisandro Dalcin 13192fe279fdSBarry Smith Output Parameter: 132092bb6962SLisandro Dalcin . outis - the array of index sets defining the subdomains 132192bb6962SLisandro Dalcin 132292bb6962SLisandro Dalcin Level: advanced 132392bb6962SLisandro Dalcin 1324f1580f4eSBarry Smith Note: 1325f1580f4eSBarry Smith This generates nonoverlapping subdomains; the `PCASM` will generate the overlap 1326f1580f4eSBarry Smith from these if you use `PCASMSetLocalSubdomains()` 13277d6bfa3bSBarry Smith 1328feefa0e1SJacob Faibussowitsch Fortran Notes: 1329f1580f4eSBarry Smith You must provide the array outis[] already allocated of length n. 13307d6bfa3bSBarry Smith 1331562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetLocalSubdomains()`, `PCASMDestroySubdomains()` 133292bb6962SLisandro Dalcin @*/ 1333d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMCreateSubdomains(Mat A, PetscInt n, IS *outis[]) 1334d71ae5a4SJacob Faibussowitsch { 133592bb6962SLisandro Dalcin MatPartitioning mpart; 133692bb6962SLisandro Dalcin const char *prefix; 133792bb6962SLisandro Dalcin PetscInt i, j, rstart, rend, bs; 1338976e8c5aSLisandro Dalcin PetscBool hasop, isbaij = PETSC_FALSE, foundpart = PETSC_FALSE; 13390298fd71SBarry Smith Mat Ad = NULL, adj; 134092bb6962SLisandro Dalcin IS ispart, isnumb, *is; 134192bb6962SLisandro Dalcin 134292bb6962SLisandro Dalcin PetscFunctionBegin; 13430700a824SBarry Smith PetscValidHeaderSpecific(A, MAT_CLASSID, 1); 13444f572ea9SToby Isaac PetscAssertPointer(outis, 3); 134563a3b9bcSJacob Faibussowitsch PetscCheck(n >= 1, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "number of local blocks must be > 0, n = %" PetscInt_FMT, n); 134692bb6962SLisandro Dalcin 134792bb6962SLisandro Dalcin /* Get prefix, row distribution, and block size */ 13489566063dSJacob Faibussowitsch PetscCall(MatGetOptionsPrefix(A, &prefix)); 13499566063dSJacob Faibussowitsch PetscCall(MatGetOwnershipRange(A, &rstart, &rend)); 13509566063dSJacob Faibussowitsch PetscCall(MatGetBlockSize(A, &bs)); 135163a3b9bcSJacob Faibussowitsch PetscCheck(rstart / bs * bs == rstart && rend / bs * bs == rend, PETSC_COMM_SELF, PETSC_ERR_ARG_WRONG, "bad row distribution [%" PetscInt_FMT ",%" PetscInt_FMT ") for matrix block size %" PetscInt_FMT, rstart, rend, bs); 135265e19b50SBarry Smith 135392bb6962SLisandro Dalcin /* Get diagonal block from matrix if possible */ 13549566063dSJacob Faibussowitsch PetscCall(MatHasOperation(A, MATOP_GET_DIAGONAL_BLOCK, &hasop)); 135548a46eb9SPierre Jolivet if (hasop) PetscCall(MatGetDiagonalBlock(A, &Ad)); 135692bb6962SLisandro Dalcin if (Ad) { 13579566063dSJacob Faibussowitsch PetscCall(PetscObjectBaseTypeCompare((PetscObject)Ad, MATSEQBAIJ, &isbaij)); 13589566063dSJacob Faibussowitsch if (!isbaij) PetscCall(PetscObjectBaseTypeCompare((PetscObject)Ad, MATSEQSBAIJ, &isbaij)); 135992bb6962SLisandro Dalcin } 136092bb6962SLisandro Dalcin if (Ad && n > 1) { 1361ace3abfcSBarry Smith PetscBool match, done; 136292bb6962SLisandro Dalcin /* Try to setup a good matrix partitioning if available */ 13639566063dSJacob Faibussowitsch PetscCall(MatPartitioningCreate(PETSC_COMM_SELF, &mpart)); 13649566063dSJacob Faibussowitsch PetscCall(PetscObjectSetOptionsPrefix((PetscObject)mpart, prefix)); 13659566063dSJacob Faibussowitsch PetscCall(MatPartitioningSetFromOptions(mpart)); 13669566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)mpart, MATPARTITIONINGCURRENT, &match)); 136748a46eb9SPierre Jolivet if (!match) PetscCall(PetscObjectTypeCompare((PetscObject)mpart, MATPARTITIONINGSQUARE, &match)); 136892bb6962SLisandro Dalcin if (!match) { /* assume a "good" partitioner is available */ 13691a83f524SJed Brown PetscInt na; 13701a83f524SJed Brown const PetscInt *ia, *ja; 13719566063dSJacob Faibussowitsch PetscCall(MatGetRowIJ(Ad, 0, PETSC_TRUE, isbaij, &na, &ia, &ja, &done)); 137292bb6962SLisandro Dalcin if (done) { 137392bb6962SLisandro Dalcin /* Build adjacency matrix by hand. Unfortunately a call to 137492bb6962SLisandro Dalcin MatConvert(Ad,MATMPIADJ,MAT_INITIAL_MATRIX,&adj) will 137592bb6962SLisandro Dalcin remove the block-aij structure and we cannot expect 137692bb6962SLisandro Dalcin MatPartitioning to split vertices as we need */ 13770a545947SLisandro Dalcin PetscInt i, j, len, nnz, cnt, *iia = NULL, *jja = NULL; 13781a83f524SJed Brown const PetscInt *row; 137992bb6962SLisandro Dalcin nnz = 0; 138092bb6962SLisandro Dalcin for (i = 0; i < na; i++) { /* count number of nonzeros */ 138192bb6962SLisandro Dalcin len = ia[i + 1] - ia[i]; 138292bb6962SLisandro Dalcin row = ja + ia[i]; 138392bb6962SLisandro Dalcin for (j = 0; j < len; j++) { 138492bb6962SLisandro Dalcin if (row[j] == i) { /* don't count diagonal */ 13859371c9d4SSatish Balay len--; 13869371c9d4SSatish Balay break; 138792bb6962SLisandro Dalcin } 138892bb6962SLisandro Dalcin } 138992bb6962SLisandro Dalcin nnz += len; 139092bb6962SLisandro Dalcin } 13919566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(na + 1, &iia)); 13929566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(nnz, &jja)); 139392bb6962SLisandro Dalcin nnz = 0; 139492bb6962SLisandro Dalcin iia[0] = 0; 139592bb6962SLisandro Dalcin for (i = 0; i < na; i++) { /* fill adjacency */ 139692bb6962SLisandro Dalcin cnt = 0; 139792bb6962SLisandro Dalcin len = ia[i + 1] - ia[i]; 139892bb6962SLisandro Dalcin row = ja + ia[i]; 139992bb6962SLisandro Dalcin for (j = 0; j < len; j++) { 140092bb6962SLisandro Dalcin if (row[j] != i) { /* if not diagonal */ 140192bb6962SLisandro Dalcin jja[nnz + cnt++] = row[j]; 140292bb6962SLisandro Dalcin } 140392bb6962SLisandro Dalcin } 140492bb6962SLisandro Dalcin nnz += cnt; 140592bb6962SLisandro Dalcin iia[i + 1] = nnz; 140692bb6962SLisandro Dalcin } 140792bb6962SLisandro Dalcin /* Partitioning of the adjacency matrix */ 14089566063dSJacob Faibussowitsch PetscCall(MatCreateMPIAdj(PETSC_COMM_SELF, na, na, iia, jja, NULL, &adj)); 14099566063dSJacob Faibussowitsch PetscCall(MatPartitioningSetAdjacency(mpart, adj)); 14109566063dSJacob Faibussowitsch PetscCall(MatPartitioningSetNParts(mpart, n)); 14119566063dSJacob Faibussowitsch PetscCall(MatPartitioningApply(mpart, &ispart)); 14129566063dSJacob Faibussowitsch PetscCall(ISPartitioningToNumbering(ispart, &isnumb)); 14139566063dSJacob Faibussowitsch PetscCall(MatDestroy(&adj)); 141492bb6962SLisandro Dalcin foundpart = PETSC_TRUE; 141592bb6962SLisandro Dalcin } 14169566063dSJacob Faibussowitsch PetscCall(MatRestoreRowIJ(Ad, 0, PETSC_TRUE, isbaij, &na, &ia, &ja, &done)); 141792bb6962SLisandro Dalcin } 14189566063dSJacob Faibussowitsch PetscCall(MatPartitioningDestroy(&mpart)); 141992bb6962SLisandro Dalcin } 142092bb6962SLisandro Dalcin 14219566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(n, &is)); 142292bb6962SLisandro Dalcin *outis = is; 142392bb6962SLisandro Dalcin 142492bb6962SLisandro Dalcin if (!foundpart) { 142592bb6962SLisandro Dalcin /* Partitioning by contiguous chunks of rows */ 142692bb6962SLisandro Dalcin 142792bb6962SLisandro Dalcin PetscInt mbs = (rend - rstart) / bs; 142892bb6962SLisandro Dalcin PetscInt start = rstart; 142992bb6962SLisandro Dalcin for (i = 0; i < n; i++) { 143092bb6962SLisandro Dalcin PetscInt count = (mbs / n + ((mbs % n) > i)) * bs; 14319566063dSJacob Faibussowitsch PetscCall(ISCreateStride(PETSC_COMM_SELF, count, start, 1, &is[i])); 143292bb6962SLisandro Dalcin start += count; 143392bb6962SLisandro Dalcin } 143492bb6962SLisandro Dalcin 143592bb6962SLisandro Dalcin } else { 143692bb6962SLisandro Dalcin /* Partitioning by adjacency of diagonal block */ 143792bb6962SLisandro Dalcin 143892bb6962SLisandro Dalcin const PetscInt *numbering; 143992bb6962SLisandro Dalcin PetscInt *count, nidx, *indices, *newidx, start = 0; 144092bb6962SLisandro Dalcin /* Get node count in each partition */ 14419566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(n, &count)); 14429566063dSJacob Faibussowitsch PetscCall(ISPartitioningCount(ispart, n, count)); 144392bb6962SLisandro Dalcin if (isbaij && bs > 1) { /* adjust for the block-aij case */ 144492bb6962SLisandro Dalcin for (i = 0; i < n; i++) count[i] *= bs; 144592bb6962SLisandro Dalcin } 144692bb6962SLisandro Dalcin /* Build indices from node numbering */ 14479566063dSJacob Faibussowitsch PetscCall(ISGetLocalSize(isnumb, &nidx)); 14489566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(nidx, &indices)); 144992bb6962SLisandro Dalcin for (i = 0; i < nidx; i++) indices[i] = i; /* needs to be initialized */ 14509566063dSJacob Faibussowitsch PetscCall(ISGetIndices(isnumb, &numbering)); 14519566063dSJacob Faibussowitsch PetscCall(PetscSortIntWithPermutation(nidx, numbering, indices)); 14529566063dSJacob Faibussowitsch PetscCall(ISRestoreIndices(isnumb, &numbering)); 145392bb6962SLisandro Dalcin if (isbaij && bs > 1) { /* adjust for the block-aij case */ 14549566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(nidx * bs, &newidx)); 14552fa5cd67SKarl Rupp for (i = 0; i < nidx; i++) { 14562fa5cd67SKarl Rupp for (j = 0; j < bs; j++) newidx[i * bs + j] = indices[i] * bs + j; 14572fa5cd67SKarl Rupp } 14589566063dSJacob Faibussowitsch PetscCall(PetscFree(indices)); 145992bb6962SLisandro Dalcin nidx *= bs; 146092bb6962SLisandro Dalcin indices = newidx; 146192bb6962SLisandro Dalcin } 146292bb6962SLisandro Dalcin /* Shift to get global indices */ 146392bb6962SLisandro Dalcin for (i = 0; i < nidx; i++) indices[i] += rstart; 146492bb6962SLisandro Dalcin 146592bb6962SLisandro Dalcin /* Build the index sets for each block */ 146692bb6962SLisandro Dalcin for (i = 0; i < n; i++) { 14679566063dSJacob Faibussowitsch PetscCall(ISCreateGeneral(PETSC_COMM_SELF, count[i], &indices[start], PETSC_COPY_VALUES, &is[i])); 14689566063dSJacob Faibussowitsch PetscCall(ISSort(is[i])); 146992bb6962SLisandro Dalcin start += count[i]; 147092bb6962SLisandro Dalcin } 147192bb6962SLisandro Dalcin 14729566063dSJacob Faibussowitsch PetscCall(PetscFree(count)); 14739566063dSJacob Faibussowitsch PetscCall(PetscFree(indices)); 14749566063dSJacob Faibussowitsch PetscCall(ISDestroy(&isnumb)); 14759566063dSJacob Faibussowitsch PetscCall(ISDestroy(&ispart)); 147692bb6962SLisandro Dalcin } 14773ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 147892bb6962SLisandro Dalcin } 147992bb6962SLisandro Dalcin 148092bb6962SLisandro Dalcin /*@C 148192bb6962SLisandro Dalcin PCASMDestroySubdomains - Destroys the index sets created with 1482f1580f4eSBarry Smith `PCASMCreateSubdomains()`. Should be called after setting subdomains with `PCASMSetLocalSubdomains()`. 148392bb6962SLisandro Dalcin 148492bb6962SLisandro Dalcin Collective 148592bb6962SLisandro Dalcin 148692bb6962SLisandro Dalcin Input Parameters: 148792bb6962SLisandro Dalcin + n - the number of index sets 14882b691e39SMatthew Knepley . is - the array of index sets 14892fe279fdSBarry Smith - is_local - the array of local index sets, can be `NULL` 149092bb6962SLisandro Dalcin 149192bb6962SLisandro Dalcin Level: advanced 149292bb6962SLisandro Dalcin 1493562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMCreateSubdomains()`, `PCASMSetLocalSubdomains()` 149492bb6962SLisandro Dalcin @*/ 1495d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMDestroySubdomains(PetscInt n, IS is[], IS is_local[]) 1496d71ae5a4SJacob Faibussowitsch { 149792bb6962SLisandro Dalcin PetscInt i; 14985fd66863SKarl Rupp 149992bb6962SLisandro Dalcin PetscFunctionBegin; 15003ba16761SJacob Faibussowitsch if (n <= 0) PetscFunctionReturn(PETSC_SUCCESS); 1501a35b7b57SDmitry Karpeev if (is) { 15024f572ea9SToby Isaac PetscAssertPointer(is, 2); 15039566063dSJacob Faibussowitsch for (i = 0; i < n; i++) PetscCall(ISDestroy(&is[i])); 15049566063dSJacob Faibussowitsch PetscCall(PetscFree(is)); 1505a35b7b57SDmitry Karpeev } 15062b691e39SMatthew Knepley if (is_local) { 15074f572ea9SToby Isaac PetscAssertPointer(is_local, 3); 15089566063dSJacob Faibussowitsch for (i = 0; i < n; i++) PetscCall(ISDestroy(&is_local[i])); 15099566063dSJacob Faibussowitsch PetscCall(PetscFree(is_local)); 15102b691e39SMatthew Knepley } 15113ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 151292bb6962SLisandro Dalcin } 151392bb6962SLisandro Dalcin 15146141accfSBarry Smith /*@C 15154b9ad928SBarry Smith PCASMCreateSubdomains2D - Creates the index sets for the overlapping Schwarz 1516f1580f4eSBarry Smith preconditioner, `PCASM`, for a two-dimensional problem on a regular grid. 15174b9ad928SBarry Smith 15184b9ad928SBarry Smith Not Collective 15194b9ad928SBarry Smith 15204b9ad928SBarry Smith Input Parameters: 15216b867d5aSJose E. Roman + m - the number of mesh points in the x direction 15226b867d5aSJose E. Roman . n - the number of mesh points in the y direction 15236b867d5aSJose E. Roman . M - the number of subdomains in the x direction 15246b867d5aSJose E. Roman . N - the number of subdomains in the y direction 15254b9ad928SBarry Smith . dof - degrees of freedom per node 15264b9ad928SBarry Smith - overlap - overlap in mesh lines 15274b9ad928SBarry Smith 15284b9ad928SBarry Smith Output Parameters: 15294b9ad928SBarry Smith + Nsub - the number of subdomains created 15303d03bb48SJed Brown . is - array of index sets defining overlapping (if overlap > 0) subdomains 15313d03bb48SJed Brown - is_local - array of index sets defining non-overlapping subdomains 15324b9ad928SBarry Smith 153320f4b53cSBarry Smith Level: advanced 153420f4b53cSBarry Smith 15354b9ad928SBarry Smith Note: 1536f1580f4eSBarry Smith Presently `PCAMSCreateSubdomains2d()` is valid only for sequential 15374b9ad928SBarry Smith preconditioners. More general related routines are 1538f1580f4eSBarry Smith `PCASMSetTotalSubdomains()` and `PCASMSetLocalSubdomains()`. 15394b9ad928SBarry Smith 1540feefa0e1SJacob Faibussowitsch Fortran Notes: 15416141accfSBarry Smith The `IS` must be declared as an array of length long enough to hold `Nsub` entries 15426141accfSBarry Smith 1543562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMSetLocalSubdomains()`, `PCASMGetSubKSP()`, 1544db781477SPatrick Sanan `PCASMSetOverlap()` 15454b9ad928SBarry Smith @*/ 1546d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMCreateSubdomains2D(PetscInt m, PetscInt n, PetscInt M, PetscInt N, PetscInt dof, PetscInt overlap, PetscInt *Nsub, IS **is, IS **is_local) 1547d71ae5a4SJacob Faibussowitsch { 15483d03bb48SJed Brown PetscInt i, j, height, width, ystart, xstart, yleft, yright, xleft, xright, loc_outer; 154913f74950SBarry Smith PetscInt nidx, *idx, loc, ii, jj, count; 15504b9ad928SBarry Smith 15514b9ad928SBarry Smith PetscFunctionBegin; 15527827d75bSBarry Smith PetscCheck(dof == 1, PETSC_COMM_SELF, PETSC_ERR_SUP, "dof must be 1"); 15534b9ad928SBarry Smith 15544b9ad928SBarry Smith *Nsub = N * M; 15559566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(*Nsub, is)); 15569566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(*Nsub, is_local)); 15574b9ad928SBarry Smith ystart = 0; 15583d03bb48SJed Brown loc_outer = 0; 15594b9ad928SBarry Smith for (i = 0; i < N; i++) { 15604b9ad928SBarry Smith height = n / N + ((n % N) > i); /* height of subdomain */ 15617827d75bSBarry Smith PetscCheck(height >= 2, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Too many N subdomains for mesh dimension n"); 15629371c9d4SSatish Balay yleft = ystart - overlap; 15639371c9d4SSatish Balay if (yleft < 0) yleft = 0; 15649371c9d4SSatish Balay yright = ystart + height + overlap; 15659371c9d4SSatish Balay if (yright > n) yright = n; 15664b9ad928SBarry Smith xstart = 0; 15674b9ad928SBarry Smith for (j = 0; j < M; j++) { 15684b9ad928SBarry Smith width = m / M + ((m % M) > j); /* width of subdomain */ 15697827d75bSBarry Smith PetscCheck(width >= 2, PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Too many M subdomains for mesh dimension m"); 15709371c9d4SSatish Balay xleft = xstart - overlap; 15719371c9d4SSatish Balay if (xleft < 0) xleft = 0; 15729371c9d4SSatish Balay xright = xstart + width + overlap; 15739371c9d4SSatish Balay if (xright > m) xright = m; 15744b9ad928SBarry Smith nidx = (xright - xleft) * (yright - yleft); 15759566063dSJacob Faibussowitsch PetscCall(PetscMalloc1(nidx, &idx)); 15764b9ad928SBarry Smith loc = 0; 15774b9ad928SBarry Smith for (ii = yleft; ii < yright; ii++) { 15784b9ad928SBarry Smith count = m * ii + xleft; 15792fa5cd67SKarl Rupp for (jj = xleft; jj < xright; jj++) idx[loc++] = count++; 15804b9ad928SBarry Smith } 15819566063dSJacob Faibussowitsch PetscCall(ISCreateGeneral(PETSC_COMM_SELF, nidx, idx, PETSC_COPY_VALUES, (*is) + loc_outer)); 15823d03bb48SJed Brown if (overlap == 0) { 15839566063dSJacob Faibussowitsch PetscCall(PetscObjectReference((PetscObject)(*is)[loc_outer])); 15842fa5cd67SKarl Rupp 15853d03bb48SJed Brown (*is_local)[loc_outer] = (*is)[loc_outer]; 15863d03bb48SJed Brown } else { 15873d03bb48SJed Brown for (loc = 0, ii = ystart; ii < ystart + height; ii++) { 1588ad540459SPierre Jolivet for (jj = xstart; jj < xstart + width; jj++) idx[loc++] = m * ii + jj; 15893d03bb48SJed Brown } 15909566063dSJacob Faibussowitsch PetscCall(ISCreateGeneral(PETSC_COMM_SELF, loc, idx, PETSC_COPY_VALUES, *is_local + loc_outer)); 15913d03bb48SJed Brown } 15929566063dSJacob Faibussowitsch PetscCall(PetscFree(idx)); 15934b9ad928SBarry Smith xstart += width; 15943d03bb48SJed Brown loc_outer++; 15954b9ad928SBarry Smith } 15964b9ad928SBarry Smith ystart += height; 15974b9ad928SBarry Smith } 15989566063dSJacob Faibussowitsch for (i = 0; i < *Nsub; i++) PetscCall(ISSort((*is)[i])); 15993ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 16004b9ad928SBarry Smith } 16014b9ad928SBarry Smith 16024b9ad928SBarry Smith /*@C 16034b9ad928SBarry Smith PCASMGetLocalSubdomains - Gets the local subdomains (for this processor 1604f1580f4eSBarry Smith only) for the additive Schwarz preconditioner, `PCASM`. 16054b9ad928SBarry Smith 1606ad4df100SBarry Smith Not Collective 16074b9ad928SBarry Smith 16084b9ad928SBarry Smith Input Parameter: 16094b9ad928SBarry Smith . pc - the preconditioner context 16104b9ad928SBarry Smith 16114b9ad928SBarry Smith Output Parameters: 1612f17a6784SPierre Jolivet + n - if requested, the number of subdomains for this processor (default value = 1) 1613f17a6784SPierre Jolivet . is - if requested, the index sets that define the subdomains for this processor 161420f4b53cSBarry Smith - is_local - if requested, the index sets that define the local part of the subdomains for this processor (can be `NULL`) 161520f4b53cSBarry Smith 161620f4b53cSBarry Smith Level: advanced 16174b9ad928SBarry Smith 1618f1580f4eSBarry Smith Note: 1619f1580f4eSBarry Smith The `IS` numbering is in the parallel, global numbering of the vector. 16204b9ad928SBarry Smith 1621562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMSetOverlap()`, `PCASMGetSubKSP()`, 1622db781477SPatrick Sanan `PCASMCreateSubdomains2D()`, `PCASMSetLocalSubdomains()`, `PCASMGetLocalSubmatrices()` 16234b9ad928SBarry Smith @*/ 1624d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetLocalSubdomains(PC pc, PetscInt *n, IS *is[], IS *is_local[]) 1625d71ae5a4SJacob Faibussowitsch { 16262a808120SBarry Smith PC_ASM *osm = (PC_ASM *)pc->data; 1627ace3abfcSBarry Smith PetscBool match; 16284b9ad928SBarry Smith 16294b9ad928SBarry Smith PetscFunctionBegin; 16300700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 16314f572ea9SToby Isaac if (n) PetscAssertPointer(n, 2); 16324f572ea9SToby Isaac if (is) PetscAssertPointer(is, 3); 16334f572ea9SToby Isaac if (is_local) PetscAssertPointer(is_local, 4); 16349566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCASM, &match)); 163528b400f6SJacob Faibussowitsch PetscCheck(match, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONG, "PC is not a PCASM"); 16364b9ad928SBarry Smith if (n) *n = osm->n_local_true; 16374b9ad928SBarry Smith if (is) *is = osm->is; 16382b691e39SMatthew Knepley if (is_local) *is_local = osm->is_local; 16393ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 16404b9ad928SBarry Smith } 16414b9ad928SBarry Smith 16424b9ad928SBarry Smith /*@C 16434b9ad928SBarry Smith PCASMGetLocalSubmatrices - Gets the local submatrices (for this processor 1644f1580f4eSBarry Smith only) for the additive Schwarz preconditioner, `PCASM`. 16454b9ad928SBarry Smith 1646ad4df100SBarry Smith Not Collective 16474b9ad928SBarry Smith 16484b9ad928SBarry Smith Input Parameter: 16494b9ad928SBarry Smith . pc - the preconditioner context 16504b9ad928SBarry Smith 16514b9ad928SBarry Smith Output Parameters: 1652f17a6784SPierre Jolivet + n - if requested, the number of matrices for this processor (default value = 1) 1653f17a6784SPierre Jolivet - mat - if requested, the matrices 16544b9ad928SBarry Smith 16554b9ad928SBarry Smith Level: advanced 16564b9ad928SBarry Smith 165795452b02SPatrick Sanan Notes: 1658f1580f4eSBarry Smith Call after `PCSetUp()` (or `KSPSetUp()`) but before `PCApply()` and before `PCSetUpOnBlocks()`) 1659cf739d55SBarry Smith 1660f1580f4eSBarry Smith Usually one would use `PCSetModifySubMatrices()` to change the submatrices in building the preconditioner. 1661cf739d55SBarry Smith 1662562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetTotalSubdomains()`, `PCASMSetOverlap()`, `PCASMGetSubKSP()`, 1663db781477SPatrick Sanan `PCASMCreateSubdomains2D()`, `PCASMSetLocalSubdomains()`, `PCASMGetLocalSubdomains()`, `PCSetModifySubMatrices()` 16644b9ad928SBarry Smith @*/ 1665d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetLocalSubmatrices(PC pc, PetscInt *n, Mat *mat[]) 1666d71ae5a4SJacob Faibussowitsch { 16674b9ad928SBarry Smith PC_ASM *osm; 1668ace3abfcSBarry Smith PetscBool match; 16694b9ad928SBarry Smith 16704b9ad928SBarry Smith PetscFunctionBegin; 16710700a824SBarry Smith PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 16724f572ea9SToby Isaac if (n) PetscAssertPointer(n, 2); 16734f572ea9SToby Isaac if (mat) PetscAssertPointer(mat, 3); 167428b400f6SJacob Faibussowitsch PetscCheck(pc->setupcalled, PetscObjectComm((PetscObject)pc), PETSC_ERR_ARG_WRONGSTATE, "Must call after KSPSetUp() or PCSetUp()."); 16759566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCASM, &match)); 167692bb6962SLisandro Dalcin if (!match) { 167792bb6962SLisandro Dalcin if (n) *n = 0; 16780298fd71SBarry Smith if (mat) *mat = NULL; 167992bb6962SLisandro Dalcin } else { 16804b9ad928SBarry Smith osm = (PC_ASM *)pc->data; 16814b9ad928SBarry Smith if (n) *n = osm->n_local_true; 16824b9ad928SBarry Smith if (mat) *mat = osm->pmat; 168392bb6962SLisandro Dalcin } 16843ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 16854b9ad928SBarry Smith } 1686d709ea83SDmitry Karpeev 1687d709ea83SDmitry Karpeev /*@ 1688f1580f4eSBarry Smith PCASMSetDMSubdomains - Indicates whether to use `DMCreateDomainDecomposition()` to define the subdomains, whenever possible. 1689f1ee410cSBarry Smith 1690d709ea83SDmitry Karpeev Logically Collective 1691d709ea83SDmitry Karpeev 1692d8d19677SJose E. Roman Input Parameters: 1693d709ea83SDmitry Karpeev + pc - the preconditioner 1694f1580f4eSBarry Smith - flg - boolean indicating whether to use subdomains defined by the `DM` 1695d709ea83SDmitry Karpeev 1696d709ea83SDmitry Karpeev Options Database Key: 1697f1580f4eSBarry Smith . -pc_asm_dm_subdomains <bool> - use subdomains defined by the `DM` 1698d709ea83SDmitry Karpeev 1699d709ea83SDmitry Karpeev Level: intermediate 1700d709ea83SDmitry Karpeev 1701f1580f4eSBarry Smith Note: 1702f1580f4eSBarry Smith `PCASMSetTotalSubdomains()` and `PCASMSetOverlap()` take precedence over `PCASMSetDMSubdomains()`, 1703d709ea83SDmitry Karpeev so setting either of the first two effectively turns the latter off. 1704d709ea83SDmitry Karpeev 1705562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMGetDMSubdomains()`, `PCASMSetTotalSubdomains()`, `PCASMSetOverlap()` 1706db781477SPatrick Sanan `PCASMCreateSubdomains2D()`, `PCASMSetLocalSubdomains()`, `PCASMGetLocalSubdomains()` 1707d709ea83SDmitry Karpeev @*/ 1708d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetDMSubdomains(PC pc, PetscBool flg) 1709d71ae5a4SJacob Faibussowitsch { 1710d709ea83SDmitry Karpeev PC_ASM *osm = (PC_ASM *)pc->data; 1711d709ea83SDmitry Karpeev PetscBool match; 1712d709ea83SDmitry Karpeev 1713d709ea83SDmitry Karpeev PetscFunctionBegin; 1714d709ea83SDmitry Karpeev PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1715d709ea83SDmitry Karpeev PetscValidLogicalCollectiveBool(pc, flg, 2); 171628b400f6SJacob Faibussowitsch PetscCheck(!pc->setupcalled, ((PetscObject)pc)->comm, PETSC_ERR_ARG_WRONGSTATE, "Not for a setup PC."); 17179566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCASM, &match)); 1718ad540459SPierre Jolivet if (match) osm->dm_subdomains = flg; 17193ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 1720d709ea83SDmitry Karpeev } 1721d709ea83SDmitry Karpeev 1722d709ea83SDmitry Karpeev /*@ 1723f1580f4eSBarry Smith PCASMGetDMSubdomains - Returns flag indicating whether to use `DMCreateDomainDecomposition()` to define the subdomains, whenever possible. 1724f1580f4eSBarry Smith 1725d709ea83SDmitry Karpeev Not Collective 1726d709ea83SDmitry Karpeev 1727d709ea83SDmitry Karpeev Input Parameter: 1728d709ea83SDmitry Karpeev . pc - the preconditioner 1729d709ea83SDmitry Karpeev 1730d709ea83SDmitry Karpeev Output Parameter: 173120f4b53cSBarry Smith . flg - boolean indicating whether to use subdomains defined by the `DM` 1732d709ea83SDmitry Karpeev 1733d709ea83SDmitry Karpeev Level: intermediate 1734d709ea83SDmitry Karpeev 1735562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetDMSubdomains()`, `PCASMSetTotalSubdomains()`, `PCASMSetOverlap()` 1736db781477SPatrick Sanan `PCASMCreateSubdomains2D()`, `PCASMSetLocalSubdomains()`, `PCASMGetLocalSubdomains()` 1737d709ea83SDmitry Karpeev @*/ 1738d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetDMSubdomains(PC pc, PetscBool *flg) 1739d71ae5a4SJacob Faibussowitsch { 1740d709ea83SDmitry Karpeev PC_ASM *osm = (PC_ASM *)pc->data; 1741d709ea83SDmitry Karpeev PetscBool match; 1742d709ea83SDmitry Karpeev 1743d709ea83SDmitry Karpeev PetscFunctionBegin; 1744d709ea83SDmitry Karpeev PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 17454f572ea9SToby Isaac PetscAssertPointer(flg, 2); 17469566063dSJacob Faibussowitsch PetscCall(PetscObjectTypeCompare((PetscObject)pc, PCASM, &match)); 174756ea09ceSStefano Zampini if (match) *flg = osm->dm_subdomains; 174856ea09ceSStefano Zampini else *flg = PETSC_FALSE; 17493ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 1750d709ea83SDmitry Karpeev } 175180ec0b7dSPatrick Sanan 1752feefa0e1SJacob Faibussowitsch /*@C 1753f1580f4eSBarry Smith PCASMGetSubMatType - Gets the matrix type used for `PCASM` subsolves, as a string. 175480ec0b7dSPatrick Sanan 175580ec0b7dSPatrick Sanan Not Collective 175680ec0b7dSPatrick Sanan 175780ec0b7dSPatrick Sanan Input Parameter: 1758f1580f4eSBarry Smith . pc - the `PC` 175980ec0b7dSPatrick Sanan 176080ec0b7dSPatrick Sanan Output Parameter: 1761feefa0e1SJacob Faibussowitsch . sub_mat_type - name of matrix type 176280ec0b7dSPatrick Sanan 176380ec0b7dSPatrick Sanan Level: advanced 176480ec0b7dSPatrick Sanan 1765562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMSetSubMatType()`, `PCSetType()`, `VecSetType()`, `MatType`, `Mat` 176680ec0b7dSPatrick Sanan @*/ 1767d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMGetSubMatType(PC pc, MatType *sub_mat_type) 1768d71ae5a4SJacob Faibussowitsch { 176956ea09ceSStefano Zampini PetscFunctionBegin; 177056ea09ceSStefano Zampini PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1771cac4c232SBarry Smith PetscTryMethod(pc, "PCASMGetSubMatType_C", (PC, MatType *), (pc, sub_mat_type)); 17723ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 177380ec0b7dSPatrick Sanan } 177480ec0b7dSPatrick Sanan 1775feefa0e1SJacob Faibussowitsch /*@C 1776f1580f4eSBarry Smith PCASMSetSubMatType - Set the type of matrix used for `PCASM` subsolves 177780ec0b7dSPatrick Sanan 1778c3339decSBarry Smith Collective 177980ec0b7dSPatrick Sanan 178080ec0b7dSPatrick Sanan Input Parameters: 1781f1580f4eSBarry Smith + pc - the `PC` object 1782f1580f4eSBarry Smith - sub_mat_type - the `MatType` 178380ec0b7dSPatrick Sanan 178480ec0b7dSPatrick Sanan Options Database Key: 1785f1580f4eSBarry Smith . -pc_asm_sub_mat_type <sub_mat_type> - Sets the matrix type used for subsolves, for example, seqaijviennacl. 1786f1580f4eSBarry Smith If you specify a base name like aijviennacl, the corresponding sequential type is assumed. 178780ec0b7dSPatrick Sanan 1788f1580f4eSBarry Smith Note: 17892fe279fdSBarry Smith See `MatType` for available types 179080ec0b7dSPatrick Sanan 179180ec0b7dSPatrick Sanan Level: advanced 179280ec0b7dSPatrick Sanan 1793562efe2eSBarry Smith .seealso: [](ch_ksp), `PCASM`, `PCASMGetSubMatType()`, `PCSetType()`, `VecSetType()`, `MatType`, `Mat` 179480ec0b7dSPatrick Sanan @*/ 1795d71ae5a4SJacob Faibussowitsch PetscErrorCode PCASMSetSubMatType(PC pc, MatType sub_mat_type) 1796d71ae5a4SJacob Faibussowitsch { 179756ea09ceSStefano Zampini PetscFunctionBegin; 179856ea09ceSStefano Zampini PetscValidHeaderSpecific(pc, PC_CLASSID, 1); 1799cac4c232SBarry Smith PetscTryMethod(pc, "PCASMSetSubMatType_C", (PC, MatType), (pc, sub_mat_type)); 18003ba16761SJacob Faibussowitsch PetscFunctionReturn(PETSC_SUCCESS); 180180ec0b7dSPatrick Sanan } 1802