xref: /petsc/src/ksp/pc/impls/bjacobi/bjacobi.c (revision 2b8d69ca7ea5fe9190df62c1dce3bbd66fce84dd)
1 
2 /*
3    Defines a block Jacobi preconditioner.
4 */
5 #include <petsc/private/pcimpl.h>              /*I "petscpc.h" I*/
6 #include <../src/ksp/pc/impls/bjacobi/bjacobi.h>
7 
8 static PetscErrorCode PCSetUp_BJacobi_Singleblock(PC,Mat,Mat);
9 static PetscErrorCode PCSetUp_BJacobi_Multiblock(PC,Mat,Mat);
10 static PetscErrorCode PCSetUp_BJacobi_Multiproc(PC);
11 
12 #undef __FUNCT__
13 #define __FUNCT__ "PCSetUp_BJacobi"
14 static PetscErrorCode PCSetUp_BJacobi(PC pc)
15 {
16   PC_BJacobi     *jac = (PC_BJacobi*)pc->data;
17   Mat            mat  = pc->mat,pmat = pc->pmat;
18   PetscErrorCode ierr,(*f)(Mat,Mat*);
19   PetscInt       N,M,start,i,sum,end;
20   PetscInt       bs,i_start=-1,i_end=-1;
21   PetscMPIInt    rank,size;
22   const char     *pprefix,*mprefix;
23 
24   PetscFunctionBegin;
25   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)pc),&rank);CHKERRQ(ierr);
26   ierr = MPI_Comm_size(PetscObjectComm((PetscObject)pc),&size);CHKERRQ(ierr);
27   ierr = MatGetLocalSize(pc->pmat,&M,&N);CHKERRQ(ierr);
28   ierr = MatGetBlockSize(pc->pmat,&bs);CHKERRQ(ierr);
29 
30   if (jac->n > 0 && jac->n < size) {
31     ierr = PCSetUp_BJacobi_Multiproc(pc);CHKERRQ(ierr);
32     PetscFunctionReturn(0);
33   }
34 
35   /* --------------------------------------------------------------------------
36       Determines the number of blocks assigned to each processor
37   -----------------------------------------------------------------------------*/
38 
39   /*   local block count  given */
40   if (jac->n_local > 0 && jac->n < 0) {
41     ierr = MPIU_Allreduce(&jac->n_local,&jac->n,1,MPIU_INT,MPI_SUM,PetscObjectComm((PetscObject)pc));CHKERRQ(ierr);
42     if (jac->l_lens) { /* check that user set these correctly */
43       sum = 0;
44       for (i=0; i<jac->n_local; i++) {
45         if (jac->l_lens[i]/bs*bs !=jac->l_lens[i]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat blocksize doesn't match block Jacobi layout");
46         sum += jac->l_lens[i];
47       }
48       if (sum != M) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Local lens set incorrectly");
49     } else {
50       ierr = PetscMalloc1(jac->n_local,&jac->l_lens);CHKERRQ(ierr);
51       for (i=0; i<jac->n_local; i++) jac->l_lens[i] = bs*((M/bs)/jac->n_local + (((M/bs) % jac->n_local) > i));
52     }
53   } else if (jac->n > 0 && jac->n_local < 0) { /* global block count given */
54     /* global blocks given: determine which ones are local */
55     if (jac->g_lens) {
56       /* check if the g_lens is has valid entries */
57       for (i=0; i<jac->n; i++) {
58         if (!jac->g_lens[i]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Zero block not allowed");
59         if (jac->g_lens[i]/bs*bs != jac->g_lens[i]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat blocksize doesn't match block Jacobi layout");
60       }
61       if (size == 1) {
62         jac->n_local = jac->n;
63         ierr         = PetscMalloc1(jac->n_local,&jac->l_lens);CHKERRQ(ierr);
64         ierr         = PetscMemcpy(jac->l_lens,jac->g_lens,jac->n_local*sizeof(PetscInt));CHKERRQ(ierr);
65         /* check that user set these correctly */
66         sum = 0;
67         for (i=0; i<jac->n_local; i++) sum += jac->l_lens[i];
68         if (sum != M) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Global lens set incorrectly");
69       } else {
70         ierr = MatGetOwnershipRange(pc->pmat,&start,&end);CHKERRQ(ierr);
71         /* loop over blocks determing first one owned by me */
72         sum = 0;
73         for (i=0; i<jac->n+1; i++) {
74           if (sum == start) { i_start = i; goto start_1;}
75           if (i < jac->n) sum += jac->g_lens[i];
76         }
77         SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Block sizes used in PCBJacobiSetTotalBlocks()\nare not compatible with parallel matrix layout");
78 start_1:
79         for (i=i_start; i<jac->n+1; i++) {
80           if (sum == end) { i_end = i; goto end_1; }
81           if (i < jac->n) sum += jac->g_lens[i];
82         }
83         SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Block sizes used in PCBJacobiSetTotalBlocks()\nare not compatible with parallel matrix layout");
84 end_1:
85         jac->n_local = i_end - i_start;
86         ierr         = PetscMalloc1(jac->n_local,&jac->l_lens);CHKERRQ(ierr);
87         ierr         = PetscMemcpy(jac->l_lens,jac->g_lens+i_start,jac->n_local*sizeof(PetscInt));CHKERRQ(ierr);
88       }
89     } else { /* no global blocks given, determine then using default layout */
90       jac->n_local = jac->n/size + ((jac->n % size) > rank);
91       ierr         = PetscMalloc1(jac->n_local,&jac->l_lens);CHKERRQ(ierr);
92       for (i=0; i<jac->n_local; i++) {
93         jac->l_lens[i] = ((M/bs)/jac->n_local + (((M/bs) % jac->n_local) > i))*bs;
94         if (!jac->l_lens[i]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Too many blocks given");
95       }
96     }
97   } else if (jac->n < 0 && jac->n_local < 0) { /* no blocks given */
98     jac->n         = size;
99     jac->n_local   = 1;
100     ierr           = PetscMalloc1(1,&jac->l_lens);CHKERRQ(ierr);
101     jac->l_lens[0] = M;
102   } else { /* jac->n > 0 && jac->n_local > 0 */
103     if (!jac->l_lens) {
104       ierr = PetscMalloc1(jac->n_local,&jac->l_lens);CHKERRQ(ierr);
105       for (i=0; i<jac->n_local; i++) jac->l_lens[i] = bs*((M/bs)/jac->n_local + (((M/bs) % jac->n_local) > i));
106     }
107   }
108   if (jac->n_local < 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Number of blocks is less than number of processors");
109 
110   /* -------------------------
111       Determines mat and pmat
112   ---------------------------*/
113   ierr = PetscObjectQueryFunction((PetscObject)pc->mat,"MatGetDiagonalBlock_C",&f);CHKERRQ(ierr);
114   if (!f && size == 1) {
115     mat  = pc->mat;
116     pmat = pc->pmat;
117   } else {
118     if (pc->useAmat) {
119       /* use block from Amat matrix, not Pmat for local MatMult() */
120       ierr = MatGetDiagonalBlock(pc->mat,&mat);CHKERRQ(ierr);
121       /* make submatrix have same prefix as entire matrix */
122       ierr = PetscObjectGetOptionsPrefix((PetscObject)pc->mat,&mprefix);CHKERRQ(ierr);
123       ierr = PetscObjectSetOptionsPrefix((PetscObject)mat,mprefix);CHKERRQ(ierr);
124     }
125     if (pc->pmat != pc->mat || !pc->useAmat) {
126       ierr = MatGetDiagonalBlock(pc->pmat,&pmat);CHKERRQ(ierr);
127       /* make submatrix have same prefix as entire matrix */
128       ierr = PetscObjectGetOptionsPrefix((PetscObject)pc->pmat,&pprefix);CHKERRQ(ierr);
129       ierr = PetscObjectSetOptionsPrefix((PetscObject)pmat,pprefix);CHKERRQ(ierr);
130     } else pmat = mat;
131   }
132 
133   /* ------
134      Setup code depends on the number of blocks
135   */
136   if (jac->n_local == 1) {
137     ierr = PCSetUp_BJacobi_Singleblock(pc,mat,pmat);CHKERRQ(ierr);
138   } else {
139     ierr = PCSetUp_BJacobi_Multiblock(pc,mat,pmat);CHKERRQ(ierr);
140   }
141   PetscFunctionReturn(0);
142 }
143 
144 /* Default destroy, if it has never been setup */
145 #undef __FUNCT__
146 #define __FUNCT__ "PCDestroy_BJacobi"
147 static PetscErrorCode PCDestroy_BJacobi(PC pc)
148 {
149   PC_BJacobi     *jac = (PC_BJacobi*)pc->data;
150   PetscErrorCode ierr;
151 
152   PetscFunctionBegin;
153   ierr = PetscFree(jac->g_lens);CHKERRQ(ierr);
154   ierr = PetscFree(jac->l_lens);CHKERRQ(ierr);
155   ierr = PetscFree(pc->data);CHKERRQ(ierr);
156   PetscFunctionReturn(0);
157 }
158 
159 #undef __FUNCT__
160 #define __FUNCT__ "PCSetFromOptions_BJacobi"
161 
162 static PetscErrorCode PCSetFromOptions_BJacobi(PetscOptionItems *PetscOptionsObject,PC pc)
163 {
164   PC_BJacobi     *jac = (PC_BJacobi*)pc->data;
165   PetscErrorCode ierr;
166   PetscInt       blocks,i;
167   PetscBool      flg;
168 
169   PetscFunctionBegin;
170   ierr = PetscOptionsHead(PetscOptionsObject,"Block Jacobi options");CHKERRQ(ierr);
171   ierr = PetscOptionsInt("-pc_bjacobi_blocks","Total number of blocks","PCBJacobiSetTotalBlocks",jac->n,&blocks,&flg);CHKERRQ(ierr);
172   if (flg) {
173     ierr = PCBJacobiSetTotalBlocks(pc,blocks,NULL);CHKERRQ(ierr);
174   }
175   if (jac->ksp) {
176     /* The sub-KSP has already been set up (e.g., PCSetUp_BJacobi_Singleblock), but KSPSetFromOptions was not called
177      * unless we had already been called. */
178     for (i=0; i<jac->n_local; i++) {
179       ierr = KSPSetFromOptions(jac->ksp[i]);CHKERRQ(ierr);
180     }
181   }
182   ierr = PetscOptionsTail();CHKERRQ(ierr);
183   PetscFunctionReturn(0);
184 }
185 
186 #include <petscdraw.h>
187 #undef __FUNCT__
188 #define __FUNCT__ "PCView_BJacobi"
189 static PetscErrorCode PCView_BJacobi(PC pc,PetscViewer viewer)
190 {
191   PC_BJacobi           *jac   = (PC_BJacobi*)pc->data;
192   PC_BJacobi_Multiproc *mpjac = (PC_BJacobi_Multiproc*)jac->data;
193   PetscErrorCode       ierr;
194   PetscMPIInt          rank;
195   PetscInt             i;
196   PetscBool            iascii,isstring,isdraw;
197   PetscViewer          sviewer;
198 
199   PetscFunctionBegin;
200   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
201   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSTRING,&isstring);CHKERRQ(ierr);
202   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
203   if (iascii) {
204     if (pc->useAmat) {
205       ierr = PetscViewerASCIIPrintf(viewer,"  block Jacobi: using Amat local matrix, number of blocks = %D\n",jac->n);CHKERRQ(ierr);
206     }
207     ierr = PetscViewerASCIIPrintf(viewer,"  block Jacobi: number of blocks = %D\n",jac->n);CHKERRQ(ierr);
208     ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)pc),&rank);CHKERRQ(ierr);
209     if (jac->same_local_solves) {
210       ierr = PetscViewerASCIIPrintf(viewer,"  Local solve is same for all blocks, in the following KSP and PC objects:\n");CHKERRQ(ierr);
211       if (jac->ksp && !jac->psubcomm) {
212         ierr = PetscViewerGetSubViewer(viewer,PETSC_COMM_SELF,&sviewer);CHKERRQ(ierr);
213         if (!rank) {
214           ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
215           ierr = KSPView(jac->ksp[0],sviewer);CHKERRQ(ierr);
216           ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
217         }
218         ierr = PetscViewerRestoreSubViewer(viewer,PETSC_COMM_SELF,&sviewer);CHKERRQ(ierr);
219       } else if (jac->psubcomm && !jac->psubcomm->color) {
220         ierr = PetscViewerASCIIGetStdout(PetscSubcommChild(mpjac->psubcomm),&sviewer);CHKERRQ(ierr);
221         ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
222         ierr = KSPView(*(jac->ksp),sviewer);CHKERRQ(ierr);
223         ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
224       }
225     } else {
226       PetscInt n_global;
227       ierr = MPIU_Allreduce(&jac->n_local,&n_global,1,MPIU_INT,MPI_MAX,PetscObjectComm((PetscObject)pc));CHKERRQ(ierr);
228       ierr = PetscViewerASCIIPushSynchronized(viewer);CHKERRQ(ierr);
229       ierr = PetscViewerASCIIPrintf(viewer,"  Local solve info for each block is in the following KSP and PC objects:\n");CHKERRQ(ierr);
230       ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] number of local blocks = %D, first local block number = %D\n",
231                                                 rank,jac->n_local,jac->first_local);CHKERRQ(ierr);
232       ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr);
233       ierr = PetscViewerGetSubViewer(viewer,PETSC_COMM_SELF,&sviewer);CHKERRQ(ierr);
234       for (i=0; i<jac->n_local; i++) {
235         ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] local block number %D\n",rank,i);CHKERRQ(ierr);
236         ierr = KSPView(jac->ksp[i],sviewer);CHKERRQ(ierr);
237         ierr = PetscViewerASCIISynchronizedPrintf(viewer,"- - - - - - - - - - - - - - - - - -\n");CHKERRQ(ierr);
238       }
239       ierr = PetscViewerRestoreSubViewer(viewer,PETSC_COMM_SELF,&sviewer);CHKERRQ(ierr);
240       ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr);
241       ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
242       ierr = PetscViewerASCIIPopSynchronized(viewer);CHKERRQ(ierr);
243     }
244   } else if (isstring) {
245     ierr = PetscViewerStringSPrintf(viewer," blks=%D",jac->n);CHKERRQ(ierr);
246     ierr = PetscViewerGetSubViewer(viewer,PETSC_COMM_SELF,&sviewer);CHKERRQ(ierr);
247     if (jac->ksp) {ierr = KSPView(jac->ksp[0],sviewer);CHKERRQ(ierr);}
248     ierr = PetscViewerRestoreSubViewer(viewer,PETSC_COMM_SELF,&sviewer);CHKERRQ(ierr);
249   } else if (isdraw) {
250     PetscDraw draw;
251     char      str[25];
252     PetscReal x,y,bottom,h;
253 
254     ierr   = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
255     ierr   = PetscDrawGetCurrentPoint(draw,&x,&y);CHKERRQ(ierr);
256     ierr   = PetscSNPrintf(str,25,"Number blocks %D",jac->n);CHKERRQ(ierr);
257     ierr   = PetscDrawStringBoxed(draw,x,y,PETSC_DRAW_RED,PETSC_DRAW_BLACK,str,NULL,&h);CHKERRQ(ierr);
258     bottom = y - h;
259     ierr   = PetscDrawPushCurrentPoint(draw,x,bottom);CHKERRQ(ierr);
260     /* warning the communicator on viewer is different then on ksp in parallel */
261     if (jac->ksp) {ierr = KSPView(jac->ksp[0],viewer);CHKERRQ(ierr);}
262     ierr = PetscDrawPopCurrentPoint(draw);CHKERRQ(ierr);
263   }
264   PetscFunctionReturn(0);
265 }
266 
267 /* -------------------------------------------------------------------------------------*/
268 
269 #undef __FUNCT__
270 #define __FUNCT__ "PCBJacobiGetSubKSP_BJacobi"
271 static PetscErrorCode  PCBJacobiGetSubKSP_BJacobi(PC pc,PetscInt *n_local,PetscInt *first_local,KSP **ksp)
272 {
273   PC_BJacobi *jac = (PC_BJacobi*)pc->data;;
274 
275   PetscFunctionBegin;
276   if (!pc->setupcalled) SETERRQ(PetscObjectComm((PetscObject)pc),PETSC_ERR_ARG_WRONGSTATE,"Must call KSPSetUp() or PCSetUp() first");
277 
278   if (n_local) *n_local = jac->n_local;
279   if (first_local) *first_local = jac->first_local;
280   *ksp                   = jac->ksp;
281   jac->same_local_solves = PETSC_FALSE;        /* Assume that local solves are now different;
282                                                   not necessarily true though!  This flag is
283                                                   used only for PCView_BJacobi() */
284   PetscFunctionReturn(0);
285 }
286 
287 #undef __FUNCT__
288 #define __FUNCT__ "PCBJacobiSetTotalBlocks_BJacobi"
289 static PetscErrorCode  PCBJacobiSetTotalBlocks_BJacobi(PC pc,PetscInt blocks,PetscInt *lens)
290 {
291   PC_BJacobi     *jac = (PC_BJacobi*)pc->data;
292   PetscErrorCode ierr;
293 
294   PetscFunctionBegin;
295   if (pc->setupcalled > 0 && jac->n!=blocks) SETERRQ(PetscObjectComm((PetscObject)pc),PETSC_ERR_ORDER,"Cannot alter number of blocks after PCSetUp()/KSPSetUp() has been called");
296   jac->n = blocks;
297   if (!lens) jac->g_lens = 0;
298   else {
299     ierr = PetscMalloc1(blocks,&jac->g_lens);CHKERRQ(ierr);
300     ierr = PetscLogObjectMemory((PetscObject)pc,blocks*sizeof(PetscInt));CHKERRQ(ierr);
301     ierr = PetscMemcpy(jac->g_lens,lens,blocks*sizeof(PetscInt));CHKERRQ(ierr);
302   }
303   PetscFunctionReturn(0);
304 }
305 
306 #undef __FUNCT__
307 #define __FUNCT__ "PCBJacobiGetTotalBlocks_BJacobi"
308 static PetscErrorCode  PCBJacobiGetTotalBlocks_BJacobi(PC pc, PetscInt *blocks, const PetscInt *lens[])
309 {
310   PC_BJacobi *jac = (PC_BJacobi*) pc->data;
311 
312   PetscFunctionBegin;
313   *blocks = jac->n;
314   if (lens) *lens = jac->g_lens;
315   PetscFunctionReturn(0);
316 }
317 
318 #undef __FUNCT__
319 #define __FUNCT__ "PCBJacobiSetLocalBlocks_BJacobi"
320 static PetscErrorCode  PCBJacobiSetLocalBlocks_BJacobi(PC pc,PetscInt blocks,const PetscInt lens[])
321 {
322   PC_BJacobi     *jac;
323   PetscErrorCode ierr;
324 
325   PetscFunctionBegin;
326   jac = (PC_BJacobi*)pc->data;
327 
328   jac->n_local = blocks;
329   if (!lens) jac->l_lens = 0;
330   else {
331     ierr = PetscMalloc1(blocks,&jac->l_lens);CHKERRQ(ierr);
332     ierr = PetscLogObjectMemory((PetscObject)pc,blocks*sizeof(PetscInt));CHKERRQ(ierr);
333     ierr = PetscMemcpy(jac->l_lens,lens,blocks*sizeof(PetscInt));CHKERRQ(ierr);
334   }
335   PetscFunctionReturn(0);
336 }
337 
338 #undef __FUNCT__
339 #define __FUNCT__ "PCBJacobiGetLocalBlocks_BJacobi"
340 static PetscErrorCode  PCBJacobiGetLocalBlocks_BJacobi(PC pc, PetscInt *blocks, const PetscInt *lens[])
341 {
342   PC_BJacobi *jac = (PC_BJacobi*) pc->data;
343 
344   PetscFunctionBegin;
345   *blocks = jac->n_local;
346   if (lens) *lens = jac->l_lens;
347   PetscFunctionReturn(0);
348 }
349 
350 /* -------------------------------------------------------------------------------------*/
351 
352 #undef __FUNCT__
353 #define __FUNCT__ "PCBJacobiGetSubKSP"
354 /*@C
355    PCBJacobiGetSubKSP - Gets the local KSP contexts for all blocks on
356    this processor.
357 
358    Note Collective
359 
360    Input Parameter:
361 .  pc - the preconditioner context
362 
363    Output Parameters:
364 +  n_local - the number of blocks on this processor, or NULL
365 .  first_local - the global number of the first block on this processor, or NULL
366 -  ksp - the array of KSP contexts
367 
368    Notes:
369    After PCBJacobiGetSubKSP() the array of KSP contexts is not to be freed.
370 
371    Currently for some matrix implementations only 1 block per processor
372    is supported.
373 
374    You must call KSPSetUp() or PCSetUp() before calling PCBJacobiGetSubKSP().
375 
376    Fortran Usage: You must pass in a KSP array that is large enough to contain all the local KSPs.
377       You can call PCBJacobiGetSubKSP(pc,nlocal,firstlocal,NULL_OBJECT,ierr) to determine how large the
378       KSP array must be.
379 
380    Level: advanced
381 
382 .keywords:  block, Jacobi, get, sub, KSP, context
383 
384 .seealso: PCBJacobiGetSubKSP()
385 @*/
386 PetscErrorCode  PCBJacobiGetSubKSP(PC pc,PetscInt *n_local,PetscInt *first_local,KSP *ksp[])
387 {
388   PetscErrorCode ierr;
389 
390   PetscFunctionBegin;
391   PetscValidHeaderSpecific(pc,PC_CLASSID,1);
392   ierr = PetscUseMethod(pc,"PCBJacobiGetSubKSP_C",(PC,PetscInt*,PetscInt*,KSP **),(pc,n_local,first_local,ksp));CHKERRQ(ierr);
393   PetscFunctionReturn(0);
394 }
395 
396 #undef __FUNCT__
397 #define __FUNCT__ "PCBJacobiSetTotalBlocks"
398 /*@
399    PCBJacobiSetTotalBlocks - Sets the global number of blocks for the block
400    Jacobi preconditioner.
401 
402    Collective on PC
403 
404    Input Parameters:
405 +  pc - the preconditioner context
406 .  blocks - the number of blocks
407 -  lens - [optional] integer array containing the size of each block
408 
409    Options Database Key:
410 .  -pc_bjacobi_blocks <blocks> - Sets the number of global blocks
411 
412    Notes:
413    Currently only a limited number of blocking configurations are supported.
414    All processors sharing the PC must call this routine with the same data.
415 
416    Level: intermediate
417 
418 .keywords:  set, number, Jacobi, global, total, blocks
419 
420 .seealso: PCSetUseAmat(), PCBJacobiSetLocalBlocks()
421 @*/
422 PetscErrorCode  PCBJacobiSetTotalBlocks(PC pc,PetscInt blocks,const PetscInt lens[])
423 {
424   PetscErrorCode ierr;
425 
426   PetscFunctionBegin;
427   PetscValidHeaderSpecific(pc,PC_CLASSID,1);
428   if (blocks <= 0) SETERRQ(PetscObjectComm((PetscObject)pc),PETSC_ERR_ARG_OUTOFRANGE,"Must have positive blocks");
429   ierr = PetscTryMethod(pc,"PCBJacobiSetTotalBlocks_C",(PC,PetscInt,const PetscInt[]),(pc,blocks,lens));CHKERRQ(ierr);
430   PetscFunctionReturn(0);
431 }
432 
433 #undef __FUNCT__
434 #define __FUNCT__ "PCBJacobiGetTotalBlocks"
435 /*@C
436    PCBJacobiGetTotalBlocks - Gets the global number of blocks for the block
437    Jacobi preconditioner.
438 
439    Not Collective
440 
441    Input Parameter:
442 .  pc - the preconditioner context
443 
444    Output parameters:
445 +  blocks - the number of blocks
446 -  lens - integer array containing the size of each block
447 
448    Level: intermediate
449 
450 .keywords:  get, number, Jacobi, global, total, blocks
451 
452 .seealso: PCSetUseAmat(), PCBJacobiGetLocalBlocks()
453 @*/
454 PetscErrorCode  PCBJacobiGetTotalBlocks(PC pc, PetscInt *blocks, const PetscInt *lens[])
455 {
456   PetscErrorCode ierr;
457 
458   PetscFunctionBegin;
459   PetscValidHeaderSpecific(pc, PC_CLASSID,1);
460   PetscValidIntPointer(blocks,2);
461   ierr = PetscUseMethod(pc,"PCBJacobiGetTotalBlocks_C",(PC,PetscInt*, const PetscInt *[]),(pc,blocks,lens));CHKERRQ(ierr);
462   PetscFunctionReturn(0);
463 }
464 
465 #undef __FUNCT__
466 #define __FUNCT__ "PCBJacobiSetLocalBlocks"
467 /*@
468    PCBJacobiSetLocalBlocks - Sets the local number of blocks for the block
469    Jacobi preconditioner.
470 
471    Not Collective
472 
473    Input Parameters:
474 +  pc - the preconditioner context
475 .  blocks - the number of blocks
476 -  lens - [optional] integer array containing size of each block
477 
478    Note:
479    Currently only a limited number of blocking configurations are supported.
480 
481    Level: intermediate
482 
483 .keywords: PC, set, number, Jacobi, local, blocks
484 
485 .seealso: PCSetUseAmat(), PCBJacobiSetTotalBlocks()
486 @*/
487 PetscErrorCode  PCBJacobiSetLocalBlocks(PC pc,PetscInt blocks,const PetscInt lens[])
488 {
489   PetscErrorCode ierr;
490 
491   PetscFunctionBegin;
492   PetscValidHeaderSpecific(pc,PC_CLASSID,1);
493   if (blocks < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Must have nonegative blocks");
494   ierr = PetscTryMethod(pc,"PCBJacobiSetLocalBlocks_C",(PC,PetscInt,const PetscInt []),(pc,blocks,lens));CHKERRQ(ierr);
495   PetscFunctionReturn(0);
496 }
497 
498 #undef __FUNCT__
499 #define __FUNCT__ "PCBJacobiGetLocalBlocks"
500 /*@C
501    PCBJacobiGetLocalBlocks - Gets the local number of blocks for the block
502    Jacobi preconditioner.
503 
504    Not Collective
505 
506    Input Parameters:
507 +  pc - the preconditioner context
508 .  blocks - the number of blocks
509 -  lens - [optional] integer array containing size of each block
510 
511    Note:
512    Currently only a limited number of blocking configurations are supported.
513 
514    Level: intermediate
515 
516 .keywords: PC, get, number, Jacobi, local, blocks
517 
518 .seealso: PCSetUseAmat(), PCBJacobiGetTotalBlocks()
519 @*/
520 PetscErrorCode  PCBJacobiGetLocalBlocks(PC pc, PetscInt *blocks, const PetscInt *lens[])
521 {
522   PetscErrorCode ierr;
523 
524   PetscFunctionBegin;
525   PetscValidHeaderSpecific(pc, PC_CLASSID,1);
526   PetscValidIntPointer(blocks,2);
527   ierr = PetscUseMethod(pc,"PCBJacobiGetLocalBlocks_C",(PC,PetscInt*, const PetscInt *[]),(pc,blocks,lens));CHKERRQ(ierr);
528   PetscFunctionReturn(0);
529 }
530 
531 /* -----------------------------------------------------------------------------------*/
532 
533 /*MC
534    PCBJACOBI - Use block Jacobi preconditioning, each block is (approximately) solved with
535            its own KSP object.
536 
537    Options Database Keys:
538 .  -pc_use_amat - use Amat to apply block of operator in inner Krylov method
539 
540    Notes: Each processor can have one or more blocks, but a block cannot be shared by more
541      than one processor. Defaults to one block per processor.
542 
543      To set options on the solvers for each block append -sub_ to all the KSP, KSP, and PC
544         options database keys. For example, -sub_pc_type ilu -sub_pc_factor_levels 1 -sub_ksp_type preonly
545 
546      To set the options on the solvers separate for each block call PCBJacobiGetSubKSP()
547          and set the options directly on the resulting KSP object (you can access its PC
548          KSPGetPC())
549 
550      For CUSP vectors it is recommended to use exactly one block per MPI process for best
551          performance.  Different block partitioning may lead to additional data transfers
552          between host and GPU that lead to degraded performance.
553 
554    Level: beginner
555 
556    Concepts: block Jacobi
557 
558 
559 .seealso:  PCCreate(), PCSetType(), PCType (for list of available types), PC,
560            PCASM, PCSetUseAmat(), PCGetUseAmat(), PCBJacobiGetSubKSP(), PCBJacobiSetTotalBlocks(),
561            PCBJacobiSetLocalBlocks(), PCSetModifySubmatrices()
562 M*/
563 
564 #undef __FUNCT__
565 #define __FUNCT__ "PCCreate_BJacobi"
566 PETSC_EXTERN PetscErrorCode PCCreate_BJacobi(PC pc)
567 {
568   PetscErrorCode ierr;
569   PetscMPIInt    rank;
570   PC_BJacobi     *jac;
571 
572   PetscFunctionBegin;
573   ierr = PetscNewLog(pc,&jac);CHKERRQ(ierr);
574   ierr = MPI_Comm_rank(PetscObjectComm((PetscObject)pc),&rank);CHKERRQ(ierr);
575 
576   pc->ops->apply           = 0;
577   pc->ops->applytranspose  = 0;
578   pc->ops->setup           = PCSetUp_BJacobi;
579   pc->ops->destroy         = PCDestroy_BJacobi;
580   pc->ops->setfromoptions  = PCSetFromOptions_BJacobi;
581   pc->ops->view            = PCView_BJacobi;
582   pc->ops->applyrichardson = 0;
583 
584   pc->data               = (void*)jac;
585   jac->n                 = -1;
586   jac->n_local           = -1;
587   jac->first_local       = rank;
588   jac->ksp               = 0;
589   jac->same_local_solves = PETSC_TRUE;
590   jac->g_lens            = 0;
591   jac->l_lens            = 0;
592   jac->psubcomm          = 0;
593 
594   ierr = PetscObjectComposeFunction((PetscObject)pc,"PCBJacobiGetSubKSP_C",PCBJacobiGetSubKSP_BJacobi);CHKERRQ(ierr);
595   ierr = PetscObjectComposeFunction((PetscObject)pc,"PCBJacobiSetTotalBlocks_C",PCBJacobiSetTotalBlocks_BJacobi);CHKERRQ(ierr);
596   ierr = PetscObjectComposeFunction((PetscObject)pc,"PCBJacobiGetTotalBlocks_C",PCBJacobiGetTotalBlocks_BJacobi);CHKERRQ(ierr);
597   ierr = PetscObjectComposeFunction((PetscObject)pc,"PCBJacobiSetLocalBlocks_C",PCBJacobiSetLocalBlocks_BJacobi);CHKERRQ(ierr);
598   ierr = PetscObjectComposeFunction((PetscObject)pc,"PCBJacobiGetLocalBlocks_C",PCBJacobiGetLocalBlocks_BJacobi);CHKERRQ(ierr);
599   PetscFunctionReturn(0);
600 }
601 
602 /* --------------------------------------------------------------------------------------------*/
603 /*
604         These are for a single block per processor; works for AIJ, BAIJ; Seq and MPI
605 */
606 #undef __FUNCT__
607 #define __FUNCT__ "PCReset_BJacobi_Singleblock"
608 static PetscErrorCode PCReset_BJacobi_Singleblock(PC pc)
609 {
610   PC_BJacobi             *jac  = (PC_BJacobi*)pc->data;
611   PC_BJacobi_Singleblock *bjac = (PC_BJacobi_Singleblock*)jac->data;
612   PetscErrorCode         ierr;
613 
614   PetscFunctionBegin;
615   ierr = KSPReset(jac->ksp[0]);CHKERRQ(ierr);
616   ierr = VecDestroy(&bjac->x);CHKERRQ(ierr);
617   ierr = VecDestroy(&bjac->y);CHKERRQ(ierr);
618   PetscFunctionReturn(0);
619 }
620 
621 #undef __FUNCT__
622 #define __FUNCT__ "PCDestroy_BJacobi_Singleblock"
623 static PetscErrorCode PCDestroy_BJacobi_Singleblock(PC pc)
624 {
625   PC_BJacobi             *jac  = (PC_BJacobi*)pc->data;
626   PC_BJacobi_Singleblock *bjac = (PC_BJacobi_Singleblock*)jac->data;
627   PetscErrorCode         ierr;
628 
629   PetscFunctionBegin;
630   ierr = PCReset_BJacobi_Singleblock(pc);CHKERRQ(ierr);
631   ierr = KSPDestroy(&jac->ksp[0]);CHKERRQ(ierr);
632   ierr = PetscFree(jac->ksp);CHKERRQ(ierr);
633   ierr = PetscFree(jac->l_lens);CHKERRQ(ierr);
634   ierr = PetscFree(jac->g_lens);CHKERRQ(ierr);
635   ierr = PetscFree(bjac);CHKERRQ(ierr);
636   ierr = PetscFree(pc->data);CHKERRQ(ierr);
637   PetscFunctionReturn(0);
638 }
639 
640 #include <petsc/private/kspimpl.h>
641 #undef __FUNCT__
642 #define __FUNCT__ "PCSetUpOnBlocks_BJacobi_Singleblock"
643 static PetscErrorCode PCSetUpOnBlocks_BJacobi_Singleblock(PC pc)
644 {
645   PetscErrorCode ierr;
646   PC_BJacobi     *jac = (PC_BJacobi*)pc->data;
647   KSP            subksp = jac->ksp[0];
648 
649   PetscFunctionBegin;
650   ierr = KSPSetUp(subksp);CHKERRQ(ierr);
651   if (subksp->reason == KSP_DIVERGED_PCSETUP_FAILED) {
652     pc->failedreason = PC_SUBPC_ERROR;
653   }
654   PetscFunctionReturn(0);
655 }
656 
657 #undef __FUNCT__
658 #define __FUNCT__ "PCApply_BJacobi_Singleblock"
659 static PetscErrorCode PCApply_BJacobi_Singleblock(PC pc,Vec x,Vec y)
660 {
661   PetscErrorCode         ierr;
662   PC_BJacobi             *jac  = (PC_BJacobi*)pc->data;
663   PC_BJacobi_Singleblock *bjac = (PC_BJacobi_Singleblock*)jac->data;
664 
665   PetscFunctionBegin;
666   ierr = VecGetLocalVectorRead(x, bjac->x);CHKERRQ(ierr);
667   ierr = VecGetLocalVector(y, bjac->y);CHKERRQ(ierr);
668  /* Since the inner KSP matrix may point directly to the diagonal block of an MPI matrix the inner
669      matrix may change even if the outter KSP/PC has not updated the preconditioner, this will trigger a rebuild
670      of the inner preconditioner automatically unless we pass down the outter preconditioners reuse flag.*/
671   ierr = KSPSetReusePreconditioner(jac->ksp[0],pc->reusepreconditioner);CHKERRQ(ierr);
672   ierr = KSPSolve(jac->ksp[0],bjac->x,bjac->y);CHKERRQ(ierr);
673   ierr = VecRestoreLocalVectorRead(x, bjac->x);CHKERRQ(ierr);
674   ierr = VecRestoreLocalVector(y, bjac->y);CHKERRQ(ierr);
675   PetscFunctionReturn(0);
676 }
677 
678 #undef __FUNCT__
679 #define __FUNCT__ "PCApplySymmetricLeft_BJacobi_Singleblock"
680 static PetscErrorCode PCApplySymmetricLeft_BJacobi_Singleblock(PC pc,Vec x,Vec y)
681 {
682   PetscErrorCode         ierr;
683   PC_BJacobi             *jac  = (PC_BJacobi*)pc->data;
684   PC_BJacobi_Singleblock *bjac = (PC_BJacobi_Singleblock*)jac->data;
685   PetscScalar            *y_array;
686   const PetscScalar      *x_array;
687   PC                     subpc;
688 
689   PetscFunctionBegin;
690   /*
691       The VecPlaceArray() is to avoid having to copy the
692     y vector into the bjac->x vector. The reason for
693     the bjac->x vector is that we need a sequential vector
694     for the sequential solve.
695   */
696   ierr = VecGetArrayRead(x,&x_array);CHKERRQ(ierr);
697   ierr = VecGetArray(y,&y_array);CHKERRQ(ierr);
698   ierr = VecPlaceArray(bjac->x,x_array);CHKERRQ(ierr);
699   ierr = VecPlaceArray(bjac->y,y_array);CHKERRQ(ierr);
700   /* apply the symmetric left portion of the inner PC operator */
701   /* note this by-passes the inner KSP and its options completely */
702   ierr = KSPGetPC(jac->ksp[0],&subpc);CHKERRQ(ierr);
703   ierr = PCApplySymmetricLeft(subpc,bjac->x,bjac->y);CHKERRQ(ierr);
704   ierr = VecResetArray(bjac->x);CHKERRQ(ierr);
705   ierr = VecResetArray(bjac->y);CHKERRQ(ierr);
706   ierr = VecRestoreArrayRead(x,&x_array);CHKERRQ(ierr);
707   ierr = VecRestoreArray(y,&y_array);CHKERRQ(ierr);
708   PetscFunctionReturn(0);
709 }
710 
711 #undef __FUNCT__
712 #define __FUNCT__ "PCApplySymmetricRight_BJacobi_Singleblock"
713 static PetscErrorCode PCApplySymmetricRight_BJacobi_Singleblock(PC pc,Vec x,Vec y)
714 {
715   PetscErrorCode         ierr;
716   PC_BJacobi             *jac  = (PC_BJacobi*)pc->data;
717   PC_BJacobi_Singleblock *bjac = (PC_BJacobi_Singleblock*)jac->data;
718   PetscScalar            *y_array;
719   const PetscScalar      *x_array;
720   PC                     subpc;
721 
722   PetscFunctionBegin;
723   /*
724       The VecPlaceArray() is to avoid having to copy the
725     y vector into the bjac->x vector. The reason for
726     the bjac->x vector is that we need a sequential vector
727     for the sequential solve.
728   */
729   ierr = VecGetArrayRead(x,&x_array);CHKERRQ(ierr);
730   ierr = VecGetArray(y,&y_array);CHKERRQ(ierr);
731   ierr = VecPlaceArray(bjac->x,x_array);CHKERRQ(ierr);
732   ierr = VecPlaceArray(bjac->y,y_array);CHKERRQ(ierr);
733 
734   /* apply the symmetric right portion of the inner PC operator */
735   /* note this by-passes the inner KSP and its options completely */
736 
737   ierr = KSPGetPC(jac->ksp[0],&subpc);CHKERRQ(ierr);
738   ierr = PCApplySymmetricRight(subpc,bjac->x,bjac->y);CHKERRQ(ierr);
739 
740   ierr = VecRestoreArrayRead(x,&x_array);CHKERRQ(ierr);
741   ierr = VecRestoreArray(y,&y_array);CHKERRQ(ierr);
742   PetscFunctionReturn(0);
743 }
744 
745 #undef __FUNCT__
746 #define __FUNCT__ "PCApplyTranspose_BJacobi_Singleblock"
747 static PetscErrorCode PCApplyTranspose_BJacobi_Singleblock(PC pc,Vec x,Vec y)
748 {
749   PetscErrorCode         ierr;
750   PC_BJacobi             *jac  = (PC_BJacobi*)pc->data;
751   PC_BJacobi_Singleblock *bjac = (PC_BJacobi_Singleblock*)jac->data;
752   PetscScalar            *y_array;
753   const PetscScalar      *x_array;
754 
755   PetscFunctionBegin;
756   /*
757       The VecPlaceArray() is to avoid having to copy the
758     y vector into the bjac->x vector. The reason for
759     the bjac->x vector is that we need a sequential vector
760     for the sequential solve.
761   */
762   ierr = VecGetArrayRead(x,&x_array);CHKERRQ(ierr);
763   ierr = VecGetArray(y,&y_array);CHKERRQ(ierr);
764   ierr = VecPlaceArray(bjac->x,x_array);CHKERRQ(ierr);
765   ierr = VecPlaceArray(bjac->y,y_array);CHKERRQ(ierr);
766   ierr = KSPSolveTranspose(jac->ksp[0],bjac->x,bjac->y);CHKERRQ(ierr);
767   ierr = VecResetArray(bjac->x);CHKERRQ(ierr);
768   ierr = VecResetArray(bjac->y);CHKERRQ(ierr);
769   ierr = VecRestoreArrayRead(x,&x_array);CHKERRQ(ierr);
770   ierr = VecRestoreArray(y,&y_array);CHKERRQ(ierr);
771   PetscFunctionReturn(0);
772 }
773 
774 #undef __FUNCT__
775 #define __FUNCT__ "PCSetUp_BJacobi_Singleblock"
776 static PetscErrorCode PCSetUp_BJacobi_Singleblock(PC pc,Mat mat,Mat pmat)
777 {
778   PC_BJacobi             *jac = (PC_BJacobi*)pc->data;
779   PetscErrorCode         ierr;
780   PetscInt               m;
781   KSP                    ksp;
782   PC_BJacobi_Singleblock *bjac;
783   PetscBool              wasSetup = PETSC_TRUE;
784 
785   PetscFunctionBegin;
786   if (!pc->setupcalled) {
787     const char *prefix;
788 
789     if (!jac->ksp) {
790       wasSetup = PETSC_FALSE;
791 
792       ierr = KSPCreate(PETSC_COMM_SELF,&ksp);CHKERRQ(ierr);
793       ierr = KSPSetErrorIfNotConverged(ksp,pc->erroriffailure);CHKERRQ(ierr);
794       ierr = PetscObjectIncrementTabLevel((PetscObject)ksp,(PetscObject)pc,1);CHKERRQ(ierr);
795       ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)ksp);CHKERRQ(ierr);
796       ierr = KSPSetType(ksp,KSPPREONLY);CHKERRQ(ierr);
797       ierr = PCGetOptionsPrefix(pc,&prefix);CHKERRQ(ierr);
798       ierr = KSPSetOptionsPrefix(ksp,prefix);CHKERRQ(ierr);
799       ierr = KSPAppendOptionsPrefix(ksp,"sub_");CHKERRQ(ierr);
800 
801       pc->ops->reset               = PCReset_BJacobi_Singleblock;
802       pc->ops->destroy             = PCDestroy_BJacobi_Singleblock;
803       pc->ops->apply               = PCApply_BJacobi_Singleblock;
804       pc->ops->applysymmetricleft  = PCApplySymmetricLeft_BJacobi_Singleblock;
805       pc->ops->applysymmetricright = PCApplySymmetricRight_BJacobi_Singleblock;
806       pc->ops->applytranspose      = PCApplyTranspose_BJacobi_Singleblock;
807       pc->ops->setuponblocks       = PCSetUpOnBlocks_BJacobi_Singleblock;
808 
809       ierr        = PetscMalloc1(1,&jac->ksp);CHKERRQ(ierr);
810       jac->ksp[0] = ksp;
811 
812       ierr      = PetscNewLog(pc,&bjac);CHKERRQ(ierr);
813       jac->data = (void*)bjac;
814     } else {
815       ksp  = jac->ksp[0];
816       bjac = (PC_BJacobi_Singleblock*)jac->data;
817     }
818 
819     /*
820       The reason we need to generate these vectors is to serve
821       as the right-hand side and solution vector for the solve on the
822       block. We do not need to allocate space for the vectors since
823       that is provided via VecPlaceArray() just before the call to
824       KSPSolve() on the block.
825     */
826     ierr = MatGetSize(pmat,&m,&m);CHKERRQ(ierr);
827     ierr = VecCreateSeqWithArray(PETSC_COMM_SELF,1,m,NULL,&bjac->x);CHKERRQ(ierr);
828     ierr = VecCreateSeqWithArray(PETSC_COMM_SELF,1,m,NULL,&bjac->y);CHKERRQ(ierr);
829 #ifdef PETSC_HAVE_CUSP
830     ierr = VecSetType(bjac->x,VECCUSP);CHKERRQ(ierr);
831     ierr = VecSetType(bjac->y,VECCUSP);CHKERRQ(ierr);
832 #endif
833     ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)bjac->x);CHKERRQ(ierr);
834     ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)bjac->y);CHKERRQ(ierr);
835   } else {
836     ksp  = jac->ksp[0];
837     bjac = (PC_BJacobi_Singleblock*)jac->data;
838   }
839   if (pc->useAmat) {
840     ierr = KSPSetOperators(ksp,mat,pmat);CHKERRQ(ierr);
841   } else {
842     ierr = KSPSetOperators(ksp,pmat,pmat);CHKERRQ(ierr);
843   }
844   if (!wasSetup && pc->setfromoptionscalled) {
845     /* If PCSetFromOptions_BJacobi is called later, KSPSetFromOptions will be called at that time. */
846     ierr = KSPSetFromOptions(ksp);CHKERRQ(ierr);
847   }
848   PetscFunctionReturn(0);
849 }
850 
851 /* ---------------------------------------------------------------------------------------------*/
852 #undef __FUNCT__
853 #define __FUNCT__ "PCReset_BJacobi_Multiblock"
854 static PetscErrorCode PCReset_BJacobi_Multiblock(PC pc)
855 {
856   PC_BJacobi            *jac  = (PC_BJacobi*)pc->data;
857   PC_BJacobi_Multiblock *bjac = (PC_BJacobi_Multiblock*)jac->data;
858   PetscErrorCode        ierr;
859   PetscInt              i;
860 
861   PetscFunctionBegin;
862   if (bjac && bjac->pmat) {
863     ierr = MatDestroyMatrices(jac->n_local,&bjac->pmat);CHKERRQ(ierr);
864     if (pc->useAmat) {
865       ierr = MatDestroyMatrices(jac->n_local,&bjac->mat);CHKERRQ(ierr);
866     }
867   }
868 
869   for (i=0; i<jac->n_local; i++) {
870     ierr = KSPReset(jac->ksp[i]);CHKERRQ(ierr);
871     if (bjac && bjac->x) {
872       ierr = VecDestroy(&bjac->x[i]);CHKERRQ(ierr);
873       ierr = VecDestroy(&bjac->y[i]);CHKERRQ(ierr);
874       ierr = ISDestroy(&bjac->is[i]);CHKERRQ(ierr);
875     }
876   }
877   ierr = PetscFree(jac->l_lens);CHKERRQ(ierr);
878   ierr = PetscFree(jac->g_lens);CHKERRQ(ierr);
879   PetscFunctionReturn(0);
880 }
881 
882 #undef __FUNCT__
883 #define __FUNCT__ "PCDestroy_BJacobi_Multiblock"
884 static PetscErrorCode PCDestroy_BJacobi_Multiblock(PC pc)
885 {
886   PC_BJacobi            *jac  = (PC_BJacobi*)pc->data;
887   PC_BJacobi_Multiblock *bjac = (PC_BJacobi_Multiblock*)jac->data;
888   PetscErrorCode        ierr;
889   PetscInt              i;
890 
891   PetscFunctionBegin;
892   ierr = PCReset_BJacobi_Multiblock(pc);CHKERRQ(ierr);
893   if (bjac) {
894     ierr = PetscFree2(bjac->x,bjac->y);CHKERRQ(ierr);
895     ierr = PetscFree(bjac->starts);CHKERRQ(ierr);
896     ierr = PetscFree(bjac->is);CHKERRQ(ierr);
897   }
898   ierr = PetscFree(jac->data);CHKERRQ(ierr);
899   for (i=0; i<jac->n_local; i++) {
900     ierr = KSPDestroy(&jac->ksp[i]);CHKERRQ(ierr);
901   }
902   ierr = PetscFree(jac->ksp);CHKERRQ(ierr);
903   ierr = PetscFree(pc->data);CHKERRQ(ierr);
904   PetscFunctionReturn(0);
905 }
906 
907 #undef __FUNCT__
908 #define __FUNCT__ "PCSetUpOnBlocks_BJacobi_Multiblock"
909 static PetscErrorCode PCSetUpOnBlocks_BJacobi_Multiblock(PC pc)
910 {
911   PC_BJacobi     *jac = (PC_BJacobi*)pc->data;
912   PetscErrorCode ierr;
913   PetscInt       i,n_local = jac->n_local;
914 
915   PetscFunctionBegin;
916   for (i=0; i<n_local; i++) {
917     ierr = KSPSetUp(jac->ksp[i]);CHKERRQ(ierr);
918     if (jac->ksp[i]->reason == KSP_DIVERGED_PCSETUP_FAILED) {
919       pc->failedreason = PC_SUBPC_ERROR;
920     }
921   }
922   PetscFunctionReturn(0);
923 }
924 
925 /*
926       Preconditioner for block Jacobi
927 */
928 #undef __FUNCT__
929 #define __FUNCT__ "PCApply_BJacobi_Multiblock"
930 static PetscErrorCode PCApply_BJacobi_Multiblock(PC pc,Vec x,Vec y)
931 {
932   PC_BJacobi            *jac = (PC_BJacobi*)pc->data;
933   PetscErrorCode        ierr;
934   PetscInt              i,n_local = jac->n_local;
935   PC_BJacobi_Multiblock *bjac = (PC_BJacobi_Multiblock*)jac->data;
936   PetscScalar           *yin;
937   const PetscScalar     *xin;
938 
939   PetscFunctionBegin;
940   ierr = VecGetArrayRead(x,&xin);CHKERRQ(ierr);
941   ierr = VecGetArray(y,&yin);CHKERRQ(ierr);
942   for (i=0; i<n_local; i++) {
943     /*
944        To avoid copying the subvector from x into a workspace we instead
945        make the workspace vector array point to the subpart of the array of
946        the global vector.
947     */
948     ierr = VecPlaceArray(bjac->x[i],xin+bjac->starts[i]);CHKERRQ(ierr);
949     ierr = VecPlaceArray(bjac->y[i],yin+bjac->starts[i]);CHKERRQ(ierr);
950 
951     ierr = PetscLogEventBegin(PC_ApplyOnBlocks,jac->ksp[i],bjac->x[i],bjac->y[i],0);CHKERRQ(ierr);
952     ierr = KSPSolve(jac->ksp[i],bjac->x[i],bjac->y[i]);CHKERRQ(ierr);
953     ierr = PetscLogEventEnd(PC_ApplyOnBlocks,jac->ksp[i],bjac->x[i],bjac->y[i],0);CHKERRQ(ierr);
954 
955     ierr = VecResetArray(bjac->x[i]);CHKERRQ(ierr);
956     ierr = VecResetArray(bjac->y[i]);CHKERRQ(ierr);
957   }
958   ierr = VecRestoreArrayRead(x,&xin);CHKERRQ(ierr);
959   ierr = VecRestoreArray(y,&yin);CHKERRQ(ierr);
960   PetscFunctionReturn(0);
961 }
962 
963 /*
964       Preconditioner for block Jacobi
965 */
966 #undef __FUNCT__
967 #define __FUNCT__ "PCApplyTranspose_BJacobi_Multiblock"
968 static PetscErrorCode PCApplyTranspose_BJacobi_Multiblock(PC pc,Vec x,Vec y)
969 {
970   PC_BJacobi            *jac = (PC_BJacobi*)pc->data;
971   PetscErrorCode        ierr;
972   PetscInt              i,n_local = jac->n_local;
973   PC_BJacobi_Multiblock *bjac = (PC_BJacobi_Multiblock*)jac->data;
974   PetscScalar           *yin;
975   const PetscScalar     *xin;
976 
977   PetscFunctionBegin;
978   ierr = VecGetArrayRead(x,&xin);CHKERRQ(ierr);
979   ierr = VecGetArray(y,&yin);CHKERRQ(ierr);
980   for (i=0; i<n_local; i++) {
981     /*
982        To avoid copying the subvector from x into a workspace we instead
983        make the workspace vector array point to the subpart of the array of
984        the global vector.
985     */
986     ierr = VecPlaceArray(bjac->x[i],xin+bjac->starts[i]);CHKERRQ(ierr);
987     ierr = VecPlaceArray(bjac->y[i],yin+bjac->starts[i]);CHKERRQ(ierr);
988 
989     ierr = PetscLogEventBegin(PC_ApplyTransposeOnBlocks,jac->ksp[i],bjac->x[i],bjac->y[i],0);CHKERRQ(ierr);
990     ierr = KSPSolveTranspose(jac->ksp[i],bjac->x[i],bjac->y[i]);CHKERRQ(ierr);
991     ierr = PetscLogEventEnd(PC_ApplyTransposeOnBlocks,jac->ksp[i],bjac->x[i],bjac->y[i],0);CHKERRQ(ierr);
992 
993     ierr = VecResetArray(bjac->x[i]);CHKERRQ(ierr);
994     ierr = VecResetArray(bjac->y[i]);CHKERRQ(ierr);
995   }
996   ierr = VecRestoreArrayRead(x,&xin);CHKERRQ(ierr);
997   ierr = VecRestoreArray(y,&yin);CHKERRQ(ierr);
998   PetscFunctionReturn(0);
999 }
1000 
1001 #undef __FUNCT__
1002 #define __FUNCT__ "PCSetUp_BJacobi_Multiblock"
1003 static PetscErrorCode PCSetUp_BJacobi_Multiblock(PC pc,Mat mat,Mat pmat)
1004 {
1005   PC_BJacobi            *jac = (PC_BJacobi*)pc->data;
1006   PetscErrorCode        ierr;
1007   PetscInt              m,n_local,N,M,start,i;
1008   const char            *prefix,*pprefix,*mprefix;
1009   KSP                   ksp;
1010   Vec                   x,y;
1011   PC_BJacobi_Multiblock *bjac = (PC_BJacobi_Multiblock*)jac->data;
1012   PC                    subpc;
1013   IS                    is;
1014   MatReuse              scall;
1015 
1016   PetscFunctionBegin;
1017   ierr = MatGetLocalSize(pc->pmat,&M,&N);CHKERRQ(ierr);
1018 
1019   n_local = jac->n_local;
1020 
1021   if (pc->useAmat) {
1022     PetscBool same;
1023     ierr = PetscObjectTypeCompare((PetscObject)mat,((PetscObject)pmat)->type_name,&same);CHKERRQ(ierr);
1024     if (!same) SETERRQ(PetscObjectComm((PetscObject)pc),PETSC_ERR_ARG_INCOMP,"Matrices not of same type");
1025   }
1026 
1027   if (!pc->setupcalled) {
1028     scall = MAT_INITIAL_MATRIX;
1029 
1030     if (!jac->ksp) {
1031       pc->ops->reset         = PCReset_BJacobi_Multiblock;
1032       pc->ops->destroy       = PCDestroy_BJacobi_Multiblock;
1033       pc->ops->apply         = PCApply_BJacobi_Multiblock;
1034       pc->ops->applytranspose= PCApplyTranspose_BJacobi_Multiblock;
1035       pc->ops->setuponblocks = PCSetUpOnBlocks_BJacobi_Multiblock;
1036 
1037       ierr = PetscNewLog(pc,&bjac);CHKERRQ(ierr);
1038       ierr = PetscMalloc1(n_local,&jac->ksp);CHKERRQ(ierr);
1039       ierr = PetscLogObjectMemory((PetscObject)pc,sizeof(n_local*sizeof(KSP)));CHKERRQ(ierr);
1040       ierr = PetscMalloc2(n_local,&bjac->x,n_local,&bjac->y);CHKERRQ(ierr);
1041       ierr = PetscMalloc1(n_local,&bjac->starts);CHKERRQ(ierr);
1042       ierr = PetscLogObjectMemory((PetscObject)pc,sizeof(n_local*sizeof(PetscScalar)));CHKERRQ(ierr);
1043 
1044       jac->data = (void*)bjac;
1045       ierr      = PetscMalloc1(n_local,&bjac->is);CHKERRQ(ierr);
1046       ierr      = PetscLogObjectMemory((PetscObject)pc,sizeof(n_local*sizeof(IS)));CHKERRQ(ierr);
1047 
1048       for (i=0; i<n_local; i++) {
1049         ierr = KSPCreate(PETSC_COMM_SELF,&ksp);CHKERRQ(ierr);
1050         ierr = KSPSetErrorIfNotConverged(ksp,pc->erroriffailure);CHKERRQ(ierr);
1051         ierr = PetscObjectIncrementTabLevel((PetscObject)ksp,(PetscObject)pc,1);CHKERRQ(ierr);
1052         ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)ksp);CHKERRQ(ierr);
1053         ierr = KSPSetType(ksp,KSPPREONLY);CHKERRQ(ierr);
1054         ierr = KSPGetPC(ksp,&subpc);CHKERRQ(ierr);
1055         ierr = PCGetOptionsPrefix(pc,&prefix);CHKERRQ(ierr);
1056         ierr = KSPSetOptionsPrefix(ksp,prefix);CHKERRQ(ierr);
1057         ierr = KSPAppendOptionsPrefix(ksp,"sub_");CHKERRQ(ierr);
1058 
1059         jac->ksp[i] = ksp;
1060       }
1061     } else {
1062       bjac = (PC_BJacobi_Multiblock*)jac->data;
1063     }
1064 
1065     start = 0;
1066     for (i=0; i<n_local; i++) {
1067       m = jac->l_lens[i];
1068       /*
1069       The reason we need to generate these vectors is to serve
1070       as the right-hand side and solution vector for the solve on the
1071       block. We do not need to allocate space for the vectors since
1072       that is provided via VecPlaceArray() just before the call to
1073       KSPSolve() on the block.
1074 
1075       */
1076       ierr = VecCreateSeq(PETSC_COMM_SELF,m,&x);CHKERRQ(ierr);
1077       ierr = VecCreateSeqWithArray(PETSC_COMM_SELF,1,m,NULL,&y);CHKERRQ(ierr);
1078 #ifdef PETSC_HAVE_CUSP
1079       ierr = VecSetType(x,VECCUSP);CHKERRQ(ierr);
1080       ierr = VecSetType(y,VECCUSP);CHKERRQ(ierr);
1081 #endif
1082       ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)x);CHKERRQ(ierr);
1083       ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)y);CHKERRQ(ierr);
1084 
1085       bjac->x[i]      = x;
1086       bjac->y[i]      = y;
1087       bjac->starts[i] = start;
1088 
1089       ierr        = ISCreateStride(PETSC_COMM_SELF,m,start,1,&is);CHKERRQ(ierr);
1090       bjac->is[i] = is;
1091       ierr        = PetscLogObjectParent((PetscObject)pc,(PetscObject)is);CHKERRQ(ierr);
1092 
1093       start += m;
1094     }
1095   } else {
1096     bjac = (PC_BJacobi_Multiblock*)jac->data;
1097     /*
1098        Destroy the blocks from the previous iteration
1099     */
1100     if (pc->flag == DIFFERENT_NONZERO_PATTERN) {
1101       ierr = MatDestroyMatrices(n_local,&bjac->pmat);CHKERRQ(ierr);
1102       if (pc->useAmat) {
1103         ierr = MatDestroyMatrices(n_local,&bjac->mat);CHKERRQ(ierr);
1104       }
1105       scall = MAT_INITIAL_MATRIX;
1106     } else scall = MAT_REUSE_MATRIX;
1107   }
1108 
1109   ierr = MatGetSubMatrices(pmat,n_local,bjac->is,bjac->is,scall,&bjac->pmat);CHKERRQ(ierr);
1110   if (pc->useAmat) {
1111     ierr = PetscObjectGetOptionsPrefix((PetscObject)mat,&mprefix);CHKERRQ(ierr);
1112     ierr = MatGetSubMatrices(mat,n_local,bjac->is,bjac->is,scall,&bjac->mat);CHKERRQ(ierr);
1113   }
1114   /* Return control to the user so that the submatrices can be modified (e.g., to apply
1115      different boundary conditions for the submatrices than for the global problem) */
1116   ierr = PCModifySubMatrices(pc,n_local,bjac->is,bjac->is,bjac->pmat,pc->modifysubmatricesP);CHKERRQ(ierr);
1117 
1118   ierr = PetscObjectGetOptionsPrefix((PetscObject)pmat,&pprefix);CHKERRQ(ierr);
1119   for (i=0; i<n_local; i++) {
1120     ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)bjac->pmat[i]);CHKERRQ(ierr);
1121     ierr = PetscObjectSetOptionsPrefix((PetscObject)bjac->pmat[i],pprefix);CHKERRQ(ierr);
1122     if (pc->useAmat) {
1123       ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)bjac->mat[i]);CHKERRQ(ierr);
1124       ierr = PetscObjectSetOptionsPrefix((PetscObject)bjac->mat[i],mprefix);CHKERRQ(ierr);
1125       ierr = KSPSetOperators(jac->ksp[i],bjac->mat[i],bjac->pmat[i]);CHKERRQ(ierr);
1126     } else {
1127       ierr = KSPSetOperators(jac->ksp[i],bjac->pmat[i],bjac->pmat[i]);CHKERRQ(ierr);
1128     }
1129     if (pc->setfromoptionscalled) {
1130       ierr = KSPSetFromOptions(jac->ksp[i]);CHKERRQ(ierr);
1131     }
1132   }
1133   PetscFunctionReturn(0);
1134 }
1135 
1136 /* ---------------------------------------------------------------------------------------------*/
1137 /*
1138       These are for a single block with multiple processes;
1139 */
1140 #undef __FUNCT__
1141 #define __FUNCT__ "PCReset_BJacobi_Multiproc"
1142 static PetscErrorCode PCReset_BJacobi_Multiproc(PC pc)
1143 {
1144   PC_BJacobi           *jac   = (PC_BJacobi*)pc->data;
1145   PC_BJacobi_Multiproc *mpjac = (PC_BJacobi_Multiproc*)jac->data;
1146   PetscErrorCode       ierr;
1147 
1148   PetscFunctionBegin;
1149   ierr = VecDestroy(&mpjac->ysub);CHKERRQ(ierr);
1150   ierr = VecDestroy(&mpjac->xsub);CHKERRQ(ierr);
1151   ierr = MatDestroy(&mpjac->submats);CHKERRQ(ierr);
1152   if (jac->ksp) {ierr = KSPReset(jac->ksp[0]);CHKERRQ(ierr);}
1153   PetscFunctionReturn(0);
1154 }
1155 
1156 #undef __FUNCT__
1157 #define __FUNCT__ "PCDestroy_BJacobi_Multiproc"
1158 static PetscErrorCode PCDestroy_BJacobi_Multiproc(PC pc)
1159 {
1160   PC_BJacobi           *jac   = (PC_BJacobi*)pc->data;
1161   PC_BJacobi_Multiproc *mpjac = (PC_BJacobi_Multiproc*)jac->data;
1162   PetscErrorCode       ierr;
1163 
1164   PetscFunctionBegin;
1165   ierr = PCReset_BJacobi_Multiproc(pc);CHKERRQ(ierr);
1166   ierr = KSPDestroy(&jac->ksp[0]);CHKERRQ(ierr);
1167   ierr = PetscFree(jac->ksp);CHKERRQ(ierr);
1168   ierr = PetscSubcommDestroy(&mpjac->psubcomm);CHKERRQ(ierr);
1169 
1170   ierr = PetscFree(mpjac);CHKERRQ(ierr);
1171   ierr = PetscFree(pc->data);CHKERRQ(ierr);
1172   PetscFunctionReturn(0);
1173 }
1174 
1175 #undef __FUNCT__
1176 #define __FUNCT__ "PCApply_BJacobi_Multiproc"
1177 static PetscErrorCode PCApply_BJacobi_Multiproc(PC pc,Vec x,Vec y)
1178 {
1179   PC_BJacobi           *jac   = (PC_BJacobi*)pc->data;
1180   PC_BJacobi_Multiproc *mpjac = (PC_BJacobi_Multiproc*)jac->data;
1181   PetscErrorCode       ierr;
1182   PetscScalar          *yarray;
1183   const PetscScalar    *xarray;
1184 
1185   PetscFunctionBegin;
1186   /* place x's and y's local arrays into xsub and ysub */
1187   ierr = VecGetArrayRead(x,&xarray);CHKERRQ(ierr);
1188   ierr = VecGetArray(y,&yarray);CHKERRQ(ierr);
1189   ierr = VecPlaceArray(mpjac->xsub,xarray);CHKERRQ(ierr);
1190   ierr = VecPlaceArray(mpjac->ysub,yarray);CHKERRQ(ierr);
1191 
1192   /* apply preconditioner on each matrix block */
1193   ierr = PetscLogEventBegin(PC_ApplyOnMproc,jac->ksp[0],mpjac->xsub,mpjac->ysub,0);CHKERRQ(ierr);
1194   ierr = KSPSolve(jac->ksp[0],mpjac->xsub,mpjac->ysub);CHKERRQ(ierr);
1195   ierr = PetscLogEventEnd(PC_ApplyOnMproc,jac->ksp[0],mpjac->xsub,mpjac->ysub,0);CHKERRQ(ierr);
1196 
1197   if (jac->ksp[0]->reason == KSP_DIVERGED_PCSETUP_FAILED) {
1198     pc->failedreason = PC_SUBPC_ERROR;
1199   }
1200 
1201   ierr = VecResetArray(mpjac->xsub);CHKERRQ(ierr);
1202   ierr = VecResetArray(mpjac->ysub);CHKERRQ(ierr);
1203   ierr = VecRestoreArrayRead(x,&xarray);CHKERRQ(ierr);
1204   ierr = VecRestoreArray(y,&yarray);CHKERRQ(ierr);
1205   PetscFunctionReturn(0);
1206 }
1207 
1208 #include <petsc/private/matimpl.h>
1209 #undef __FUNCT__
1210 #define __FUNCT__ "PCSetUp_BJacobi_Multiproc"
1211 static PetscErrorCode PCSetUp_BJacobi_Multiproc(PC pc)
1212 {
1213   PC_BJacobi           *jac   = (PC_BJacobi*)pc->data;
1214   PC_BJacobi_Multiproc *mpjac = (PC_BJacobi_Multiproc*)jac->data;
1215   PetscErrorCode       ierr;
1216   PetscInt             m,n;
1217   MPI_Comm             comm,subcomm=0;
1218   const char           *prefix;
1219   PetscBool            wasSetup = PETSC_TRUE;
1220 
1221   PetscFunctionBegin;
1222   ierr = PetscObjectGetComm((PetscObject)pc,&comm);CHKERRQ(ierr);
1223   if (jac->n_local > 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Only a single block in a subcommunicator is supported");
1224   jac->n_local = 1; /* currently only a single block is supported for a subcommunicator */
1225   if (!pc->setupcalled) {
1226     wasSetup  = PETSC_FALSE;
1227     ierr      = PetscNewLog(pc,&mpjac);CHKERRQ(ierr);
1228     jac->data = (void*)mpjac;
1229 
1230     /* initialize datastructure mpjac */
1231     if (!jac->psubcomm) {
1232       /* Create default contiguous subcommunicatiors if user does not provide them */
1233       ierr = PetscSubcommCreate(comm,&jac->psubcomm);CHKERRQ(ierr);
1234       ierr = PetscSubcommSetNumber(jac->psubcomm,jac->n);CHKERRQ(ierr);
1235       ierr = PetscSubcommSetType(jac->psubcomm,PETSC_SUBCOMM_CONTIGUOUS);CHKERRQ(ierr);
1236       ierr = PetscLogObjectMemory((PetscObject)pc,sizeof(PetscSubcomm));CHKERRQ(ierr);
1237     }
1238     mpjac->psubcomm = jac->psubcomm;
1239     subcomm         = PetscSubcommChild(mpjac->psubcomm);
1240 
1241     /* Get matrix blocks of pmat */
1242     if (!pc->pmat->ops->getmultiprocblock) SETERRQ(PetscObjectComm((PetscObject)pc->pmat),PETSC_ERR_SUP,"No support for the requested operation");
1243     ierr = (*pc->pmat->ops->getmultiprocblock)(pc->pmat,subcomm,MAT_INITIAL_MATRIX,&mpjac->submats);CHKERRQ(ierr);
1244 
1245     /* create a new PC that processors in each subcomm have copy of */
1246     ierr = PetscMalloc1(1,&jac->ksp);CHKERRQ(ierr);
1247     ierr = KSPCreate(subcomm,&jac->ksp[0]);CHKERRQ(ierr);
1248     ierr = KSPSetErrorIfNotConverged(jac->ksp[0],pc->erroriffailure);CHKERRQ(ierr);
1249     ierr = PetscObjectIncrementTabLevel((PetscObject)jac->ksp[0],(PetscObject)pc,1);CHKERRQ(ierr);
1250     ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)jac->ksp[0]);CHKERRQ(ierr);
1251     ierr = KSPSetOperators(jac->ksp[0],mpjac->submats,mpjac->submats);CHKERRQ(ierr);
1252     ierr = KSPGetPC(jac->ksp[0],&mpjac->pc);CHKERRQ(ierr);
1253 
1254     ierr = PCGetOptionsPrefix(pc,&prefix);CHKERRQ(ierr);
1255     ierr = KSPSetOptionsPrefix(jac->ksp[0],prefix);CHKERRQ(ierr);
1256     ierr = KSPAppendOptionsPrefix(jac->ksp[0],"sub_");CHKERRQ(ierr);
1257     /*
1258       PetscMPIInt rank,subsize,subrank;
1259       ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
1260       ierr = MPI_Comm_size(subcomm,&subsize);CHKERRQ(ierr);
1261       ierr = MPI_Comm_rank(subcomm,&subrank);CHKERRQ(ierr);
1262 
1263       ierr = MatGetLocalSize(mpjac->submats,&m,NULL);CHKERRQ(ierr);
1264       ierr = MatGetSize(mpjac->submats,&n,NULL);CHKERRQ(ierr);
1265       ierr = PetscSynchronizedPrintf(comm,"[%d], sub-size %d,sub-rank %d\n",rank,subsize,subrank);
1266       ierr = PetscSynchronizedFlush(comm,PETSC_STDOUT);CHKERRQ(ierr);
1267     */
1268 
1269     /* create dummy vectors xsub and ysub */
1270     ierr = MatGetLocalSize(mpjac->submats,&m,&n);CHKERRQ(ierr);
1271     ierr = VecCreateMPIWithArray(subcomm,1,n,PETSC_DECIDE,NULL,&mpjac->xsub);CHKERRQ(ierr);
1272     ierr = VecCreateMPIWithArray(subcomm,1,m,PETSC_DECIDE,NULL,&mpjac->ysub);CHKERRQ(ierr);
1273 #ifdef PETSC_HAVE_CUSP
1274     ierr = VecSetType(mpjac->xsub,VECMPICUSP);CHKERRQ(ierr);
1275     ierr = VecSetType(mpjac->ysub,VECMPICUSP);CHKERRQ(ierr);
1276 #endif
1277     ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)mpjac->xsub);CHKERRQ(ierr);
1278     ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)mpjac->ysub);CHKERRQ(ierr);
1279 
1280     pc->ops->reset   = PCReset_BJacobi_Multiproc;
1281     pc->ops->destroy = PCDestroy_BJacobi_Multiproc;
1282     pc->ops->apply   = PCApply_BJacobi_Multiproc;
1283   } else { /* pc->setupcalled */
1284     subcomm = PetscSubcommChild(mpjac->psubcomm);
1285     if (pc->flag == DIFFERENT_NONZERO_PATTERN) {
1286       /* destroy old matrix blocks, then get new matrix blocks */
1287       if (mpjac->submats) {ierr = MatDestroy(&mpjac->submats);CHKERRQ(ierr);}
1288       ierr = (*pc->pmat->ops->getmultiprocblock)(pc->pmat,subcomm,MAT_INITIAL_MATRIX,&mpjac->submats);CHKERRQ(ierr);
1289     } else {
1290       ierr = (*pc->pmat->ops->getmultiprocblock)(pc->pmat,subcomm,MAT_REUSE_MATRIX,&mpjac->submats);CHKERRQ(ierr);
1291     }
1292     ierr = KSPSetOperators(jac->ksp[0],mpjac->submats,mpjac->submats);CHKERRQ(ierr);
1293   }
1294 
1295   if (!wasSetup && pc->setfromoptionscalled) {
1296     ierr = KSPSetFromOptions(jac->ksp[0]);CHKERRQ(ierr);
1297   }
1298   PetscFunctionReturn(0);
1299 }
1300