<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class=""><div class=""><br class=""></div>  Matt,<div class=""><br class=""></div><div class="">   I agree it can be done with DMs, but I am not convinced that is necessarily a superior way when one has to make DMSHELLS and mess around with their behavior.</div><div class=""><br class=""></div><div class="">   One way to look at PCFIELDSPLIT is that its basic splitting tool is IS and DM is a way of generating IS that can be used for PCFIELDSPLIT. In this approach PCFIELDSPLIT needs a bit more support for IS and nesting. To also help using multiple levels of DM.</div><div class=""><br class=""></div><div class="">   The other way is to view DM and subDM as the basic splitting tool for PCFIELDSPLIT but then one has to ask the question how does DM communicate its splits to PCFIELDSPLIT?   I am too lazy to look at the code but presumably with IS, hence the approach above.</div><div class=""><br class=""></div><div class="">   In the traditional Unix software stack approach to code, each layer uses the simpler layer below to communicate; so DM uses IS to communicate to the layer below (the linear algebra and preconditioners).  DM is a hugely complicated layer and making it communicate directly with the vector level is complex; I like having the IS level in between to simplify the software stack and programming model. </div><div class=""><br class=""></div><div class="">   PetscSection makes live more complicated since it is a bit disjoint from IS. I've never resolved in my mind what role PetscSection plays, is it a level above IS in the software stack that generates IS, does it sometimes "skip over" IS to directly talk to linear algebra? </div><div class=""><br class=""></div><div class="">   If you cannot make a cartoon picture of the software stack, with all the objects, then I think the software stack is not well designed or defined. I fear we cannot make such a cartoon currently.</div><div class=""><br class=""></div><div class=""> Barry</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On Apr 18, 2021, at 8:54 AM, Matthew Knepley <<a href="mailto:knepley@gmail.com" class="">knepley@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div dir="ltr" class="">On Sat, Apr 17, 2021 at 6:13 PM Barry Smith <<a href="mailto:bsmith@petsc.dev" class="">bsmith@petsc.dev</a>> wrote:<br class=""></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br class="">
  So you would like to be able to create three IS in your code and attach them with names to the PC.  Then have -pc_fieldsplit_XXX_fields be able to utilize the attached IS by name and use them to define the blocks.   <br class="">
<br class="">
  This is all doable and could be added to PCFIELDSPLIT without too much code, new code. The code would be largely like PCFieldSplitSetRuntimeSplits_Private.<br class="">
<br class="">
   The recursive part may also be doable but I think your syntax below is not exactly right. You would need something like <br class="">
<br class="">
-fieldsplit_0_pc_type fieldsplit   // split the first PC into a fieldsplit<br class="">
     -fieldsplit_0_pc_fieldsplit_0_fields xxx        -fieldsplit_0_fieldsplit_0_pc_type jacobi<br class="">
     -fieldsplit_0_pc_fieldsplit_1_fields yyy <br class="">
     etc<br class="">
<br class="">
this would split the first field into two fields and use jacobi on the first field.<br class="">
<br class="">
The problem is what to use for labelling the xxx and the yyy? <br class="">
<br class="">
I think one could achieve this by having the PCFIELDPLIT attach to each of its split PCs the appropriate modified IS with names attached to them.  There are two cases, <br class="">
<br class="">
  when building the split uses first all the entries from fieldsplit_v_, then from fieldsplit_p_ then the new ISs it needs to attach to the first split PC are two sets of integers the first from 0 to the len(v)-1 and the second from len(v) to len(v)+len(p)-1. <br class="">
<br class="">
  when building the split it interlaces the indices from v and p (interlacing only make sense if the size of v and p is the same). Then the new v would be {0,2,4,...} and p would be {1,3,...}. <br class="">
<br class="">
  If you are ambitious and would like to add this to fieldsplit.c we'd be very happy to receive an MR. It might even lead to allowing us to simply how the PCFIELDPLIT interacts with DMs. If all the split type, stride, named, etc are handle in a single consistent manner.<br class=""></blockquote><div class=""><br class=""></div><div class="">Barry, this is already working with DMs, which I think is the right way to do this.</div><div class=""><br class=""></div><div class="">Here is the code:</div><div class=""><br class=""></div><div class="">   <a href="https://gitlab.com/petsc/petsc/-/blob/main/src/ksp/pc/impls/fieldsplit/fieldsplit.c#L420" class="">https://gitlab.com/petsc/petsc/-/blob/main/src/ksp/pc/impls/fieldsplit/fieldsplit.c#L420</a><br class=""></div><div class=""><br class=""></div><div class="">The DM must respond to DMCreateSubDM(). The interface is that the call provides a list of fields [f_0, f_1, ...]</div><div class="">and the DM returns an IS for that combination and a subdm for it. The subdm part is what allows you to do this</div><div class="">recursively, since you make the same call on the subdm.</div><div class=""><br class=""></div><div class="">If you use a PetscSection to keep track of the data layout, the code to do field selection is already done:</div><div class=""><br class=""></div><div class="">  <a href="https://gitlab.com/petsc/petsc/-/blob/main/src/dm/interface/dmi.c#L105" class="">https://gitlab.com/petsc/petsc/-/blob/main/src/dm/interface/dmi.c#L105</a></div><div class=""><br class=""></div><div class="">which can just be called from the DMCreateSubDM() implementation.</div><div class=""><br class=""></div><div class="">  Thanks,</div><div class=""><br class=""></div><div class="">     Matt</div><div class=""> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
  Barry<br class="">
<br class="">
<br class="">
<br class="">
> On Apr 17, 2021, at 11:53 AM, Karin&NiKo <<a href="mailto:niko.karin@gmail.com" target="_blank" class="">niko.karin@gmail.com</a>> wrote:<br class="">
> <br class="">
> Dear PETSc users,<br class="">
> <br class="">
> I use the fieldsplit PC in an application where the splits are programmatically defined by IS using PCFieldSplitSetIS. Then the user can specify its own PC at runtime using PETSc options.<br class="">
> My question : is it possible to define nested splits in this case as it can be done with strided splits (see snes/examples/tutorials/ex19.c with test suffix fieldsplit_4).<br class="">
> <br class="">
> In order to be perfectly clear : let's say I have a 3 fields problem : velocity (v split), pressure (p split) and temperature (t split).<br class="">
> What I would like to do is something like the following but it fails : <br class="">
> <br class="">
> -ksp_type fgmres<br class="">
> -pc_fieldsplit_type multiplicative <br class="">
> -pc_type fieldsplit    -pc_fieldsplit_0_fields fieldsplit_v_, fieldsplit_p_    -pc_fieldsplit_1_fields fieldsplit_t_ <br class="">
> <br class="">
> -prefix_push  fieldsplit_0_  <br class="">
> -ksp_type fgmres<br class="">
> -pc_fieldsplit_schur_factorization_type upper <br class="">
> -pc_type fieldsplit <br class="">
> -pc_fieldsplit_type schur <br class="">
> -pc_fieldsplit_schur_precondition a11 <br class="">
> -prefix_pop<br class="">
> <br class="">
> -prefix_push  fieldsplit_1_  <br class="">
> -ksp_type fgmres<br class="">
> -pc_type jacobi<br class="">
> -prefix_pop<br class="">
> <br class="">
> -prefix_push  fieldsplit_v_  <br class="">
> -ksp_type fgmres<br class="">
> -pc_type gamg<br class="">
> -prefix_pop<br class="">
> <br class="">
> -prefix_push  fieldsplit_p_  <br class="">
> -ksp_type fgmres<br class="">
> -pc_type jacobi<br class="">
> -prefix_pop<br class="">
> <br class="">
> I thank you for your help,<br class="">
> Nicolas<br class="">
>  <br class="">
> <br class="">
<br class="">
</blockquote></div><br clear="all" class=""><div class=""><br class=""></div>-- <br class=""><div dir="ltr" class="gmail_signature"><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class=""><div dir="ltr" class=""><div class="">What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br class="">-- Norbert Wiener</div><div class=""><br class=""></div><div class=""><a href="http://www.cse.buffalo.edu/~knepley/" target="_blank" class="">https://www.cse.buffalo.edu/~knepley/</a><br class=""></div></div></div></div></div></div></div></div>
</div></blockquote></div><br class=""></div></body></html>