1be1d678aSKris Buschelman #define PETSCMAT_DLL 2be1d678aSKris Buschelman 3bbf0e169SBarry Smith /* 4639f9d9dSBarry Smith This is where the abstract matrix operations are defined that are 5639f9d9dSBarry Smith used for finite difference computations of Jacobians using coloring. 6bbf0e169SBarry Smith */ 7bbf0e169SBarry Smith 8*7c4f633dSBarry Smith #include "private/matimpl.h" /*I "petscmat.h" I*/ 9bbf0e169SBarry Smith 104a2ae208SSatish Balay #undef __FUNCT__ 113a7fca6bSBarry Smith #define __FUNCT__ "MatFDColoringSetF" 12be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringSetF(MatFDColoring fd,Vec F) 133a7fca6bSBarry Smith { 143a7fca6bSBarry Smith PetscFunctionBegin; 153a7fca6bSBarry Smith fd->F = F; 163a7fca6bSBarry Smith PetscFunctionReturn(0); 173a7fca6bSBarry Smith } 183a7fca6bSBarry Smith 193a7fca6bSBarry Smith #undef __FUNCT__ 204a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringView_Draw_Zoom" 216849ba73SBarry Smith static PetscErrorCode MatFDColoringView_Draw_Zoom(PetscDraw draw,void *Aa) 229194eea9SBarry Smith { 239194eea9SBarry Smith MatFDColoring fd = (MatFDColoring)Aa; 24dfbe8321SBarry Smith PetscErrorCode ierr; 2538baddfdSBarry Smith PetscInt i,j; 269194eea9SBarry Smith PetscReal x,y; 279194eea9SBarry Smith 289194eea9SBarry Smith PetscFunctionBegin; 299194eea9SBarry Smith 309194eea9SBarry Smith /* loop over colors */ 319194eea9SBarry Smith for (i=0; i<fd->ncolors; i++) { 329194eea9SBarry Smith for (j=0; j<fd->nrows[i]; j++) { 339194eea9SBarry Smith y = fd->M - fd->rows[i][j] - fd->rstart; 349194eea9SBarry Smith x = fd->columnsforrow[i][j]; 35b0a32e0cSBarry Smith ierr = PetscDrawRectangle(draw,x,y,x+1,y+1,i+1,i+1,i+1,i+1);CHKERRQ(ierr); 369194eea9SBarry Smith } 379194eea9SBarry Smith } 389194eea9SBarry Smith PetscFunctionReturn(0); 399194eea9SBarry Smith } 409194eea9SBarry Smith 414a2ae208SSatish Balay #undef __FUNCT__ 424a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringView_Draw" 436849ba73SBarry Smith static PetscErrorCode MatFDColoringView_Draw(MatFDColoring fd,PetscViewer viewer) 44005c665bSBarry Smith { 45dfbe8321SBarry Smith PetscErrorCode ierr; 46005c665bSBarry Smith PetscTruth isnull; 47b0a32e0cSBarry Smith PetscDraw draw; 4854d96fa3SBarry Smith PetscReal xr,yr,xl,yl,h,w; 49005c665bSBarry Smith 503a40ed3dSBarry Smith PetscFunctionBegin; 51b0a32e0cSBarry Smith ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr); 52b0a32e0cSBarry Smith ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr); if (isnull) PetscFunctionReturn(0); 539194eea9SBarry Smith 549194eea9SBarry Smith ierr = PetscObjectCompose((PetscObject)fd,"Zoomviewer",(PetscObject)viewer);CHKERRQ(ierr); 55005c665bSBarry Smith 56005c665bSBarry Smith xr = fd->N; yr = fd->M; h = yr/10.0; w = xr/10.0; 57005c665bSBarry Smith xr += w; yr += h; xl = -w; yl = -h; 58b0a32e0cSBarry Smith ierr = PetscDrawSetCoordinates(draw,xl,yl,xr,yr);CHKERRQ(ierr); 59b0a32e0cSBarry Smith ierr = PetscDrawZoom(draw,MatFDColoringView_Draw_Zoom,fd);CHKERRQ(ierr); 609194eea9SBarry Smith ierr = PetscObjectCompose((PetscObject)fd,"Zoomviewer",PETSC_NULL);CHKERRQ(ierr); 613a40ed3dSBarry Smith PetscFunctionReturn(0); 62005c665bSBarry Smith } 63005c665bSBarry Smith 644a2ae208SSatish Balay #undef __FUNCT__ 654a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringView" 66bbf0e169SBarry Smith /*@C 67639f9d9dSBarry Smith MatFDColoringView - Views a finite difference coloring context. 68bbf0e169SBarry Smith 694c49b128SBarry Smith Collective on MatFDColoring 70fee21e36SBarry Smith 71ef5ee4d1SLois Curfman McInnes Input Parameters: 72ef5ee4d1SLois Curfman McInnes + c - the coloring context 73ef5ee4d1SLois Curfman McInnes - viewer - visualization context 74ef5ee4d1SLois Curfman McInnes 7515091d37SBarry Smith Level: intermediate 7615091d37SBarry Smith 77b4fc646aSLois Curfman McInnes Notes: 78b4fc646aSLois Curfman McInnes The available visualization contexts include 79b0a32e0cSBarry Smith + PETSC_VIEWER_STDOUT_SELF - standard output (default) 80b0a32e0cSBarry Smith . PETSC_VIEWER_STDOUT_WORLD - synchronized standard 81ef5ee4d1SLois Curfman McInnes output where only the first processor opens 82ef5ee4d1SLois Curfman McInnes the file. All other processors send their 83ef5ee4d1SLois Curfman McInnes data to the first processor to print. 84b0a32e0cSBarry Smith - PETSC_VIEWER_DRAW_WORLD - graphical display of nonzero structure 85bbf0e169SBarry Smith 869194eea9SBarry Smith Notes: 879194eea9SBarry Smith Since PETSc uses only a small number of basic colors (currently 33), if the coloring 88b0a32e0cSBarry Smith involves more than 33 then some seemingly identical colors are displayed making it look 899194eea9SBarry Smith like an illegal coloring. This is just a graphical artifact. 909194eea9SBarry Smith 91639f9d9dSBarry Smith .seealso: MatFDColoringCreate() 92005c665bSBarry Smith 93b4fc646aSLois Curfman McInnes .keywords: Mat, finite differences, coloring, view 94bbf0e169SBarry Smith @*/ 95be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringView(MatFDColoring c,PetscViewer viewer) 96bbf0e169SBarry Smith { 976849ba73SBarry Smith PetscErrorCode ierr; 9838baddfdSBarry Smith PetscInt i,j; 9932077d6dSBarry Smith PetscTruth isdraw,iascii; 100f3ef73ceSBarry Smith PetscViewerFormat format; 101bbf0e169SBarry Smith 1023a40ed3dSBarry Smith PetscFunctionBegin; 1034482741eSBarry Smith PetscValidHeaderSpecific(c,MAT_FDCOLORING_COOKIE,1); 1043050cee2SBarry Smith if (!viewer) { 1057adad957SLisandro Dalcin ierr = PetscViewerASCIIGetStdout(((PetscObject)c)->comm,&viewer);CHKERRQ(ierr); 1063050cee2SBarry Smith } 1074482741eSBarry Smith PetscValidHeaderSpecific(viewer,PETSC_VIEWER_COOKIE,2); 108c9780b6fSBarry Smith PetscCheckSameComm(c,1,viewer,2); 109bbf0e169SBarry Smith 110fb9695e5SSatish Balay ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_DRAW,&isdraw);CHKERRQ(ierr); 11132077d6dSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&iascii);CHKERRQ(ierr); 1120f5bd95cSBarry Smith if (isdraw) { 113b4fc646aSLois Curfman McInnes ierr = MatFDColoringView_Draw(c,viewer);CHKERRQ(ierr); 11432077d6dSBarry Smith } else if (iascii) { 115b0a32e0cSBarry Smith ierr = PetscViewerASCIIPrintf(viewer,"MatFDColoring Object:\n");CHKERRQ(ierr); 116a83599f4SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Error tolerance=%G\n",c->error_rel);CHKERRQ(ierr); 117a83599f4SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Umin=%G\n",c->umin);CHKERRQ(ierr); 11877431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Number of colors=%D\n",c->ncolors);CHKERRQ(ierr); 119ae09f205SBarry Smith 120b0a32e0cSBarry Smith ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr); 121fb9695e5SSatish Balay if (format != PETSC_VIEWER_ASCII_INFO) { 122b4fc646aSLois Curfman McInnes for (i=0; i<c->ncolors; i++) { 12377431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Information for color %D\n",i);CHKERRQ(ierr); 12477431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Number of columns %D\n",c->ncolumns[i]);CHKERRQ(ierr); 125b4fc646aSLois Curfman McInnes for (j=0; j<c->ncolumns[i]; j++) { 12677431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," %D\n",c->columns[i][j]);CHKERRQ(ierr); 127639f9d9dSBarry Smith } 12877431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," Number of rows %D\n",c->nrows[i]);CHKERRQ(ierr); 129b4fc646aSLois Curfman McInnes for (j=0; j<c->nrows[i]; j++) { 13077431f27SBarry Smith ierr = PetscViewerASCIIPrintf(viewer," %D %D \n",c->rows[i][j],c->columnsforrow[i][j]);CHKERRQ(ierr); 131b4fc646aSLois Curfman McInnes } 132bbf0e169SBarry Smith } 133bbf0e169SBarry Smith } 134b0a32e0cSBarry Smith ierr = PetscViewerFlush(viewer);CHKERRQ(ierr); 1355cd90555SBarry Smith } else { 13679a5c55eSBarry Smith SETERRQ1(PETSC_ERR_SUP,"Viewer type %s not supported for MatFDColoring",((PetscObject)viewer)->type_name); 137bbf0e169SBarry Smith } 1383a40ed3dSBarry Smith PetscFunctionReturn(0); 139639f9d9dSBarry Smith } 140639f9d9dSBarry Smith 1414a2ae208SSatish Balay #undef __FUNCT__ 1424a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringSetParameters" 143639f9d9dSBarry Smith /*@ 144b4fc646aSLois Curfman McInnes MatFDColoringSetParameters - Sets the parameters for the sparse approximation of 145b4fc646aSLois Curfman McInnes a Jacobian matrix using finite differences. 146639f9d9dSBarry Smith 147ef5ee4d1SLois Curfman McInnes Collective on MatFDColoring 148ef5ee4d1SLois Curfman McInnes 149ef5ee4d1SLois Curfman McInnes The Jacobian is estimated with the differencing approximation 150ef5ee4d1SLois Curfman McInnes .vb 15165f2ba5bSLois Curfman McInnes F'(u)_{:,i} = [F(u+h*dx_{i}) - F(u)]/h where 152f23b5b22SLois Curfman McInnes h = error_rel*u[i] if abs(u[i]) > umin 153f23b5b22SLois Curfman McInnes = +/- error_rel*umin otherwise, with +/- determined by the sign of u[i] 154ef5ee4d1SLois Curfman McInnes dx_{i} = (0, ... 1, .... 0) 155ef5ee4d1SLois Curfman McInnes .ve 156639f9d9dSBarry Smith 157639f9d9dSBarry Smith Input Parameters: 158ef5ee4d1SLois Curfman McInnes + coloring - the coloring context 159639f9d9dSBarry Smith . error_rel - relative error 160f23b5b22SLois Curfman McInnes - umin - minimum allowable u-value magnitude 161fee21e36SBarry Smith 16215091d37SBarry Smith Level: advanced 16315091d37SBarry Smith 164b4fc646aSLois Curfman McInnes .keywords: Mat, finite differences, coloring, set, parameters 165b4fc646aSLois Curfman McInnes 166b4fc646aSLois Curfman McInnes .seealso: MatFDColoringCreate() 167639f9d9dSBarry Smith @*/ 168be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringSetParameters(MatFDColoring matfd,PetscReal error,PetscReal umin) 169639f9d9dSBarry Smith { 1703a40ed3dSBarry Smith PetscFunctionBegin; 1714482741eSBarry Smith PetscValidHeaderSpecific(matfd,MAT_FDCOLORING_COOKIE,1); 172639f9d9dSBarry Smith 173639f9d9dSBarry Smith if (error != PETSC_DEFAULT) matfd->error_rel = error; 174639f9d9dSBarry Smith if (umin != PETSC_DEFAULT) matfd->umin = umin; 1753a40ed3dSBarry Smith PetscFunctionReturn(0); 176639f9d9dSBarry Smith } 177639f9d9dSBarry Smith 178005c665bSBarry Smith 179ff0cfa39SBarry Smith 1804a2ae208SSatish Balay #undef __FUNCT__ 1814a9d489dSBarry Smith #define __FUNCT__ "MatFDColoringGetFunction" 1824a9d489dSBarry Smith /*@C 1834a9d489dSBarry Smith MatFDColoringGetFunction - Gets the function to use for computing the Jacobian. 1844a9d489dSBarry Smith 1854a9d489dSBarry Smith Collective on MatFDColoring 1864a9d489dSBarry Smith 1874a9d489dSBarry Smith Input Parameters: 1884a9d489dSBarry Smith . coloring - the coloring context 1894a9d489dSBarry Smith 1904a9d489dSBarry Smith Output Parameters: 1914a9d489dSBarry Smith + f - the function 1924a9d489dSBarry Smith - fctx - the optional user-defined function context 1934a9d489dSBarry Smith 1944a9d489dSBarry Smith Level: intermediate 1954a9d489dSBarry Smith 1964a9d489dSBarry Smith .keywords: Mat, Jacobian, finite differences, set, function 1974a9d489dSBarry Smith @*/ 1984a9d489dSBarry Smith PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringGetFunction(MatFDColoring matfd,PetscErrorCode (**f)(void),void **fctx) 1994a9d489dSBarry Smith { 2004a9d489dSBarry Smith PetscFunctionBegin; 2014a9d489dSBarry Smith PetscValidHeaderSpecific(matfd,MAT_FDCOLORING_COOKIE,1); 2024a9d489dSBarry Smith if (f) *f = matfd->f; 2034a9d489dSBarry Smith if (fctx) *fctx = matfd->fctx; 2044a9d489dSBarry Smith PetscFunctionReturn(0); 2054a9d489dSBarry Smith } 2064a9d489dSBarry Smith 2074a9d489dSBarry Smith #undef __FUNCT__ 2084a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringSetFunction" 209d64ed03dSBarry Smith /*@C 210005c665bSBarry Smith MatFDColoringSetFunction - Sets the function to use for computing the Jacobian. 211005c665bSBarry Smith 212fee21e36SBarry Smith Collective on MatFDColoring 213fee21e36SBarry Smith 214ef5ee4d1SLois Curfman McInnes Input Parameters: 215ef5ee4d1SLois Curfman McInnes + coloring - the coloring context 216ef5ee4d1SLois Curfman McInnes . f - the function 217ef5ee4d1SLois Curfman McInnes - fctx - the optional user-defined function context 218ef5ee4d1SLois Curfman McInnes 2197850c7c0SBarry Smith Calling sequence of (*f) function: 2207850c7c0SBarry Smith For SNES: PetscErrorCode (*f)(SNES,Vec,Vec,void*) 2217850c7c0SBarry Smith For TS: PetscErrorCode (*f)(TS,PetscReal,Vec,Vec,void*) 2227850c7c0SBarry Smith If not using SNES or TS: PetscErrorCode (*f)(void *dummy,Vec,Vec,void*) and dummy is ignored 22315091d37SBarry Smith 2247850c7c0SBarry Smith Level: advanced 2257850c7c0SBarry Smith 2267850c7c0SBarry Smith Notes: This function is usually used automatically by SNES or TS (when one uses SNESSetJacobian() with the argument 2277850c7c0SBarry Smith SNESDefaultComputeJacobianColor() or TSSetRHSJacobian() with the argument TSDefaultComputeJacobianColor()) and only needs to be used 2287850c7c0SBarry Smith by someone computing a matrix via coloring directly by calling MatFDColoringApply() 2297850c7c0SBarry Smith 2307850c7c0SBarry Smith Fortran Notes: 2317850c7c0SBarry Smith In Fortran you must call MatFDColoringSetFunction() for a coloring object to 2327850c7c0SBarry Smith be used without SNES or TS or within the SNES solvers and MatFDColoringSetFunctionTS() if it is to be used 2337850c7c0SBarry Smith within the TS solvers. 234f881d145SBarry Smith 235b4fc646aSLois Curfman McInnes .keywords: Mat, Jacobian, finite differences, set, function 236005c665bSBarry Smith @*/ 237be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringSetFunction(MatFDColoring matfd,PetscErrorCode (*f)(void),void *fctx) 238005c665bSBarry Smith { 2393a40ed3dSBarry Smith PetscFunctionBegin; 2404482741eSBarry Smith PetscValidHeaderSpecific(matfd,MAT_FDCOLORING_COOKIE,1); 241005c665bSBarry Smith matfd->f = f; 242005c665bSBarry Smith matfd->fctx = fctx; 2433a40ed3dSBarry Smith PetscFunctionReturn(0); 244005c665bSBarry Smith } 245005c665bSBarry Smith 2464a2ae208SSatish Balay #undef __FUNCT__ 2474a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringSetFromOptions" 248639f9d9dSBarry Smith /*@ 249b4fc646aSLois Curfman McInnes MatFDColoringSetFromOptions - Sets coloring finite difference parameters from 250639f9d9dSBarry Smith the options database. 251639f9d9dSBarry Smith 252fee21e36SBarry Smith Collective on MatFDColoring 253fee21e36SBarry Smith 25465f2ba5bSLois Curfman McInnes The Jacobian, F'(u), is estimated with the differencing approximation 255ef5ee4d1SLois Curfman McInnes .vb 25665f2ba5bSLois Curfman McInnes F'(u)_{:,i} = [F(u+h*dx_{i}) - F(u)]/h where 257f23b5b22SLois Curfman McInnes h = error_rel*u[i] if abs(u[i]) > umin 258f23b5b22SLois Curfman McInnes = +/- error_rel*umin otherwise, with +/- determined by the sign of u[i] 259ef5ee4d1SLois Curfman McInnes dx_{i} = (0, ... 1, .... 0) 260ef5ee4d1SLois Curfman McInnes .ve 261ef5ee4d1SLois Curfman McInnes 262ef5ee4d1SLois Curfman McInnes Input Parameter: 263ef5ee4d1SLois Curfman McInnes . coloring - the coloring context 264ef5ee4d1SLois Curfman McInnes 265b4fc646aSLois Curfman McInnes Options Database Keys: 266d15ffeeaSSatish Balay + -mat_fd_coloring_err <err> - Sets <err> (square root 267ef5ee4d1SLois Curfman McInnes of relative error in the function) 268f23b5b22SLois Curfman McInnes . -mat_fd_coloring_umin <umin> - Sets umin, the minimum allowable u-value magnitude 2693ec795f1SBarry Smith . -mat_fd_type - "wp" or "ds" (see MATMFFD_WP or MATMFFD_DS) 270ef5ee4d1SLois Curfman McInnes . -mat_fd_coloring_view - Activates basic viewing 271ef5ee4d1SLois Curfman McInnes . -mat_fd_coloring_view_info - Activates viewing info 272ef5ee4d1SLois Curfman McInnes - -mat_fd_coloring_view_draw - Activates drawing 273639f9d9dSBarry Smith 27415091d37SBarry Smith Level: intermediate 27515091d37SBarry Smith 276b4fc646aSLois Curfman McInnes .keywords: Mat, finite differences, parameters 277d1c39f55SBarry Smith 278d1c39f55SBarry Smith .seealso: MatFDColoringCreate(), MatFDColoringView(), MatFDColoringSetParameters() 279d1c39f55SBarry Smith 280639f9d9dSBarry Smith @*/ 281be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringSetFromOptions(MatFDColoring matfd) 282639f9d9dSBarry Smith { 283dfbe8321SBarry Smith PetscErrorCode ierr; 284efb30889SBarry Smith PetscTruth flg; 285efb30889SBarry Smith char value[3]; 2863a40ed3dSBarry Smith 2873a40ed3dSBarry Smith PetscFunctionBegin; 2884482741eSBarry Smith PetscValidHeaderSpecific(matfd,MAT_FDCOLORING_COOKIE,1); 289639f9d9dSBarry Smith 2907adad957SLisandro Dalcin ierr = PetscOptionsBegin(((PetscObject)matfd)->comm,((PetscObject)matfd)->prefix,"Jacobian computation via finite differences option","MatFD");CHKERRQ(ierr); 29187828ca2SBarry Smith ierr = PetscOptionsReal("-mat_fd_coloring_err","Square root of relative error in function","MatFDColoringSetParameters",matfd->error_rel,&matfd->error_rel,0);CHKERRQ(ierr); 29287828ca2SBarry Smith ierr = PetscOptionsReal("-mat_fd_coloring_umin","Minimum allowable u magnitude","MatFDColoringSetParameters",matfd->umin,&matfd->umin,0);CHKERRQ(ierr); 293efb30889SBarry Smith ierr = PetscOptionsString("-mat_fd_type","Algorithm to compute h, wp or ds","MatFDColoringCreate",matfd->htype,value,2,&flg);CHKERRQ(ierr); 294efb30889SBarry Smith if (flg) { 295efb30889SBarry Smith if (value[0] == 'w' && value[1] == 'p') matfd->htype = "wp"; 296efb30889SBarry Smith else if (value[0] == 'd' && value[1] == 's') matfd->htype = "ds"; 297efb30889SBarry Smith else SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Unknown finite differencing type %s",value); 298efb30889SBarry Smith } 299186905e3SBarry Smith /* not used here; but so they are presented in the GUI */ 300b0a32e0cSBarry Smith ierr = PetscOptionsName("-mat_fd_coloring_view","Print entire datastructure used for Jacobian","None",0);CHKERRQ(ierr); 301b0a32e0cSBarry Smith ierr = PetscOptionsName("-mat_fd_coloring_view_info","Print number of colors etc for Jacobian","None",0);CHKERRQ(ierr); 302b0a32e0cSBarry Smith ierr = PetscOptionsName("-mat_fd_coloring_view_draw","Plot nonzero structure ofJacobian","None",0);CHKERRQ(ierr); 303b0a32e0cSBarry Smith PetscOptionsEnd();CHKERRQ(ierr); 3043a40ed3dSBarry Smith PetscFunctionReturn(0); 305005c665bSBarry Smith } 306005c665bSBarry Smith 3074a2ae208SSatish Balay #undef __FUNCT__ 3084a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringView_Private" 309dfbe8321SBarry Smith PetscErrorCode MatFDColoringView_Private(MatFDColoring fd) 310005c665bSBarry Smith { 311dfbe8321SBarry Smith PetscErrorCode ierr; 312f1af5d2fSBarry Smith PetscTruth flg; 3133050cee2SBarry Smith PetscViewer viewer; 314005c665bSBarry Smith 3153a40ed3dSBarry Smith PetscFunctionBegin; 3167adad957SLisandro Dalcin ierr = PetscViewerASCIIGetStdout(((PetscObject)fd)->comm,&viewer);CHKERRQ(ierr); 317b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_fd_coloring_view",&flg);CHKERRQ(ierr); 318005c665bSBarry Smith if (flg) { 3193050cee2SBarry Smith ierr = MatFDColoringView(fd,viewer);CHKERRQ(ierr); 320005c665bSBarry Smith } 321b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_fd_coloring_view_info",&flg);CHKERRQ(ierr); 322ae09f205SBarry Smith if (flg) { 3233050cee2SBarry Smith ierr = PetscViewerPushFormat(viewer,PETSC_VIEWER_ASCII_INFO);CHKERRQ(ierr); 3243050cee2SBarry Smith ierr = MatFDColoringView(fd,viewer);CHKERRQ(ierr); 3253050cee2SBarry Smith ierr = PetscViewerPopFormat(viewer);CHKERRQ(ierr); 326ae09f205SBarry Smith } 327b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_fd_coloring_view_draw",&flg);CHKERRQ(ierr); 328005c665bSBarry Smith if (flg) { 3297adad957SLisandro Dalcin ierr = MatFDColoringView(fd,PETSC_VIEWER_DRAW_(((PetscObject)fd)->comm));CHKERRQ(ierr); 3307adad957SLisandro Dalcin ierr = PetscViewerFlush(PETSC_VIEWER_DRAW_(((PetscObject)fd)->comm));CHKERRQ(ierr); 331005c665bSBarry Smith } 3323a40ed3dSBarry Smith PetscFunctionReturn(0); 333bbf0e169SBarry Smith } 334bbf0e169SBarry Smith 3354a2ae208SSatish Balay #undef __FUNCT__ 3364a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringCreate" 33705869f15SSatish Balay /*@ 338639f9d9dSBarry Smith MatFDColoringCreate - Creates a matrix coloring context for finite difference 339639f9d9dSBarry Smith computation of Jacobians. 340bbf0e169SBarry Smith 341ef5ee4d1SLois Curfman McInnes Collective on Mat 342ef5ee4d1SLois Curfman McInnes 343639f9d9dSBarry Smith Input Parameters: 344ef5ee4d1SLois Curfman McInnes + mat - the matrix containing the nonzero structure of the Jacobian 345ef5ee4d1SLois Curfman McInnes - iscoloring - the coloring of the matrix 346bbf0e169SBarry Smith 347bbf0e169SBarry Smith Output Parameter: 348639f9d9dSBarry Smith . color - the new coloring context 349bbf0e169SBarry Smith 35015091d37SBarry Smith Level: intermediate 35115091d37SBarry Smith 3526831982aSBarry Smith .seealso: MatFDColoringDestroy(),SNESDefaultComputeJacobianColor(), ISColoringCreate(), 353d1c39f55SBarry Smith MatFDColoringSetFunction(), MatFDColoringSetFromOptions(), MatFDColoringApply(), 354ebd3b9afSBarry Smith MatFDColoringView(), MatFDColoringSetParameters() 355bbf0e169SBarry Smith @*/ 356be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringCreate(Mat mat,ISColoring iscoloring,MatFDColoring *color) 357bbf0e169SBarry Smith { 358639f9d9dSBarry Smith MatFDColoring c; 359639f9d9dSBarry Smith MPI_Comm comm; 360dfbe8321SBarry Smith PetscErrorCode ierr; 36138baddfdSBarry Smith PetscInt M,N; 362b8f8c88eSHong Zhang PetscMPIInt size; 363639f9d9dSBarry Smith 3643a40ed3dSBarry Smith PetscFunctionBegin; 365d5ba7fb7SMatthew Knepley ierr = PetscLogEventBegin(MAT_FDColoringCreate,mat,0,0,0);CHKERRQ(ierr); 366639f9d9dSBarry Smith ierr = MatGetSize(mat,&M,&N);CHKERRQ(ierr); 36729bbc08cSBarry Smith if (M != N) SETERRQ(PETSC_ERR_SUP,"Only for square matrices"); 368639f9d9dSBarry Smith 369f881d145SBarry Smith ierr = PetscObjectGetComm((PetscObject)mat,&comm);CHKERRQ(ierr); 37052e6d16bSBarry Smith ierr = PetscHeaderCreate(c,_p_MatFDColoring,int,MAT_FDCOLORING_COOKIE,0,"MatFDColoring",comm,MatFDColoringDestroy,MatFDColoringView);CHKERRQ(ierr); 371639f9d9dSBarry Smith 372b8f8c88eSHong Zhang ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); 373b8f8c88eSHong Zhang c->ctype = iscoloring->ctype; 374b8f8c88eSHong Zhang 375f830108cSBarry Smith if (mat->ops->fdcoloringcreate) { 376f830108cSBarry Smith ierr = (*mat->ops->fdcoloringcreate)(mat,iscoloring,c);CHKERRQ(ierr); 377639f9d9dSBarry Smith } else { 37829bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"Code not yet written for this matrix type"); 379639f9d9dSBarry Smith } 380639f9d9dSBarry Smith 381b8f8c88eSHong Zhang ierr = MatGetVecs(mat,PETSC_NULL,&c->w1);CHKERRQ(ierr); 382b8f8c88eSHong Zhang ierr = PetscLogObjectParent(c,c->w1);CHKERRQ(ierr); 383b8f8c88eSHong Zhang ierr = VecDuplicate(c->w1,&c->w2);CHKERRQ(ierr); 384b8f8c88eSHong Zhang ierr = PetscLogObjectParent(c,c->w2);CHKERRQ(ierr); 385b8f8c88eSHong Zhang 38677d8c4bbSBarry Smith c->error_rel = PETSC_SQRT_MACHINE_EPSILON; 38777d8c4bbSBarry Smith c->umin = 100.0*PETSC_SQRT_MACHINE_EPSILON; 38849b058dcSBarry Smith c->currentcolor = -1; 389efb30889SBarry Smith c->htype = "wp"; 390639f9d9dSBarry Smith 391639f9d9dSBarry Smith *color = c; 392d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(MAT_FDColoringCreate,mat,0,0,0);CHKERRQ(ierr); 3933a40ed3dSBarry Smith PetscFunctionReturn(0); 394bbf0e169SBarry Smith } 395bbf0e169SBarry Smith 3964a2ae208SSatish Balay #undef __FUNCT__ 3974a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringDestroy" 39805869f15SSatish Balay /*@ 399639f9d9dSBarry Smith MatFDColoringDestroy - Destroys a matrix coloring context that was created 400639f9d9dSBarry Smith via MatFDColoringCreate(). 401bbf0e169SBarry Smith 402ef5ee4d1SLois Curfman McInnes Collective on MatFDColoring 403ef5ee4d1SLois Curfman McInnes 404b4fc646aSLois Curfman McInnes Input Parameter: 405639f9d9dSBarry Smith . c - coloring context 406bbf0e169SBarry Smith 40715091d37SBarry Smith Level: intermediate 40815091d37SBarry Smith 409639f9d9dSBarry Smith .seealso: MatFDColoringCreate() 410bbf0e169SBarry Smith @*/ 411be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringDestroy(MatFDColoring c) 412bbf0e169SBarry Smith { 4136849ba73SBarry Smith PetscErrorCode ierr; 41438baddfdSBarry Smith PetscInt i; 415bbf0e169SBarry Smith 4163a40ed3dSBarry Smith PetscFunctionBegin; 4177adad957SLisandro Dalcin if (--((PetscObject)c)->refct > 0) PetscFunctionReturn(0); 418d4bb536fSBarry Smith 419639f9d9dSBarry Smith for (i=0; i<c->ncolors; i++) { 42005b42c5fSBarry Smith ierr = PetscFree(c->columns[i]);CHKERRQ(ierr); 42105b42c5fSBarry Smith ierr = PetscFree(c->rows[i]);CHKERRQ(ierr); 42205b42c5fSBarry Smith ierr = PetscFree(c->columnsforrow[i]);CHKERRQ(ierr); 42305b42c5fSBarry Smith if (c->vscaleforrow) {ierr = PetscFree(c->vscaleforrow[i]);CHKERRQ(ierr);} 424bbf0e169SBarry Smith } 425606d414cSSatish Balay ierr = PetscFree(c->ncolumns);CHKERRQ(ierr); 426606d414cSSatish Balay ierr = PetscFree(c->columns);CHKERRQ(ierr); 427606d414cSSatish Balay ierr = PetscFree(c->nrows);CHKERRQ(ierr); 428606d414cSSatish Balay ierr = PetscFree(c->rows);CHKERRQ(ierr); 429606d414cSSatish Balay ierr = PetscFree(c->columnsforrow);CHKERRQ(ierr); 43005b42c5fSBarry Smith ierr = PetscFree(c->vscaleforrow);CHKERRQ(ierr); 4314f113abfSBarry Smith if (c->vscale) {ierr = VecDestroy(c->vscale);CHKERRQ(ierr);} 432005c665bSBarry Smith if (c->w1) { 433005c665bSBarry Smith ierr = VecDestroy(c->w1);CHKERRQ(ierr); 434005c665bSBarry Smith ierr = VecDestroy(c->w2);CHKERRQ(ierr); 435b8f8c88eSHong Zhang } 436b8f8c88eSHong Zhang if (c->w3){ 437005c665bSBarry Smith ierr = VecDestroy(c->w3);CHKERRQ(ierr); 438005c665bSBarry Smith } 439d38fa0fbSBarry Smith ierr = PetscHeaderDestroy(c);CHKERRQ(ierr); 4403a40ed3dSBarry Smith PetscFunctionReturn(0); 441bbf0e169SBarry Smith } 44243a90d84SBarry Smith 4434a2ae208SSatish Balay #undef __FUNCT__ 44449b058dcSBarry Smith #define __FUNCT__ "MatFDColoringGetPerturbedColumns" 44549b058dcSBarry Smith /*@C 44649b058dcSBarry Smith MatFDColoringGetPerturbedColumns - Returns the indices of the columns that 44749b058dcSBarry Smith that are currently being perturbed. 44849b058dcSBarry Smith 44949b058dcSBarry Smith Not Collective 45049b058dcSBarry Smith 45149b058dcSBarry Smith Input Parameters: 45249b058dcSBarry Smith . coloring - coloring context created with MatFDColoringCreate() 45349b058dcSBarry Smith 45449b058dcSBarry Smith Output Parameters: 45549b058dcSBarry Smith + n - the number of local columns being perturbed 45649b058dcSBarry Smith - cols - the column indices, in global numbering 45749b058dcSBarry Smith 45849b058dcSBarry Smith Level: intermediate 45949b058dcSBarry Smith 46049b058dcSBarry Smith .seealso: MatFDColoringCreate(), MatFDColoringDestroy(), MatFDColoringView(), MatFDColoringApply() 46149b058dcSBarry Smith 46249b058dcSBarry Smith .keywords: coloring, Jacobian, finite differences 46349b058dcSBarry Smith @*/ 464be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringGetPerturbedColumns(MatFDColoring coloring,PetscInt *n,PetscInt *cols[]) 46549b058dcSBarry Smith { 46649b058dcSBarry Smith PetscFunctionBegin; 46749b058dcSBarry Smith if (coloring->currentcolor >= 0) { 46849b058dcSBarry Smith *n = coloring->ncolumns[coloring->currentcolor]; 46949b058dcSBarry Smith *cols = coloring->columns[coloring->currentcolor]; 47049b058dcSBarry Smith } else { 47149b058dcSBarry Smith *n = 0; 47249b058dcSBarry Smith } 47349b058dcSBarry Smith PetscFunctionReturn(0); 47449b058dcSBarry Smith } 47549b058dcSBarry Smith 476b8f8c88eSHong Zhang #include "petscda.h" /*I "petscda.h" I*/ 477b8f8c88eSHong Zhang 47849b058dcSBarry Smith #undef __FUNCT__ 4794a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringApply" 48043a90d84SBarry Smith /*@ 481e0907662SLois Curfman McInnes MatFDColoringApply - Given a matrix for which a MatFDColoring context 482e0907662SLois Curfman McInnes has been created, computes the Jacobian for a function via finite differences. 48343a90d84SBarry Smith 484fee21e36SBarry Smith Collective on MatFDColoring 485fee21e36SBarry Smith 486ef5ee4d1SLois Curfman McInnes Input Parameters: 487ef5ee4d1SLois Curfman McInnes + mat - location to store Jacobian 488ef5ee4d1SLois Curfman McInnes . coloring - coloring context created with MatFDColoringCreate() 489ef5ee4d1SLois Curfman McInnes . x1 - location at which Jacobian is to be computed 4907850c7c0SBarry Smith - sctx - context required by function, if this is being used with the SNES solver then it is SNES object, otherwise it is null 491ef5ee4d1SLois Curfman McInnes 4928bba8e72SBarry Smith Options Database Keys: 493ebd3b9afSBarry Smith + -mat_fd_type - "wp" or "ds" (see MATMFFD_WP or MATMFFD_DS) 494b9722508SLois Curfman McInnes . -mat_fd_coloring_view - Activates basic viewing or coloring 495b9722508SLois Curfman McInnes . -mat_fd_coloring_view_draw - Activates drawing of coloring 496b9722508SLois Curfman McInnes - -mat_fd_coloring_view_info - Activates viewing of coloring info 4978bba8e72SBarry Smith 49815091d37SBarry Smith Level: intermediate 49915091d37SBarry Smith 5007850c7c0SBarry Smith .seealso: MatFDColoringCreate(), MatFDColoringDestroy(), MatFDColoringView(), MatFDColoringSetFunction() 50143a90d84SBarry Smith 50243a90d84SBarry Smith .keywords: coloring, Jacobian, finite differences 50343a90d84SBarry Smith @*/ 504be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringApply(Mat J,MatFDColoring coloring,Vec x1,MatStructure *flag,void *sctx) 50543a90d84SBarry Smith { 5066849ba73SBarry Smith PetscErrorCode (*f)(void*,Vec,Vec,void*) = (PetscErrorCode (*)(void*,Vec,Vec,void *))coloring->f; 5076849ba73SBarry Smith PetscErrorCode ierr; 508b8f8c88eSHong Zhang PetscInt k,start,end,l,row,col,srow,**vscaleforrow,m1,m2; 509efb30889SBarry Smith PetscScalar dx,*y,*xx,*w3_array; 510ea709b57SSatish Balay PetscScalar *vscale_array; 511efb30889SBarry Smith PetscReal epsilon = coloring->error_rel,umin = coloring->umin,unorm; 512b8f8c88eSHong Zhang Vec w1=coloring->w1,w2=coloring->w2,w3; 513005c665bSBarry Smith void *fctx = coloring->fctx; 514f1af5d2fSBarry Smith PetscTruth flg; 515705d48f7SSatish Balay PetscInt ctype=coloring->ctype,N,col_start=0,col_end=0; 516b8f8c88eSHong Zhang Vec x1_tmp; 517a2e34c3dSBarry Smith 5183a40ed3dSBarry Smith PetscFunctionBegin; 5194482741eSBarry Smith PetscValidHeaderSpecific(J,MAT_COOKIE,1); 5204482741eSBarry Smith PetscValidHeaderSpecific(coloring,MAT_FDCOLORING_COOKIE,2); 5214482741eSBarry Smith PetscValidHeaderSpecific(x1,VEC_COOKIE,3); 522feba9168SBarry Smith if (!f) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Must call MatFDColoringSetFunction()"); 523e0907662SLois Curfman McInnes 524d5ba7fb7SMatthew Knepley ierr = PetscLogEventBegin(MAT_FDColoringApply,coloring,J,x1,0);CHKERRQ(ierr); 5254c49b128SBarry Smith ierr = MatSetUnfactored(J);CHKERRQ(ierr); 526b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_fd_coloring_dont_rezero",&flg);CHKERRQ(ierr); 527f1af5d2fSBarry Smith if (flg) { 528ae15b995SBarry Smith ierr = PetscInfo(coloring,"Not calling MatZeroEntries()\n");CHKERRQ(ierr); 529e0907662SLois Curfman McInnes } else { 5300b9b6f31SBarry Smith PetscTruth assembled; 5310b9b6f31SBarry Smith ierr = MatAssembled(J,&assembled);CHKERRQ(ierr); 5320b9b6f31SBarry Smith if (assembled) { 53343a90d84SBarry Smith ierr = MatZeroEntries(J);CHKERRQ(ierr); 534e0907662SLois Curfman McInnes } 5350b9b6f31SBarry Smith } 53643a90d84SBarry Smith 537b8f8c88eSHong Zhang x1_tmp = x1; 538dac7f5fdSBarry Smith if (!coloring->vscale){ 539b8f8c88eSHong Zhang ierr = VecDuplicate(x1_tmp,&coloring->vscale);CHKERRQ(ierr); 540b8f8c88eSHong Zhang } 541be2fbe1fSBarry Smith 5423a7fca6bSBarry Smith /* 5433a7fca6bSBarry Smith This is a horrible, horrible, hack. See DMMGComputeJacobian_Multigrid() it inproperly sets 5443a7fca6bSBarry Smith coloring->F for the coarser grids from the finest 5453a7fca6bSBarry Smith */ 5463a7fca6bSBarry Smith if (coloring->F) { 5473a7fca6bSBarry Smith ierr = VecGetLocalSize(coloring->F,&m1);CHKERRQ(ierr); 5483a7fca6bSBarry Smith ierr = VecGetLocalSize(w1,&m2);CHKERRQ(ierr); 5493a7fca6bSBarry Smith if (m1 != m2) { 5503a7fca6bSBarry Smith coloring->F = 0; 5513a7fca6bSBarry Smith } 5523a7fca6bSBarry Smith } 5533a7fca6bSBarry Smith 554b8f8c88eSHong Zhang if (coloring->htype[0] == 'w') { /* tacky test; need to make systematic if we add other approaches to computing h*/ 555b8f8c88eSHong Zhang ierr = VecNorm(x1_tmp,NORM_2,&unorm);CHKERRQ(ierr); 556b8f8c88eSHong Zhang } 557b8f8c88eSHong Zhang ierr = VecGetOwnershipRange(w1,&start,&end);CHKERRQ(ierr); /* OwnershipRange is used by ghosted x! */ 558b8f8c88eSHong Zhang 559b8f8c88eSHong Zhang /* Set w1 = F(x1) */ 560be2fbe1fSBarry Smith if (coloring->F) { 561be2fbe1fSBarry Smith w1 = coloring->F; /* use already computed value of function */ 562be2fbe1fSBarry Smith coloring->F = 0; 563be2fbe1fSBarry Smith } else { 56466f9b7ceSBarry Smith ierr = PetscLogEventBegin(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 565b8f8c88eSHong Zhang ierr = (*f)(sctx,x1_tmp,w1,fctx);CHKERRQ(ierr); 56666f9b7ceSBarry Smith ierr = PetscLogEventEnd(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 567be2fbe1fSBarry Smith } 56843a90d84SBarry Smith 569b8f8c88eSHong Zhang if (!coloring->w3) { 570b8f8c88eSHong Zhang ierr = VecDuplicate(x1_tmp,&coloring->w3);CHKERRQ(ierr); 571b8f8c88eSHong Zhang ierr = PetscLogObjectParent(coloring,coloring->w3);CHKERRQ(ierr); 572efb30889SBarry Smith } 573b8f8c88eSHong Zhang w3 = coloring->w3; 574efb30889SBarry Smith 575b8f8c88eSHong Zhang /* Compute all the local scale factors, including ghost points */ 576b8f8c88eSHong Zhang ierr = VecGetLocalSize(x1_tmp,&N);CHKERRQ(ierr); 577b8f8c88eSHong Zhang ierr = VecGetArray(x1_tmp,&xx);CHKERRQ(ierr); 578b8f8c88eSHong Zhang ierr = VecGetArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 579b8f8c88eSHong Zhang if (ctype == IS_COLORING_GHOSTED){ 580b8f8c88eSHong Zhang col_start = 0; col_end = N; 5818ee2e534SBarry Smith } else if (ctype == IS_COLORING_GLOBAL){ 582b8f8c88eSHong Zhang xx = xx - start; 583b8f8c88eSHong Zhang vscale_array = vscale_array - start; 584b8f8c88eSHong Zhang col_start = start; col_end = N + start; 585b8f8c88eSHong Zhang } 586b8f8c88eSHong Zhang for (col=col_start; col<col_end; col++){ 587b8f8c88eSHong Zhang /* Loop over each local column, vscale[col] = 1./(epsilon*dx[col]) */ 588efb30889SBarry Smith if (coloring->htype[0] == 'w') { 589efb30889SBarry Smith dx = 1.0 + unorm; 590efb30889SBarry Smith } else { 5919782cf98SBarry Smith dx = xx[col]; 592efb30889SBarry Smith } 5935b8514ebSBarry Smith if (dx == 0.0) dx = 1.0; 5949782cf98SBarry Smith #if !defined(PETSC_USE_COMPLEX) 5959782cf98SBarry Smith if (dx < umin && dx >= 0.0) dx = umin; 5969782cf98SBarry Smith else if (dx < 0.0 && dx > -umin) dx = -umin; 5979782cf98SBarry Smith #else 5989782cf98SBarry Smith if (PetscAbsScalar(dx) < umin && PetscRealPart(dx) >= 0.0) dx = umin; 5999782cf98SBarry Smith else if (PetscRealPart(dx) < 0.0 && PetscAbsScalar(dx) < umin) dx = -umin; 6009782cf98SBarry Smith #endif 6019782cf98SBarry Smith dx *= epsilon; 60230b34957SBarry Smith vscale_array[col] = 1.0/dx; 6039782cf98SBarry Smith } 6048ee2e534SBarry Smith if (ctype == IS_COLORING_GLOBAL) vscale_array = vscale_array + start; 605efb30889SBarry Smith ierr = VecRestoreArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 6068ee2e534SBarry Smith if (ctype == IS_COLORING_GLOBAL){ 60730b34957SBarry Smith ierr = VecGhostUpdateBegin(coloring->vscale,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 60830b34957SBarry Smith ierr = VecGhostUpdateEnd(coloring->vscale,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 609b8f8c88eSHong Zhang } 6109782cf98SBarry Smith 611b8f8c88eSHong Zhang if (coloring->vscaleforrow) { 612b8f8c88eSHong Zhang vscaleforrow = coloring->vscaleforrow; 613b8f8c88eSHong Zhang } else { 614b8f8c88eSHong Zhang SETERRQ(PETSC_ERR_ARG_NULL,"Null Object: coloring->vscaleforrow"); 615b8f8c88eSHong Zhang } 616b0a32e0cSBarry Smith 6179782cf98SBarry Smith /* 61843a90d84SBarry Smith Loop over each color 61943a90d84SBarry Smith */ 620b8f8c88eSHong Zhang ierr = VecGetArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 62143a90d84SBarry Smith for (k=0; k<coloring->ncolors; k++) { 62249b058dcSBarry Smith coloring->currentcolor = k; 623b8f8c88eSHong Zhang ierr = VecCopy(x1_tmp,w3);CHKERRQ(ierr); 624b8f8c88eSHong Zhang ierr = VecGetArray(w3,&w3_array);CHKERRQ(ierr); 6258ee2e534SBarry Smith if (ctype == IS_COLORING_GLOBAL) w3_array = w3_array - start; 62643a90d84SBarry Smith /* 627b8f8c88eSHong Zhang Loop over each column associated with color 628b8f8c88eSHong Zhang adding the perturbation to the vector w3. 62943a90d84SBarry Smith */ 63043a90d84SBarry Smith for (l=0; l<coloring->ncolumns[k]; l++) { 631b8f8c88eSHong Zhang col = coloring->columns[k][l]; /* local column of the matrix we are probing for */ 632efb30889SBarry Smith if (coloring->htype[0] == 'w') { 633efb30889SBarry Smith dx = 1.0 + unorm; 634efb30889SBarry Smith } else { 63542460c72SBarry Smith dx = xx[col]; 636efb30889SBarry Smith } 6375b8514ebSBarry Smith if (dx == 0.0) dx = 1.0; 638aa482453SBarry Smith #if !defined(PETSC_USE_COMPLEX) 639ae09f205SBarry Smith if (dx < umin && dx >= 0.0) dx = umin; 640ae09f205SBarry Smith else if (dx < 0.0 && dx > -umin) dx = -umin; 64143a90d84SBarry Smith #else 642329f5518SBarry Smith if (PetscAbsScalar(dx) < umin && PetscRealPart(dx) >= 0.0) dx = umin; 643329f5518SBarry Smith else if (PetscRealPart(dx) < 0.0 && PetscAbsScalar(dx) < umin) dx = -umin; 64443a90d84SBarry Smith #endif 64543a90d84SBarry Smith dx *= epsilon; 6461302d50aSBarry Smith if (!PetscAbsScalar(dx)) SETERRQ(PETSC_ERR_PLIB,"Computed 0 differencing parameter"); 64742460c72SBarry Smith w3_array[col] += dx; 64843a90d84SBarry Smith } 6498ee2e534SBarry Smith if (ctype == IS_COLORING_GLOBAL) w3_array = w3_array + start; 650b8f8c88eSHong Zhang ierr = VecRestoreArray(w3,&w3_array);CHKERRQ(ierr); 6513b28642cSBarry Smith 65243a90d84SBarry Smith /* 653b8f8c88eSHong Zhang Evaluate function at w3 = x1 + dx (here dx is a vector of perturbations) 654b8f8c88eSHong Zhang w2 = F(x1 + dx) - F(x1) 65543a90d84SBarry Smith */ 65666f9b7ceSBarry Smith ierr = PetscLogEventBegin(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 65743a90d84SBarry Smith ierr = (*f)(sctx,w3,w2,fctx);CHKERRQ(ierr); 65866f9b7ceSBarry Smith ierr = PetscLogEventEnd(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 659efb30889SBarry Smith ierr = VecAXPY(w2,-1.0,w1);CHKERRQ(ierr); 6609782cf98SBarry Smith 66143a90d84SBarry Smith /* 662e0907662SLois Curfman McInnes Loop over rows of vector, putting results into Jacobian matrix 66343a90d84SBarry Smith */ 6643b28642cSBarry Smith ierr = VecGetArray(w2,&y);CHKERRQ(ierr); 66543a90d84SBarry Smith for (l=0; l<coloring->nrows[k]; l++) { 666b8f8c88eSHong Zhang row = coloring->rows[k][l]; /* local row index */ 667b8f8c88eSHong Zhang col = coloring->columnsforrow[k][l]; /* global column index */ 6685904e1b1SBarry Smith y[row] *= vscale_array[vscaleforrow[k][l]]; 66943a90d84SBarry Smith srow = row + start; 67043a90d84SBarry Smith ierr = MatSetValues(J,1,&srow,1,&col,y+row,INSERT_VALUES);CHKERRQ(ierr); 67143a90d84SBarry Smith } 6723b28642cSBarry Smith ierr = VecRestoreArray(w2,&y);CHKERRQ(ierr); 673aeb7e98aSMatthew Knepley } /* endof for each color */ 6748ee2e534SBarry Smith if (ctype == IS_COLORING_GLOBAL) xx = xx + start; 67530b34957SBarry Smith ierr = VecRestoreArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 676b8f8c88eSHong Zhang ierr = VecRestoreArray(x1_tmp,&xx);CHKERRQ(ierr); 677b8f8c88eSHong Zhang 678b8f8c88eSHong Zhang coloring->currentcolor = -1; 67943a90d84SBarry Smith ierr = MatAssemblyBegin(J,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 68043a90d84SBarry Smith ierr = MatAssemblyEnd(J,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 681d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(MAT_FDColoringApply,coloring,J,x1,0);CHKERRQ(ierr); 682a2e34c3dSBarry Smith 683b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_null_space_test",&flg);CHKERRQ(ierr); 684a2e34c3dSBarry Smith if (flg) { 68595902228SMatthew Knepley ierr = MatNullSpaceTest(J->nullsp,J,PETSC_NULL);CHKERRQ(ierr); 686a2e34c3dSBarry Smith } 687b9722508SLois Curfman McInnes ierr = MatFDColoringView_Private(coloring);CHKERRQ(ierr); 6883a40ed3dSBarry Smith PetscFunctionReturn(0); 68943a90d84SBarry Smith } 690840b8ebdSBarry Smith 6914a2ae208SSatish Balay #undef __FUNCT__ 6924a2ae208SSatish Balay #define __FUNCT__ "MatFDColoringApplyTS" 693840b8ebdSBarry Smith /*@ 694840b8ebdSBarry Smith MatFDColoringApplyTS - Given a matrix for which a MatFDColoring context 695840b8ebdSBarry Smith has been created, computes the Jacobian for a function via finite differences. 696840b8ebdSBarry Smith 697fee21e36SBarry Smith Collective on Mat, MatFDColoring, and Vec 698fee21e36SBarry Smith 699ef5ee4d1SLois Curfman McInnes Input Parameters: 7003b28642cSBarry Smith + mat - location to store Jacobian 701ef5ee4d1SLois Curfman McInnes . coloring - coloring context created with MatFDColoringCreate() 702ef5ee4d1SLois Curfman McInnes . x1 - location at which Jacobian is to be computed 7037850c7c0SBarry Smith - sctx - context required by function, if this is being used with the TS solver then it is TS object, otherwise it is null 704ef5ee4d1SLois Curfman McInnes 70515091d37SBarry Smith Level: intermediate 70615091d37SBarry Smith 7077850c7c0SBarry Smith .seealso: MatFDColoringCreate(), MatFDColoringDestroy(), MatFDColoringView(), MatFDColoringSetFunction() 708840b8ebdSBarry Smith 709840b8ebdSBarry Smith .keywords: coloring, Jacobian, finite differences 710840b8ebdSBarry Smith @*/ 711be1d678aSKris Buschelman PetscErrorCode PETSCMAT_DLLEXPORT MatFDColoringApplyTS(Mat J,MatFDColoring coloring,PetscReal t,Vec x1,MatStructure *flag,void *sctx) 712840b8ebdSBarry Smith { 7136849ba73SBarry Smith PetscErrorCode (*f)(void*,PetscReal,Vec,Vec,void*)=(PetscErrorCode (*)(void*,PetscReal,Vec,Vec,void *))coloring->f; 7146849ba73SBarry Smith PetscErrorCode ierr; 71538baddfdSBarry Smith PetscInt k,N,start,end,l,row,col,srow,**vscaleforrow; 716efb30889SBarry Smith PetscScalar dx,*y,*xx,*w3_array; 717ea709b57SSatish Balay PetscScalar *vscale_array; 718329f5518SBarry Smith PetscReal epsilon = coloring->error_rel,umin = coloring->umin; 719ced766e8SHong Zhang Vec w1=coloring->w1,w2=coloring->w2,w3; 720840b8ebdSBarry Smith void *fctx = coloring->fctx; 721f1af5d2fSBarry Smith PetscTruth flg; 722840b8ebdSBarry Smith 7233a40ed3dSBarry Smith PetscFunctionBegin; 7244482741eSBarry Smith PetscValidHeaderSpecific(J,MAT_COOKIE,1); 7254482741eSBarry Smith PetscValidHeaderSpecific(coloring,MAT_FDCOLORING_COOKIE,2); 7264482741eSBarry Smith PetscValidHeaderSpecific(x1,VEC_COOKIE,4); 727840b8ebdSBarry Smith 728d5ba7fb7SMatthew Knepley ierr = PetscLogEventBegin(MAT_FDColoringApply,coloring,J,x1,0);CHKERRQ(ierr); 729ced766e8SHong Zhang if (!coloring->w3) { 730840b8ebdSBarry Smith ierr = VecDuplicate(x1,&coloring->w3);CHKERRQ(ierr); 73152e6d16bSBarry Smith ierr = PetscLogObjectParent(coloring,coloring->w3);CHKERRQ(ierr); 732840b8ebdSBarry Smith } 733ced766e8SHong Zhang w3 = coloring->w3; 734840b8ebdSBarry Smith 7355904e1b1SBarry Smith ierr = MatSetUnfactored(J);CHKERRQ(ierr); 736b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_fd_coloring_dont_rezero",&flg);CHKERRQ(ierr); 737f1af5d2fSBarry Smith if (flg) { 738ae15b995SBarry Smith ierr = PetscInfo(coloring,"Not calling MatZeroEntries()\n");CHKERRQ(ierr); 739840b8ebdSBarry Smith } else { 7400b9b6f31SBarry Smith PetscTruth assembled; 7410b9b6f31SBarry Smith ierr = MatAssembled(J,&assembled);CHKERRQ(ierr); 7420b9b6f31SBarry Smith if (assembled) { 743840b8ebdSBarry Smith ierr = MatZeroEntries(J);CHKERRQ(ierr); 744840b8ebdSBarry Smith } 7450b9b6f31SBarry Smith } 746840b8ebdSBarry Smith 747840b8ebdSBarry Smith ierr = VecGetOwnershipRange(x1,&start,&end);CHKERRQ(ierr); 748840b8ebdSBarry Smith ierr = VecGetSize(x1,&N);CHKERRQ(ierr); 74966f9b7ceSBarry Smith ierr = PetscLogEventBegin(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 750840b8ebdSBarry Smith ierr = (*f)(sctx,t,x1,w1,fctx);CHKERRQ(ierr); 75166f9b7ceSBarry Smith ierr = PetscLogEventEnd(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 752840b8ebdSBarry Smith 753840b8ebdSBarry Smith /* 7545904e1b1SBarry Smith Compute all the scale factors and share with other processors 755840b8ebdSBarry Smith */ 7565904e1b1SBarry Smith ierr = VecGetArray(x1,&xx);CHKERRQ(ierr);xx = xx - start; 7575904e1b1SBarry Smith ierr = VecGetArray(coloring->vscale,&vscale_array);CHKERRQ(ierr);vscale_array = vscale_array - start; 758840b8ebdSBarry Smith for (k=0; k<coloring->ncolors; k++) { 759840b8ebdSBarry Smith /* 760840b8ebdSBarry Smith Loop over each column associated with color adding the 761840b8ebdSBarry Smith perturbation to the vector w3. 762840b8ebdSBarry Smith */ 763840b8ebdSBarry Smith for (l=0; l<coloring->ncolumns[k]; l++) { 764840b8ebdSBarry Smith col = coloring->columns[k][l]; /* column of the matrix we are probing for */ 7655904e1b1SBarry Smith dx = xx[col]; 7665b8514ebSBarry Smith if (dx == 0.0) dx = 1.0; 767aa482453SBarry Smith #if !defined(PETSC_USE_COMPLEX) 768840b8ebdSBarry Smith if (dx < umin && dx >= 0.0) dx = umin; 769840b8ebdSBarry Smith else if (dx < 0.0 && dx > -umin) dx = -umin; 770840b8ebdSBarry Smith #else 771329f5518SBarry Smith if (PetscAbsScalar(dx) < umin && PetscRealPart(dx) >= 0.0) dx = umin; 772329f5518SBarry Smith else if (PetscRealPart(dx) < 0.0 && PetscAbsScalar(dx) < umin) dx = -umin; 773840b8ebdSBarry Smith #endif 774840b8ebdSBarry Smith dx *= epsilon; 7755904e1b1SBarry Smith vscale_array[col] = 1.0/dx; 776840b8ebdSBarry Smith } 7775904e1b1SBarry Smith } 7785904e1b1SBarry Smith vscale_array = vscale_array - start;ierr = VecRestoreArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 7795904e1b1SBarry Smith ierr = VecGhostUpdateBegin(coloring->vscale,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 7805904e1b1SBarry Smith ierr = VecGhostUpdateEnd(coloring->vscale,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 7815904e1b1SBarry Smith 7825904e1b1SBarry Smith if (coloring->vscaleforrow) vscaleforrow = coloring->vscaleforrow; 7835904e1b1SBarry Smith else vscaleforrow = coloring->columnsforrow; 7845904e1b1SBarry Smith 7855904e1b1SBarry Smith ierr = VecGetArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 7865904e1b1SBarry Smith /* 7875904e1b1SBarry Smith Loop over each color 7885904e1b1SBarry Smith */ 7895904e1b1SBarry Smith for (k=0; k<coloring->ncolors; k++) { 7905904e1b1SBarry Smith ierr = VecCopy(x1,w3);CHKERRQ(ierr); 7915904e1b1SBarry Smith ierr = VecGetArray(w3,&w3_array);CHKERRQ(ierr);w3_array = w3_array - start; 7925904e1b1SBarry Smith /* 7935904e1b1SBarry Smith Loop over each column associated with color adding the 7945904e1b1SBarry Smith perturbation to the vector w3. 7955904e1b1SBarry Smith */ 7965904e1b1SBarry Smith for (l=0; l<coloring->ncolumns[k]; l++) { 7975904e1b1SBarry Smith col = coloring->columns[k][l]; /* column of the matrix we are probing for */ 7985904e1b1SBarry Smith dx = xx[col]; 7995b8514ebSBarry Smith if (dx == 0.0) dx = 1.0; 8005904e1b1SBarry Smith #if !defined(PETSC_USE_COMPLEX) 8015904e1b1SBarry Smith if (dx < umin && dx >= 0.0) dx = umin; 8025904e1b1SBarry Smith else if (dx < 0.0 && dx > -umin) dx = -umin; 8035904e1b1SBarry Smith #else 8045904e1b1SBarry Smith if (PetscAbsScalar(dx) < umin && PetscRealPart(dx) >= 0.0) dx = umin; 8055904e1b1SBarry Smith else if (PetscRealPart(dx) < 0.0 && PetscAbsScalar(dx) < umin) dx = -umin; 8065904e1b1SBarry Smith #endif 8075904e1b1SBarry Smith dx *= epsilon; 8085904e1b1SBarry Smith w3_array[col] += dx; 8095904e1b1SBarry Smith } 8105904e1b1SBarry Smith w3_array = w3_array + start; ierr = VecRestoreArray(w3,&w3_array);CHKERRQ(ierr); 8115904e1b1SBarry Smith 812840b8ebdSBarry Smith /* 813840b8ebdSBarry Smith Evaluate function at x1 + dx (here dx is a vector of perturbations) 814840b8ebdSBarry Smith */ 81566f9b7ceSBarry Smith ierr = PetscLogEventBegin(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 816840b8ebdSBarry Smith ierr = (*f)(sctx,t,w3,w2,fctx);CHKERRQ(ierr); 81766f9b7ceSBarry Smith ierr = PetscLogEventEnd(MAT_FDColoringFunction,0,0,0,0);CHKERRQ(ierr); 818efb30889SBarry Smith ierr = VecAXPY(w2,-1.0,w1);CHKERRQ(ierr); 8195904e1b1SBarry Smith 820840b8ebdSBarry Smith /* 821840b8ebdSBarry Smith Loop over rows of vector, putting results into Jacobian matrix 822840b8ebdSBarry Smith */ 8233b28642cSBarry Smith ierr = VecGetArray(w2,&y);CHKERRQ(ierr); 824840b8ebdSBarry Smith for (l=0; l<coloring->nrows[k]; l++) { 825840b8ebdSBarry Smith row = coloring->rows[k][l]; 826840b8ebdSBarry Smith col = coloring->columnsforrow[k][l]; 8275904e1b1SBarry Smith y[row] *= vscale_array[vscaleforrow[k][l]]; 828840b8ebdSBarry Smith srow = row + start; 829840b8ebdSBarry Smith ierr = MatSetValues(J,1,&srow,1,&col,y+row,INSERT_VALUES);CHKERRQ(ierr); 830840b8ebdSBarry Smith } 8313b28642cSBarry Smith ierr = VecRestoreArray(w2,&y);CHKERRQ(ierr); 832840b8ebdSBarry Smith } 8335904e1b1SBarry Smith ierr = VecRestoreArray(coloring->vscale,&vscale_array);CHKERRQ(ierr); 8345904e1b1SBarry Smith xx = xx + start; ierr = VecRestoreArray(x1,&xx);CHKERRQ(ierr); 835840b8ebdSBarry Smith ierr = MatAssemblyBegin(J,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 836840b8ebdSBarry Smith ierr = MatAssemblyEnd(J,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 837d5ba7fb7SMatthew Knepley ierr = PetscLogEventEnd(MAT_FDColoringApply,coloring,J,x1,0);CHKERRQ(ierr); 8383a40ed3dSBarry Smith PetscFunctionReturn(0); 839840b8ebdSBarry Smith } 8403b28642cSBarry Smith 8413b28642cSBarry Smith 8423b28642cSBarry Smith 843