1dba47a55SKris Buschelman #define PETSCKSP_DLL 2dba47a55SKris Buschelman 34b9ad928SBarry Smith /* 44b9ad928SBarry Smith Defines a preconditioner that can consist of a collection of PCs 54b9ad928SBarry Smith */ 66356e834SBarry Smith #include "private/pcimpl.h" /*I "petscpc.h" I*/ 74b9ad928SBarry Smith #include "petscksp.h" /*I "petscksp.h" I*/ 84b9ad928SBarry Smith 94b9ad928SBarry Smith typedef struct _PC_CompositeLink *PC_CompositeLink; 104b9ad928SBarry Smith struct _PC_CompositeLink { 114b9ad928SBarry Smith PC pc; 124b9ad928SBarry Smith PC_CompositeLink next; 13421e10b8SBarry Smith PC_CompositeLink previous; 144b9ad928SBarry Smith }; 154b9ad928SBarry Smith 164b9ad928SBarry Smith typedef struct { 174b9ad928SBarry Smith PC_CompositeLink head; 184b9ad928SBarry Smith PCCompositeType type; 194b9ad928SBarry Smith Vec work1; 204b9ad928SBarry Smith Vec work2; 214b9ad928SBarry Smith PetscScalar alpha; 22ace3abfcSBarry Smith PetscBool use_true_matrix; 234b9ad928SBarry Smith } PC_Composite; 244b9ad928SBarry Smith 254b9ad928SBarry Smith #undef __FUNCT__ 264b9ad928SBarry Smith #define __FUNCT__ "PCApply_Composite_Multiplicative" 276849ba73SBarry Smith static PetscErrorCode PCApply_Composite_Multiplicative(PC pc,Vec x,Vec y) 284b9ad928SBarry Smith { 29dfbe8321SBarry Smith PetscErrorCode ierr; 304b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 314b9ad928SBarry Smith PC_CompositeLink next = jac->head; 324b9ad928SBarry Smith Mat mat = pc->pmat; 334b9ad928SBarry Smith 344b9ad928SBarry Smith PetscFunctionBegin; 35e7e72b3dSBarry Smith if (!next) SETERRQ(((PetscObject)pc)->comm,PETSC_ERR_ARG_WRONGSTATE,"No composite preconditioners supplied via PCCompositeAddPC() or -pc_composite_pcs"); 364b9ad928SBarry Smith if (next->next && !jac->work2) { /* allocate second work vector */ 374b9ad928SBarry Smith ierr = VecDuplicate(jac->work1,&jac->work2);CHKERRQ(ierr); 384b9ad928SBarry Smith } 39d8fd42c4SBarry Smith ierr = PCApply(next->pc,x,y);CHKERRQ(ierr); 404b9ad928SBarry Smith if (jac->use_true_matrix) mat = pc->mat; 414b9ad928SBarry Smith while (next->next) { 424b9ad928SBarry Smith next = next->next; 434b9ad928SBarry Smith ierr = MatMult(mat,y,jac->work1);CHKERRQ(ierr); 44efb30889SBarry Smith ierr = VecWAXPY(jac->work2,-1.0,jac->work1,x);CHKERRQ(ierr); 4551f519a2SBarry Smith ierr = VecSet(jac->work1,0.0);CHKERRQ(ierr); /* zero since some PC's may not set all entries in the result */ 46d8fd42c4SBarry Smith ierr = PCApply(next->pc,jac->work2,jac->work1);CHKERRQ(ierr); 47efb30889SBarry Smith ierr = VecAXPY(y,1.0,jac->work1);CHKERRQ(ierr); 484b9ad928SBarry Smith } 49421e10b8SBarry Smith if (jac->type == PC_COMPOSITE_SYMMETRIC_MULTIPLICATIVE) { 50421e10b8SBarry Smith while (next->previous) { 51421e10b8SBarry Smith next = next->previous; 52421e10b8SBarry Smith ierr = MatMult(mat,y,jac->work1);CHKERRQ(ierr); 53421e10b8SBarry Smith ierr = VecWAXPY(jac->work2,-1.0,jac->work1,x);CHKERRQ(ierr); 54421e10b8SBarry Smith ierr = VecSet(jac->work1,0.0);CHKERRQ(ierr); /* zero since some PC's may not set all entries in the result */ 55421e10b8SBarry Smith ierr = PCApply(next->pc,jac->work2,jac->work1);CHKERRQ(ierr); 56421e10b8SBarry Smith ierr = VecAXPY(y,1.0,jac->work1);CHKERRQ(ierr); 57421e10b8SBarry Smith } 58421e10b8SBarry Smith } 594b9ad928SBarry Smith PetscFunctionReturn(0); 604b9ad928SBarry Smith } 614b9ad928SBarry Smith 624b9ad928SBarry Smith /* 634b9ad928SBarry Smith This is very special for a matrix of the form alpha I + R + S 644b9ad928SBarry Smith where first preconditioner is built from alpha I + S and second from 654b9ad928SBarry Smith alpha I + R 664b9ad928SBarry Smith */ 674b9ad928SBarry Smith #undef __FUNCT__ 684b9ad928SBarry Smith #define __FUNCT__ "PCApply_Composite_Special" 696849ba73SBarry Smith static PetscErrorCode PCApply_Composite_Special(PC pc,Vec x,Vec y) 704b9ad928SBarry Smith { 71dfbe8321SBarry Smith PetscErrorCode ierr; 724b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 734b9ad928SBarry Smith PC_CompositeLink next = jac->head; 744b9ad928SBarry Smith 754b9ad928SBarry Smith PetscFunctionBegin; 76e7e72b3dSBarry Smith if (!next) SETERRQ(((PetscObject)pc)->comm,PETSC_ERR_ARG_WRONGSTATE,"No composite preconditioners supplied via PCCompositeAddPC() or -pc_composite_pcs"); 77e7e72b3dSBarry Smith if (!next->next || next->next->next) SETERRQ(((PetscObject)pc)->comm,PETSC_ERR_ARG_WRONGSTATE,"Special composite preconditioners requires exactly two PCs"); 784b9ad928SBarry Smith 79d8fd42c4SBarry Smith ierr = PCApply(next->pc,x,jac->work1);CHKERRQ(ierr); 80d8fd42c4SBarry Smith ierr = PCApply(next->next->pc,jac->work1,y);CHKERRQ(ierr); 814b9ad928SBarry Smith PetscFunctionReturn(0); 824b9ad928SBarry Smith } 834b9ad928SBarry Smith 844b9ad928SBarry Smith #undef __FUNCT__ 854b9ad928SBarry Smith #define __FUNCT__ "PCApply_Composite_Additive" 866849ba73SBarry Smith static PetscErrorCode PCApply_Composite_Additive(PC pc,Vec x,Vec y) 874b9ad928SBarry Smith { 88dfbe8321SBarry Smith PetscErrorCode ierr; 894b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 904b9ad928SBarry Smith PC_CompositeLink next = jac->head; 914b9ad928SBarry Smith 924b9ad928SBarry Smith PetscFunctionBegin; 93e7e72b3dSBarry Smith if (!next) SETERRQ(((PetscObject)pc)->comm,PETSC_ERR_ARG_WRONGSTATE,"No composite preconditioners supplied via PCCompositeAddPC() or -pc_composite_pcs"); 94d8fd42c4SBarry Smith ierr = PCApply(next->pc,x,y);CHKERRQ(ierr); 954b9ad928SBarry Smith while (next->next) { 964b9ad928SBarry Smith next = next->next; 9751f519a2SBarry Smith ierr = VecSet(jac->work1,0.0);CHKERRQ(ierr); /* zero since some PC's may not set all entries in the result */ 98d8fd42c4SBarry Smith ierr = PCApply(next->pc,x,jac->work1);CHKERRQ(ierr); 99efb30889SBarry Smith ierr = VecAXPY(y,1.0,jac->work1);CHKERRQ(ierr); 1004b9ad928SBarry Smith } 1014b9ad928SBarry Smith PetscFunctionReturn(0); 1024b9ad928SBarry Smith } 1034b9ad928SBarry Smith 1044b9ad928SBarry Smith #undef __FUNCT__ 1054b9ad928SBarry Smith #define __FUNCT__ "PCSetUp_Composite" 1066849ba73SBarry Smith static PetscErrorCode PCSetUp_Composite(PC pc) 1074b9ad928SBarry Smith { 108dfbe8321SBarry Smith PetscErrorCode ierr; 1094b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 1104b9ad928SBarry Smith PC_CompositeLink next = jac->head; 1114b9ad928SBarry Smith 1124b9ad928SBarry Smith PetscFunctionBegin; 1134b9ad928SBarry Smith if (!jac->work1) { 11423ce1328SBarry Smith ierr = MatGetVecs(pc->pmat,&jac->work1,0);CHKERRQ(ierr); 1154b9ad928SBarry Smith } 1164b9ad928SBarry Smith while (next) { 1174b9ad928SBarry Smith ierr = PCSetOperators(next->pc,pc->mat,pc->pmat,pc->flag);CHKERRQ(ierr); 1184b9ad928SBarry Smith next = next->next; 1194b9ad928SBarry Smith } 1204b9ad928SBarry Smith PetscFunctionReturn(0); 1214b9ad928SBarry Smith } 1224b9ad928SBarry Smith 1234b9ad928SBarry Smith #undef __FUNCT__ 12469d2c0f9SBarry Smith #define __FUNCT__ "PCReset_Composite" 12569d2c0f9SBarry Smith static PetscErrorCode PCReset_Composite(PC pc) 12669d2c0f9SBarry Smith { 12769d2c0f9SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 12869d2c0f9SBarry Smith PetscErrorCode ierr; 129*5f48b12bSBarry Smith PC_CompositeLink next = jac->head; 13069d2c0f9SBarry Smith 13169d2c0f9SBarry Smith PetscFunctionBegin; 13269d2c0f9SBarry Smith while (next) { 13369d2c0f9SBarry Smith ierr = PCReset(next->pc);CHKERRQ(ierr); 13469d2c0f9SBarry Smith next = next->next; 13569d2c0f9SBarry Smith } 13669d2c0f9SBarry Smith if (jac->work1) {ierr = VecDestroy(jac->work1);CHKERRQ(ierr);} 13769d2c0f9SBarry Smith if (jac->work2) {ierr = VecDestroy(jac->work2);CHKERRQ(ierr);} 13869d2c0f9SBarry Smith PetscFunctionReturn(0); 13969d2c0f9SBarry Smith } 14069d2c0f9SBarry Smith 14169d2c0f9SBarry Smith #undef __FUNCT__ 1424b9ad928SBarry Smith #define __FUNCT__ "PCDestroy_Composite" 1436849ba73SBarry Smith static PetscErrorCode PCDestroy_Composite(PC pc) 1444b9ad928SBarry Smith { 1454b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 146dfbe8321SBarry Smith PetscErrorCode ierr; 147724c2c99SHong Zhang PC_CompositeLink next = jac->head,next_tmp; 1484b9ad928SBarry Smith 1494b9ad928SBarry Smith PetscFunctionBegin; 15069d2c0f9SBarry Smith ierr = PCReset_Composite(pc);CHKERRQ(ierr); 1514b9ad928SBarry Smith while (next) { 1524b9ad928SBarry Smith ierr = PCDestroy(next->pc);CHKERRQ(ierr); 153724c2c99SHong Zhang next_tmp = next; 1544b9ad928SBarry Smith next = next->next; 155724c2c99SHong Zhang ierr = PetscFree(next_tmp);CHKERRQ(ierr); 1564b9ad928SBarry Smith } 157c31cb41cSBarry Smith ierr = PetscFree(pc->data);CHKERRQ(ierr); 1584b9ad928SBarry Smith PetscFunctionReturn(0); 1594b9ad928SBarry Smith } 1604b9ad928SBarry Smith 1614b9ad928SBarry Smith #undef __FUNCT__ 1624b9ad928SBarry Smith #define __FUNCT__ "PCSetFromOptions_Composite" 1636849ba73SBarry Smith static PetscErrorCode PCSetFromOptions_Composite(PC pc) 1644b9ad928SBarry Smith { 1654b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 166dfbe8321SBarry Smith PetscErrorCode ierr; 1679dcbbd2bSBarry Smith PetscInt nmax = 8,i; 1684b9ad928SBarry Smith PC_CompositeLink next; 169e5999256SBarry Smith char *pcs[8]; 170ace3abfcSBarry Smith PetscBool flg; 1714b9ad928SBarry Smith 1724b9ad928SBarry Smith PetscFunctionBegin; 1734b9ad928SBarry Smith ierr = PetscOptionsHead("Composite preconditioner options");CHKERRQ(ierr); 1749dcbbd2bSBarry Smith ierr = PetscOptionsEnum("-pc_composite_type","Type of composition","PCCompositeSetType",PCCompositeTypes,(PetscEnum)jac->type,(PetscEnum*)&jac->type,&flg);CHKERRQ(ierr); 17551f519a2SBarry Smith if (flg) { 17651f519a2SBarry Smith ierr = PCCompositeSetType(pc,jac->type);CHKERRQ(ierr); 17751f519a2SBarry Smith } 17890d69ab7SBarry Smith flg = PETSC_FALSE; 179acfcf0e5SJed Brown ierr = PetscOptionsBool("-pc_composite_true","Use true matrix for inner solves","PCCompositeSetUseTrue",flg,&flg,PETSC_NULL);CHKERRQ(ierr); 1804b9ad928SBarry Smith if (flg) { 1814b9ad928SBarry Smith ierr = PCCompositeSetUseTrue(pc);CHKERRQ(ierr); 1824b9ad928SBarry Smith } 1834b9ad928SBarry Smith ierr = PetscOptionsStringArray("-pc_composite_pcs","List of composite solvers","PCCompositeAddPC",pcs,&nmax,&flg);CHKERRQ(ierr); 1844b9ad928SBarry Smith if (flg) { 1854b9ad928SBarry Smith for (i=0; i<nmax; i++) { 1864b9ad928SBarry Smith ierr = PCCompositeAddPC(pc,pcs[i]);CHKERRQ(ierr); 187724c2c99SHong Zhang ierr = PetscFree(pcs[i]);CHKERRQ(ierr); /* deallocate string pcs[i], which is allocated in PetscOptionsStringArray() */ 1884b9ad928SBarry Smith } 1894b9ad928SBarry Smith } 1904b9ad928SBarry Smith ierr = PetscOptionsTail();CHKERRQ(ierr); 1914b9ad928SBarry Smith 1924b9ad928SBarry Smith next = jac->head; 1934b9ad928SBarry Smith while (next) { 1944b9ad928SBarry Smith ierr = PCSetFromOptions(next->pc);CHKERRQ(ierr); 1954b9ad928SBarry Smith next = next->next; 1964b9ad928SBarry Smith } 1974b9ad928SBarry Smith PetscFunctionReturn(0); 1984b9ad928SBarry Smith } 1994b9ad928SBarry Smith 2004b9ad928SBarry Smith #undef __FUNCT__ 2014b9ad928SBarry Smith #define __FUNCT__ "PCView_Composite" 2026849ba73SBarry Smith static PetscErrorCode PCView_Composite(PC pc,PetscViewer viewer) 2034b9ad928SBarry Smith { 2044b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 205dfbe8321SBarry Smith PetscErrorCode ierr; 2064b9ad928SBarry Smith PC_CompositeLink next = jac->head; 207ace3abfcSBarry Smith PetscBool iascii; 2084b9ad928SBarry Smith 2094b9ad928SBarry Smith PetscFunctionBegin; 2102692d6eeSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr); 21132077d6dSBarry Smith if (iascii) { 2129dcbbd2bSBarry Smith ierr = PetscViewerASCIIPrintf(viewer,"Composite PC type - %s\n",PCCompositeTypes[jac->type]);CHKERRQ(ierr); 2134b9ad928SBarry Smith ierr = PetscViewerASCIIPrintf(viewer,"PCs on composite preconditioner follow\n");CHKERRQ(ierr); 2144b9ad928SBarry Smith ierr = PetscViewerASCIIPrintf(viewer,"---------------------------------\n");CHKERRQ(ierr); 2154b9ad928SBarry Smith } else { 21665e19b50SBarry Smith SETERRQ1(((PetscObject)pc)->comm,PETSC_ERR_SUP,"Viewer type %s not supported for PCComposite",((PetscObject)viewer)->type_name); 2174b9ad928SBarry Smith } 21832077d6dSBarry Smith if (iascii) { 2194b9ad928SBarry Smith ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 2204b9ad928SBarry Smith } 2214b9ad928SBarry Smith while (next) { 2224b9ad928SBarry Smith ierr = PCView(next->pc,viewer);CHKERRQ(ierr); 2234b9ad928SBarry Smith next = next->next; 2244b9ad928SBarry Smith } 22532077d6dSBarry Smith if (iascii) { 2264b9ad928SBarry Smith ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 2274b9ad928SBarry Smith ierr = PetscViewerASCIIPrintf(viewer,"---------------------------------\n");CHKERRQ(ierr); 2284b9ad928SBarry Smith } 2294b9ad928SBarry Smith PetscFunctionReturn(0); 2304b9ad928SBarry Smith } 2314b9ad928SBarry Smith 2324b9ad928SBarry Smith /* ------------------------------------------------------------------------------*/ 2334b9ad928SBarry Smith 2344b9ad928SBarry Smith EXTERN_C_BEGIN 2354b9ad928SBarry Smith #undef __FUNCT__ 2364b9ad928SBarry Smith #define __FUNCT__ "PCCompositeSpecialSetAlpha_Composite" 2377087cfbeSBarry Smith PetscErrorCode PCCompositeSpecialSetAlpha_Composite(PC pc,PetscScalar alpha) 2384b9ad928SBarry Smith { 2394b9ad928SBarry Smith PC_Composite *jac = (PC_Composite*)pc->data; 2404b9ad928SBarry Smith PetscFunctionBegin; 2414b9ad928SBarry Smith jac->alpha = alpha; 2424b9ad928SBarry Smith PetscFunctionReturn(0); 2434b9ad928SBarry Smith } 2444b9ad928SBarry Smith EXTERN_C_END 2454b9ad928SBarry Smith 2464b9ad928SBarry Smith EXTERN_C_BEGIN 2474b9ad928SBarry Smith #undef __FUNCT__ 2484b9ad928SBarry Smith #define __FUNCT__ "PCCompositeSetType_Composite" 2497087cfbeSBarry Smith PetscErrorCode PCCompositeSetType_Composite(PC pc,PCCompositeType type) 2504b9ad928SBarry Smith { 2514b9ad928SBarry Smith PetscFunctionBegin; 2524b9ad928SBarry Smith if (type == PC_COMPOSITE_ADDITIVE) { 2534b9ad928SBarry Smith pc->ops->apply = PCApply_Composite_Additive; 254421e10b8SBarry Smith } else if (type == PC_COMPOSITE_MULTIPLICATIVE || type == PC_COMPOSITE_SYMMETRIC_MULTIPLICATIVE) { 2554b9ad928SBarry Smith pc->ops->apply = PCApply_Composite_Multiplicative; 2564b9ad928SBarry Smith } else if (type == PC_COMPOSITE_SPECIAL) { 2574b9ad928SBarry Smith pc->ops->apply = PCApply_Composite_Special; 258e7e72b3dSBarry Smith } else SETERRQ(((PetscObject)pc)->comm,PETSC_ERR_ARG_WRONG,"Unkown composite preconditioner type"); 2594b9ad928SBarry Smith PetscFunctionReturn(0); 2604b9ad928SBarry Smith } 2614b9ad928SBarry Smith EXTERN_C_END 2624b9ad928SBarry Smith 2634b9ad928SBarry Smith EXTERN_C_BEGIN 2644b9ad928SBarry Smith #undef __FUNCT__ 2654b9ad928SBarry Smith #define __FUNCT__ "PCCompositeAddPC_Composite" 2667087cfbeSBarry Smith PetscErrorCode PCCompositeAddPC_Composite(PC pc,PCType type) 2674b9ad928SBarry Smith { 2684b9ad928SBarry Smith PC_Composite *jac; 2695a9f2f41SSatish Balay PC_CompositeLink next,ilink; 270dfbe8321SBarry Smith PetscErrorCode ierr; 27179416396SBarry Smith PetscInt cnt = 0; 2722dcb1b2aSMatthew Knepley const char *prefix; 2732dcb1b2aSMatthew Knepley char newprefix[8]; 2744b9ad928SBarry Smith 2754b9ad928SBarry Smith PetscFunctionBegin; 27638f2d2fdSLisandro Dalcin ierr = PetscNewLog(pc,struct _PC_CompositeLink,&ilink);CHKERRQ(ierr); 2775a9f2f41SSatish Balay ilink->next = 0; 2787adad957SLisandro Dalcin ierr = PCCreate(((PetscObject)pc)->comm,&ilink->pc);CHKERRQ(ierr); 279ace3abfcSBarry Smith ierr = PetscLogObjectParent((PetscObject)pc,(PetscObject)ilink->pc);CHKERRQ(ierr); 2804b9ad928SBarry Smith 2814b9ad928SBarry Smith jac = (PC_Composite*)pc->data; 2824b9ad928SBarry Smith next = jac->head; 2834b9ad928SBarry Smith if (!next) { 2845a9f2f41SSatish Balay jac->head = ilink; 285421e10b8SBarry Smith ilink->previous = PETSC_NULL; 2864b9ad928SBarry Smith } else { 2874b9ad928SBarry Smith cnt++; 2884b9ad928SBarry Smith while (next->next) { 2894b9ad928SBarry Smith next = next->next; 2904b9ad928SBarry Smith cnt++; 2914b9ad928SBarry Smith } 2925a9f2f41SSatish Balay next->next = ilink; 293421e10b8SBarry Smith ilink->previous = next; 2944b9ad928SBarry Smith } 2954b9ad928SBarry Smith ierr = PCGetOptionsPrefix(pc,&prefix);CHKERRQ(ierr); 2965a9f2f41SSatish Balay ierr = PCSetOptionsPrefix(ilink->pc,prefix);CHKERRQ(ierr); 29713f74950SBarry Smith sprintf(newprefix,"sub_%d_",(int)cnt); 2985a9f2f41SSatish Balay ierr = PCAppendOptionsPrefix(ilink->pc,newprefix);CHKERRQ(ierr); 2994b9ad928SBarry Smith /* type is set after prefix, because some methods may modify prefix, e.g. pcksp */ 3005a9f2f41SSatish Balay ierr = PCSetType(ilink->pc,type);CHKERRQ(ierr); 3014b9ad928SBarry Smith PetscFunctionReturn(0); 3024b9ad928SBarry Smith } 3034b9ad928SBarry Smith EXTERN_C_END 3044b9ad928SBarry Smith 3054b9ad928SBarry Smith EXTERN_C_BEGIN 3064b9ad928SBarry Smith #undef __FUNCT__ 3074b9ad928SBarry Smith #define __FUNCT__ "PCCompositeGetPC_Composite" 3087087cfbeSBarry Smith PetscErrorCode PCCompositeGetPC_Composite(PC pc,PetscInt n,PC *subpc) 3094b9ad928SBarry Smith { 3104b9ad928SBarry Smith PC_Composite *jac; 3114b9ad928SBarry Smith PC_CompositeLink next; 31279416396SBarry Smith PetscInt i; 3134b9ad928SBarry Smith 3144b9ad928SBarry Smith PetscFunctionBegin; 3154b9ad928SBarry Smith jac = (PC_Composite*)pc->data; 3164b9ad928SBarry Smith next = jac->head; 3174b9ad928SBarry Smith for (i=0; i<n; i++) { 318e7e72b3dSBarry Smith if (!next->next) SETERRQ(((PetscObject)pc)->comm,PETSC_ERR_ARG_INCOMP,"Not enough PCs in composite preconditioner"); 3194b9ad928SBarry Smith next = next->next; 3204b9ad928SBarry Smith } 3214b9ad928SBarry Smith *subpc = next->pc; 3224b9ad928SBarry Smith PetscFunctionReturn(0); 3234b9ad928SBarry Smith } 3244b9ad928SBarry Smith EXTERN_C_END 3254b9ad928SBarry Smith 3264b9ad928SBarry Smith EXTERN_C_BEGIN 3274b9ad928SBarry Smith #undef __FUNCT__ 3284b9ad928SBarry Smith #define __FUNCT__ "PCCompositeSetUseTrue_Composite" 3297087cfbeSBarry Smith PetscErrorCode PCCompositeSetUseTrue_Composite(PC pc) 3304b9ad928SBarry Smith { 3314b9ad928SBarry Smith PC_Composite *jac; 3324b9ad928SBarry Smith 3334b9ad928SBarry Smith PetscFunctionBegin; 3344b9ad928SBarry Smith jac = (PC_Composite*)pc->data; 3354b9ad928SBarry Smith jac->use_true_matrix = PETSC_TRUE; 3364b9ad928SBarry Smith PetscFunctionReturn(0); 3374b9ad928SBarry Smith } 3384b9ad928SBarry Smith EXTERN_C_END 3394b9ad928SBarry Smith 3404b9ad928SBarry Smith /* -------------------------------------------------------------------------------- */ 3414b9ad928SBarry Smith #undef __FUNCT__ 3424b9ad928SBarry Smith #define __FUNCT__ "PCCompositeSetType" 343f39d8e23SSatish Balay /*@ 3444b9ad928SBarry Smith PCCompositeSetType - Sets the type of composite preconditioner. 3454b9ad928SBarry Smith 346ad4df100SBarry Smith Logically Collective on PC 3474b9ad928SBarry Smith 3484b9ad928SBarry Smith Input Parameter: 3492a6744ebSBarry Smith + pc - the preconditioner context 3502a6744ebSBarry Smith - type - PC_COMPOSITE_ADDITIVE (default), PC_COMPOSITE_MULTIPLICATIVE, PC_COMPOSITE_SPECIAL 3514b9ad928SBarry Smith 3524b9ad928SBarry Smith Options Database Key: 3534b9ad928SBarry Smith . -pc_composite_type <type: one of multiplicative, additive, special> - Sets composite preconditioner type 3544b9ad928SBarry Smith 3554b9ad928SBarry Smith Level: Developer 3564b9ad928SBarry Smith 3574b9ad928SBarry Smith .keywords: PC, set, type, composite preconditioner, additive, multiplicative 3584b9ad928SBarry Smith @*/ 3597087cfbeSBarry Smith PetscErrorCode PCCompositeSetType(PC pc,PCCompositeType type) 3604b9ad928SBarry Smith { 3617bb14e67SBarry Smith PetscErrorCode ierr; 3624b9ad928SBarry Smith 3634b9ad928SBarry Smith PetscFunctionBegin; 3640700a824SBarry Smith PetscValidHeaderSpecific(pc,PC_CLASSID,1); 365c5eb9154SBarry Smith PetscValidLogicalCollectiveEnum(pc,type,2); 3667bb14e67SBarry Smith ierr = PetscTryMethod(pc,"PCCompositeSetType_C",(PC,PCCompositeType),(pc,type));CHKERRQ(ierr); 3674b9ad928SBarry Smith PetscFunctionReturn(0); 3684b9ad928SBarry Smith } 3694b9ad928SBarry Smith 3704b9ad928SBarry Smith #undef __FUNCT__ 3714b9ad928SBarry Smith #define __FUNCT__ "PCCompositeSpecialSetAlpha" 372f39d8e23SSatish Balay /*@ 3734b9ad928SBarry Smith PCCompositeSpecialSetAlpha - Sets alpha for the special composite preconditioner 3744b9ad928SBarry Smith for alphaI + R + S 3754b9ad928SBarry Smith 376ad4df100SBarry Smith Logically Collective on PC 3774b9ad928SBarry Smith 3784b9ad928SBarry Smith Input Parameter: 3794b9ad928SBarry Smith + pc - the preconditioner context 3804b9ad928SBarry Smith - alpha - scale on identity 3814b9ad928SBarry Smith 3824b9ad928SBarry Smith Level: Developer 3834b9ad928SBarry Smith 3844b9ad928SBarry Smith .keywords: PC, set, type, composite preconditioner, additive, multiplicative 3854b9ad928SBarry Smith @*/ 3867087cfbeSBarry Smith PetscErrorCode PCCompositeSpecialSetAlpha(PC pc,PetscScalar alpha) 3874b9ad928SBarry Smith { 3884ac538c5SBarry Smith PetscErrorCode ierr; 3894b9ad928SBarry Smith 3904b9ad928SBarry Smith PetscFunctionBegin; 3910700a824SBarry Smith PetscValidHeaderSpecific(pc,PC_CLASSID,1); 392c5eb9154SBarry Smith PetscValidLogicalCollectiveScalar(pc,alpha,2); 3934ac538c5SBarry Smith ierr = PetscTryMethod(pc,"PCCompositeSpecialSetAlpha_C",(PC,PetscScalar),(pc,alpha));CHKERRQ(ierr); 3944b9ad928SBarry Smith PetscFunctionReturn(0); 3954b9ad928SBarry Smith } 3964b9ad928SBarry Smith 3974b9ad928SBarry Smith #undef __FUNCT__ 3984b9ad928SBarry Smith #define __FUNCT__ "PCCompositeAddPC" 3994b9ad928SBarry Smith /*@C 4004b9ad928SBarry Smith PCCompositeAddPC - Adds another PC to the composite PC. 4014b9ad928SBarry Smith 4024b9ad928SBarry Smith Collective on PC 4034b9ad928SBarry Smith 4044b9ad928SBarry Smith Input Parameters: 4052a6744ebSBarry Smith + pc - the preconditioner context 4062a6744ebSBarry Smith - type - the type of the new preconditioner 4074b9ad928SBarry Smith 4084b9ad928SBarry Smith Level: Developer 4094b9ad928SBarry Smith 4104b9ad928SBarry Smith .keywords: PC, composite preconditioner, add 4114b9ad928SBarry Smith @*/ 4127087cfbeSBarry Smith PetscErrorCode PCCompositeAddPC(PC pc,PCType type) 4134b9ad928SBarry Smith { 4144ac538c5SBarry Smith PetscErrorCode ierr; 4154b9ad928SBarry Smith 4164b9ad928SBarry Smith PetscFunctionBegin; 4170700a824SBarry Smith PetscValidHeaderSpecific(pc,PC_CLASSID,1); 4184ac538c5SBarry Smith ierr = PetscTryMethod(pc,"PCCompositeAddPC_C",(PC,PCType),(pc,type));CHKERRQ(ierr); 4194b9ad928SBarry Smith PetscFunctionReturn(0); 4204b9ad928SBarry Smith } 4214b9ad928SBarry Smith 4224b9ad928SBarry Smith #undef __FUNCT__ 4234b9ad928SBarry Smith #define __FUNCT__ "PCCompositeGetPC" 424f39d8e23SSatish Balay /*@ 4254b9ad928SBarry Smith PCCompositeGetPC - Gets one of the PC objects in the composite PC. 4264b9ad928SBarry Smith 4274b9ad928SBarry Smith Not Collective 4284b9ad928SBarry Smith 4294b9ad928SBarry Smith Input Parameter: 4302a6744ebSBarry Smith + pc - the preconditioner context 4312a6744ebSBarry Smith - n - the number of the pc requested 4324b9ad928SBarry Smith 4334b9ad928SBarry Smith Output Parameters: 4344b9ad928SBarry Smith . subpc - the PC requested 4354b9ad928SBarry Smith 4364b9ad928SBarry Smith Level: Developer 4374b9ad928SBarry Smith 4384b9ad928SBarry Smith .keywords: PC, get, composite preconditioner, sub preconditioner 4394b9ad928SBarry Smith 4404b9ad928SBarry Smith .seealso: PCCompositeAddPC() 4414b9ad928SBarry Smith @*/ 4427087cfbeSBarry Smith PetscErrorCode PCCompositeGetPC(PC pc,PetscInt n,PC *subpc) 4434b9ad928SBarry Smith { 4444ac538c5SBarry Smith PetscErrorCode ierr; 4454b9ad928SBarry Smith 4464b9ad928SBarry Smith PetscFunctionBegin; 4470700a824SBarry Smith PetscValidHeaderSpecific(pc,PC_CLASSID,1); 4484482741eSBarry Smith PetscValidPointer(subpc,3); 4494ac538c5SBarry Smith ierr = PetscUseMethod(pc,"PCCompositeGetPC_C",(PC,PetscInt,PC *),(pc,n,subpc));CHKERRQ(ierr); 4504b9ad928SBarry Smith PetscFunctionReturn(0); 4514b9ad928SBarry Smith } 4524b9ad928SBarry Smith 4534b9ad928SBarry Smith #undef __FUNCT__ 4544b9ad928SBarry Smith #define __FUNCT__ "PCCompositeSetUseTrue" 4554b9ad928SBarry Smith /*@ 4564b9ad928SBarry Smith PCCompositeSetUseTrue - Sets a flag to indicate that the true matrix (rather than 4574b9ad928SBarry Smith the matrix used to define the preconditioner) is used to compute 4584b9ad928SBarry Smith the residual when the multiplicative scheme is used. 4594b9ad928SBarry Smith 460ad4df100SBarry Smith Logically Collective on PC 4614b9ad928SBarry Smith 4624b9ad928SBarry Smith Input Parameters: 4634b9ad928SBarry Smith . pc - the preconditioner context 4644b9ad928SBarry Smith 4654b9ad928SBarry Smith Options Database Key: 4664b9ad928SBarry Smith . -pc_composite_true - Activates PCCompositeSetUseTrue() 4674b9ad928SBarry Smith 4684b9ad928SBarry Smith Note: 4694b9ad928SBarry Smith For the common case in which the preconditioning and linear 4704b9ad928SBarry Smith system matrices are identical, this routine is unnecessary. 4714b9ad928SBarry Smith 4724b9ad928SBarry Smith Level: Developer 4734b9ad928SBarry Smith 4744b9ad928SBarry Smith .keywords: PC, composite preconditioner, set, true, flag 4754b9ad928SBarry Smith 4764b9ad928SBarry Smith .seealso: PCSetOperators(), PCBJacobiSetUseTrueLocal(), PCKSPSetUseTrue() 4774b9ad928SBarry Smith @*/ 4787087cfbeSBarry Smith PetscErrorCode PCCompositeSetUseTrue(PC pc) 4794b9ad928SBarry Smith { 4804ac538c5SBarry Smith PetscErrorCode ierr; 4814b9ad928SBarry Smith 4824b9ad928SBarry Smith PetscFunctionBegin; 4830700a824SBarry Smith PetscValidHeaderSpecific(pc,PC_CLASSID,1); 4844ac538c5SBarry Smith ierr = PetscTryMethod(pc,"PCCompositeSetUseTrue_C",(PC),(pc));CHKERRQ(ierr); 4854b9ad928SBarry Smith PetscFunctionReturn(0); 4864b9ad928SBarry Smith } 4874b9ad928SBarry Smith 4884b9ad928SBarry Smith /* -------------------------------------------------------------------------------------------*/ 4894b9ad928SBarry Smith 4904b9ad928SBarry Smith /*MC 4914b9ad928SBarry Smith PCCOMPOSITE - Build a preconditioner by composing together several preconditioners 4924b9ad928SBarry Smith 4934b9ad928SBarry Smith Options Database Keys: 49451f519a2SBarry Smith + -pc_composite_type <type: one of multiplicative, additive, special> - Sets composite preconditioner type 4954b9ad928SBarry Smith . -pc_composite_true - Activates PCCompositeSetUseTrue() 49651f519a2SBarry Smith - -pc_composite_pcs - <pc0,pc1,...> list of PCs to compose 4974b9ad928SBarry Smith 4984b9ad928SBarry Smith Level: intermediate 4994b9ad928SBarry Smith 5004b9ad928SBarry Smith Concepts: composing solvers 5014b9ad928SBarry Smith 5024b9ad928SBarry Smith Notes: To use a Krylov method inside the composite preconditioner, set the PCType of one or more 5034b9ad928SBarry Smith inner PCs to be PCKSP. 5044b9ad928SBarry Smith Using a Krylov method inside another Krylov method can be dangerous (you get divergence or 50579416396SBarry Smith the incorrect answer) unless you use KSPFGMRES as the outter Krylov method 5064b9ad928SBarry Smith 5074b9ad928SBarry Smith 5084b9ad928SBarry Smith .seealso: PCCreate(), PCSetType(), PCType (for list of available types), PC, 5094b9ad928SBarry Smith PCSHELL, PCKSP, PCCompositeSetType(), PCCompositeSpecialSetAlpha(), PCCompositeAddPC(), 5104b9ad928SBarry Smith PCCompositeGetPC(), PCCompositeSetUseTrue() 5114b9ad928SBarry Smith 5124b9ad928SBarry Smith M*/ 5134b9ad928SBarry Smith 5144b9ad928SBarry Smith EXTERN_C_BEGIN 5154b9ad928SBarry Smith #undef __FUNCT__ 5164b9ad928SBarry Smith #define __FUNCT__ "PCCreate_Composite" 5177087cfbeSBarry Smith PetscErrorCode PCCreate_Composite(PC pc) 5184b9ad928SBarry Smith { 519dfbe8321SBarry Smith PetscErrorCode ierr; 5204b9ad928SBarry Smith PC_Composite *jac; 5214b9ad928SBarry Smith 5224b9ad928SBarry Smith PetscFunctionBegin; 52338f2d2fdSLisandro Dalcin ierr = PetscNewLog(pc,PC_Composite,&jac);CHKERRQ(ierr); 5244b9ad928SBarry Smith pc->ops->apply = PCApply_Composite_Additive; 5254b9ad928SBarry Smith pc->ops->setup = PCSetUp_Composite; 52669d2c0f9SBarry Smith pc->ops->reset = PCReset_Composite; 5274b9ad928SBarry Smith pc->ops->destroy = PCDestroy_Composite; 5284b9ad928SBarry Smith pc->ops->setfromoptions = PCSetFromOptions_Composite; 5294b9ad928SBarry Smith pc->ops->view = PCView_Composite; 5304b9ad928SBarry Smith pc->ops->applyrichardson = 0; 5314b9ad928SBarry Smith 5324b9ad928SBarry Smith pc->data = (void*)jac; 5334b9ad928SBarry Smith jac->type = PC_COMPOSITE_ADDITIVE; 5344b9ad928SBarry Smith jac->work1 = 0; 5354b9ad928SBarry Smith jac->work2 = 0; 5364b9ad928SBarry Smith jac->head = 0; 5374b9ad928SBarry Smith 5384b9ad928SBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)pc,"PCCompositeSetType_C","PCCompositeSetType_Composite", 5394b9ad928SBarry Smith PCCompositeSetType_Composite);CHKERRQ(ierr); 5404b9ad928SBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)pc,"PCCompositeAddPC_C","PCCompositeAddPC_Composite", 5414b9ad928SBarry Smith PCCompositeAddPC_Composite);CHKERRQ(ierr); 5424b9ad928SBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)pc,"PCCompositeGetPC_C","PCCompositeGetPC_Composite", 5434b9ad928SBarry Smith PCCompositeGetPC_Composite);CHKERRQ(ierr); 5444b9ad928SBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)pc,"PCCompositeSetUseTrue_C","PCCompositeSetUseTrue_Composite", 5454b9ad928SBarry Smith PCCompositeSetUseTrue_Composite);CHKERRQ(ierr); 5464b9ad928SBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)pc,"PCCompositeSpecialSetAlpha_C","PCCompositeSpecialSetAlpha_Composite", 5474b9ad928SBarry Smith PCCompositeSpecialSetAlpha_Composite);CHKERRQ(ierr); 5484b9ad928SBarry Smith 5494b9ad928SBarry Smith PetscFunctionReturn(0); 5504b9ad928SBarry Smith } 5514b9ad928SBarry Smith EXTERN_C_END 5524b9ad928SBarry Smith 553