Actual source code: pinit.c

petsc-3.8.4 2018-03-24
Report Typos and Errors

  2: /*
  3:    This file defines the initialization of PETSc, including PetscInitialize()
  4: */
  5:  #include <petsc/private/petscimpl.h>
  6:  #include <petscvalgrind.h>
  7:  #include <petscviewer.h>

  9: #if defined(PETSC_USE_LOG)
 10: extern PetscErrorCode PetscLogInitialize(void);
 11: #endif

 13: #if defined(PETSC_SERIALIZE_FUNCTIONS)
 14: PetscFPT PetscFPTData = 0;
 15: #endif

 17: #if defined(PETSC_HAVE_CUDA)
 18: cublasHandle_t cublasv2handle = NULL;
 19: #endif

 21: #if defined(PETSC_HAVE_SAWS)
 22:  #include <petscviewersaws.h>
 23: #endif
 24: /* -----------------------------------------------------------------------------------------*/

 26: extern FILE *petsc_history;

 28: extern PetscErrorCode PetscInitialize_DynamicLibraries(void);
 29: extern PetscErrorCode PetscFinalize_DynamicLibraries(void);
 30: extern PetscErrorCode PetscFunctionListPrintAll(void);
 31: extern PetscErrorCode PetscSequentialPhaseBegin_Private(MPI_Comm,int);
 32: extern PetscErrorCode PetscSequentialPhaseEnd_Private(MPI_Comm,int);
 33: extern PetscErrorCode PetscCloseHistoryFile(FILE**);

 35: /* user may set this BEFORE calling PetscInitialize() */
 36: MPI_Comm PETSC_COMM_WORLD = MPI_COMM_NULL;

 38: PetscMPIInt Petsc_Counter_keyval   = MPI_KEYVAL_INVALID;
 39: PetscMPIInt Petsc_InnerComm_keyval = MPI_KEYVAL_INVALID;
 40: PetscMPIInt Petsc_OuterComm_keyval = MPI_KEYVAL_INVALID;

 42: /*
 43:      Declare and set all the string names of the PETSc enums
 44: */
 45: const char *const PetscBools[]     = {"FALSE","TRUE","PetscBool","PETSC_",0};
 46: const char *const PetscCopyModes[] = {"COPY_VALUES","OWN_POINTER","USE_POINTER","PetscCopyMode","PETSC_",0};
 47: const char *const PetscDataTypes[] = {"INT","DOUBLE","COMPLEX","LONG","SHORT","FLOAT",
 48:                                       "CHAR","LOGICAL","ENUM","BOOL","LONGDOUBLE","OBJECT","FUNCTION","PetscDataType","PETSC_",0};

 50: PetscBool PetscPreLoadingUsed = PETSC_FALSE;
 51: PetscBool PetscPreLoadingOn   = PETSC_FALSE;

 53: PetscInt PetscHotRegionDepth;

 55: #if defined(PETSC_HAVE_THREADSAFETY)
 56: PetscSpinlock PetscViewerASCIISpinLockOpen;
 57: PetscSpinlock PetscViewerASCIISpinLockStdout;
 58: PetscSpinlock PetscViewerASCIISpinLockStderr;
 59: PetscSpinlock PetscCommSpinLock;
 60: #endif

 62: /*
 63:        Checks the options database for initializations related to the
 64:     PETSc components
 65: */
 66: PetscErrorCode  PetscOptionsCheckInitial_Components(void)
 67: {
 68:   PetscBool      flg1;

 72:   PetscOptionsHasName(NULL,NULL,"-help",&flg1);
 73:   if (flg1) {
 74: #if defined(PETSC_USE_LOG)
 75:     MPI_Comm comm = PETSC_COMM_WORLD;
 76:     (*PetscHelpPrintf)(comm,"------Additional PETSc component options--------\n");
 77:     (*PetscHelpPrintf)(comm," -log_exclude: <vec,mat,pc.ksp,snes>\n");
 78:     (*PetscHelpPrintf)(comm," -info_exclude: <null,vec,mat,pc,ksp,snes,ts>\n");
 79:     (*PetscHelpPrintf)(comm,"-----------------------------------------------\n");
 80: #endif
 81:   }
 82:   return(0);
 83: }

 85: /*
 86:       PetscInitializeNoPointers - Calls PetscInitialize() from C/C++ without the pointers to argc and args

 88:    Collective

 90:    Level: advanced

 92:     Notes: this is called only by the PETSc MATLAB and Julia interface. Even though it might start MPI it sets the flag to
 93:      indicate that it did NOT start MPI so that the PetscFinalize() does not end MPI, thus allowing PetscInitialize() to
 94:      be called multiple times from MATLAB and Julia without the problem of trying to initialize MPI more than once.

 96:      Turns off PETSc signal handling because that can interact with MATLAB's signal handling causing random crashes.

 98: .seealso: PetscInitialize(), PetscInitializeFortran(), PetscInitializeNoArguments()
 99: */
100: PetscErrorCode  PetscInitializeNoPointers(int argc,char **args,const char *filename,const char *help)
101: {
103:   int            myargc   = argc;
104:   char           **myargs = args;

107:   PetscInitialize(&myargc,&myargs,filename,help);
108:   PetscPopSignalHandler();
109:   PetscBeganMPI = PETSC_FALSE;
110:   PetscFunctionReturn(ierr);
111: }

113: /*
114:       Used by MATLAB and Julia interface to get communicator
115: */
116: PetscErrorCode  PetscGetPETSC_COMM_SELF(MPI_Comm *comm)
117: {
119:   *comm = PETSC_COMM_SELF;
120:   return(0);
121: }

123: /*@C
124:       PetscInitializeNoArguments - Calls PetscInitialize() from C/C++ without
125:         the command line arguments.

127:    Collective

129:    Level: advanced

131: .seealso: PetscInitialize(), PetscInitializeFortran()
132: @*/
133: PetscErrorCode  PetscInitializeNoArguments(void)
134: {
136:   int            argc   = 0;
137:   char           **args = 0;

140:   PetscInitialize(&argc,&args,NULL,NULL);
141:   PetscFunctionReturn(ierr);
142: }

144: /*@
145:       PetscInitialized - Determine whether PETSc is initialized.

147:    Level: beginner

149: .seealso: PetscInitialize(), PetscInitializeNoArguments(), PetscInitializeFortran()
150: @*/
151: PetscErrorCode PetscInitialized(PetscBool  *isInitialized)
152: {
153:   *isInitialized = PetscInitializeCalled;
154:   return 0;
155: }

157: /*@
158:       PetscFinalized - Determine whether PetscFinalize() has been called yet

160:    Level: developer

162: .seealso: PetscInitialize(), PetscInitializeNoArguments(), PetscInitializeFortran()
163: @*/
164: PetscErrorCode  PetscFinalized(PetscBool  *isFinalized)
165: {
166:   *isFinalized = PetscFinalizeCalled;
167:   return 0;
168: }

170: extern PetscErrorCode PetscOptionsCheckInitial_Private(void);

172: /*
173:        This function is the MPI reduction operation used to compute the sum of the
174:    first half of the datatype and the max of the second half.
175: */
176: MPI_Op MPIU_MAXSUM_OP = 0;

178: PETSC_INTERN void MPIAPI MPIU_MaxSum_Local(void *in,void *out,int *cnt,MPI_Datatype *datatype)
179: {
180:   PetscInt *xin = (PetscInt*)in,*xout = (PetscInt*)out,i,count = *cnt;

183:   if (*datatype != MPIU_2INT) {
184:     (*PetscErrorPrintf)("Can only handle MPIU_2INT data types");
185:     MPI_Abort(MPI_COMM_WORLD,1);
186:   }

188:   for (i=0; i<count; i++) {
189:     xout[2*i]    = PetscMax(xout[2*i],xin[2*i]);
190:     xout[2*i+1] += xin[2*i+1];
191:   }
192:   PetscFunctionReturnVoid();
193: }

195: /*
196:     Returns the max of the first entry owned by this processor and the
197: sum of the second entry.

199:     The reason sizes[2*i] contains lengths sizes[2*i+1] contains flag of 1 if length is nonzero
200: is so that the MPIU_MAXSUM_OP() can set TWO values, if we passed in only sizes[i] with lengths
201: there would be no place to store the both needed results.
202: */
203: PetscErrorCode  PetscMaxSum(MPI_Comm comm,const PetscInt sizes[],PetscInt *max,PetscInt *sum)
204: {

208: #if defined(PETSC_HAVE_MPI_REDUCE_SCATTER_BLOCK)
209:   {
210:     struct {PetscInt max,sum;} work;
211:     MPI_Reduce_scatter_block((void*)sizes,&work,1,MPIU_2INT,MPIU_MAXSUM_OP,comm);
212:     *max = work.max;
213:     *sum = work.sum;
214:   }
215: #else
216:   {
217:     PetscMPIInt    size,rank;
218:     struct {PetscInt max,sum;} *work;
219:     MPI_Comm_size(comm,&size);
220:     MPI_Comm_rank(comm,&rank);
221:     PetscMalloc1(size,&work);
222:     MPIU_Allreduce((void*)sizes,work,size,MPIU_2INT,MPIU_MAXSUM_OP,comm);
223:     *max = work[rank].max;
224:     *sum = work[rank].sum;
225:     PetscFree(work);
226:   }
227: #endif
228:   return(0);
229: }

231: /* ----------------------------------------------------------------------------*/

233: #if (defined(PETSC_HAVE_COMPLEX) && !defined(PETSC_HAVE_MPI_C_DOUBLE_COMPLEX)) || defined(PETSC_USE_REAL___FLOAT128) || defined(PETSC_USE_REAL___FP16)
234: MPI_Op MPIU_SUM = 0;

236: PETSC_EXTERN void PetscSum_Local(void *in,void *out,PetscMPIInt *cnt,MPI_Datatype *datatype)
237: {
238:   PetscInt i,count = *cnt;

241:   if (*datatype == MPIU_REAL) {
242:     PetscReal *xin = (PetscReal*)in,*xout = (PetscReal*)out;
243:     for (i=0; i<count; i++) xout[i] += xin[i];
244:   }
245: #if defined(PETSC_HAVE_COMPLEX)
246:   else if (*datatype == MPIU_COMPLEX) {
247:     PetscComplex *xin = (PetscComplex*)in,*xout = (PetscComplex*)out;
248:     for (i=0; i<count; i++) xout[i] += xin[i];
249:   }
250: #endif
251:   else {
252:     (*PetscErrorPrintf)("Can only handle MPIU_REAL or MPIU_COMPLEX data types");
253:     MPI_Abort(MPI_COMM_WORLD,1);
254:   }
255:   PetscFunctionReturnVoid();
256: }
257: #endif

259: #if defined(PETSC_USE_REAL___FLOAT128) || defined(PETSC_USE_REAL___FP16)
260: MPI_Op MPIU_MAX = 0;
261: MPI_Op MPIU_MIN = 0;

263: PETSC_EXTERN void PetscMax_Local(void *in,void *out,PetscMPIInt *cnt,MPI_Datatype *datatype)
264: {
265:   PetscInt i,count = *cnt;

268:   if (*datatype == MPIU_REAL) {
269:     PetscReal *xin = (PetscReal*)in,*xout = (PetscReal*)out;
270:     for (i=0; i<count; i++) xout[i] = PetscMax(xout[i],xin[i]);
271:   }
272: #if defined(PETSC_HAVE_COMPLEX)
273:   else if (*datatype == MPIU_COMPLEX) {
274:     PetscComplex *xin = (PetscComplex*)in,*xout = (PetscComplex*)out;
275:     for (i=0; i<count; i++) {
276:       xout[i] = PetscRealPartComplex(xout[i])<PetscRealPartComplex(xin[i]) ? xin[i] : xout[i];
277:     }
278:   }
279: #endif
280:   else {
281:     (*PetscErrorPrintf)("Can only handle MPIU_REAL or MPIU_COMPLEX data types");
282:     MPI_Abort(MPI_COMM_WORLD,1);
283:   }
284:   PetscFunctionReturnVoid();
285: }

287: PETSC_EXTERN void PetscMin_Local(void *in,void *out,PetscMPIInt *cnt,MPI_Datatype *datatype)
288: {
289:   PetscInt    i,count = *cnt;

292:   if (*datatype == MPIU_REAL) {
293:     PetscReal *xin = (PetscReal*)in,*xout = (PetscReal*)out;
294:     for (i=0; i<count; i++) xout[i] = PetscMin(xout[i],xin[i]);
295:   }
296: #if defined(PETSC_HAVE_COMPLEX)
297:   else if (*datatype == MPIU_COMPLEX) {
298:     PetscComplex *xin = (PetscComplex*)in,*xout = (PetscComplex*)out;
299:     for (i=0; i<count; i++) {
300:       xout[i] = PetscRealPartComplex(xout[i])>PetscRealPartComplex(xin[i]) ? xin[i] : xout[i];
301:     }
302:   }
303: #endif
304:   else {
305:     (*PetscErrorPrintf)("Can only handle MPIU_REAL or MPIU_SCALAR data (i.e. double or complex) types");
306:     MPI_Abort(MPI_COMM_WORLD,1);
307:   }
308:   PetscFunctionReturnVoid();
309: }
310: #endif

312: /*
313:    Private routine to delete internal tag/name counter storage when a communicator is freed.

315:    This is called by MPI, not by users. This is called by MPI_Comm_free() when the communicator that has this  data as an attribute is freed.

317:    Note: this is declared extern "C" because it is passed to MPI_Keyval_create()

319: */
320: PETSC_EXTERN PetscMPIInt MPIAPI Petsc_DelCounter(MPI_Comm comm,PetscMPIInt keyval,void *count_val,void *extra_state)
321: {

325:   PetscInfo1(0,"Deleting counter data in an MPI_Comm %ld\n",(long)comm);if (ierr) PetscFunctionReturn((PetscMPIInt)ierr);
326:   PetscFree(count_val);if (ierr) PetscFunctionReturn((PetscMPIInt)ierr);
327:   PetscFunctionReturn(MPI_SUCCESS);
328: }

330: /*
331:   This is invoked on the outer comm as a result of either PetscCommDestroy() (via MPI_Attr_delete) or when the user
332:   calls MPI_Comm_free().

334:   This is the only entry point for breaking the links between inner and outer comms.

336:   This is called by MPI, not by users. This is called when MPI_Comm_free() is called on the communicator.

338:   Note: this is declared extern "C" because it is passed to MPI_Keyval_create()

340: */
341: PETSC_EXTERN PetscMPIInt MPIAPI Petsc_DelComm_Outer(MPI_Comm comm,PetscMPIInt keyval,void *attr_val,void *extra_state)
342: {
344:   PetscMPIInt    flg;
345:   union {MPI_Comm comm; void *ptr;} icomm,ocomm;

348:   if (keyval != Petsc_InnerComm_keyval) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_CORRUPT,"Unexpected keyval");
349:   icomm.ptr = attr_val;

351:   MPI_Attr_get(icomm.comm,Petsc_OuterComm_keyval,&ocomm,&flg);
352:   if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_CORRUPT,"Inner MPI_Comm does not have expected reference to outer comm");
353:   if (ocomm.comm != comm) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_CORRUPT,"Inner MPI_Comm has reference to non-matching outer comm");
354:   MPI_Attr_delete(icomm.comm,Petsc_OuterComm_keyval); /* Calls Petsc_DelComm_Inner */
355:   PetscInfo1(0,"User MPI_Comm %ld is being freed after removing reference from inner PETSc comm to this outer comm\n",(long)comm);if (ierr) PetscFunctionReturn((PetscMPIInt)ierr);
356:   PetscFunctionReturn(MPI_SUCCESS);
357: }

359: /*
360:  * This is invoked on the inner comm when Petsc_DelComm_Outer calls MPI_Attr_delete.  It should not be reached any other way.
361:  */
362: PETSC_EXTERN PetscMPIInt MPIAPI Petsc_DelComm_Inner(MPI_Comm comm,PetscMPIInt keyval,void *attr_val,void *extra_state)
363: {

367:   PetscInfo1(0,"Removing reference to PETSc communicator embedded in a user MPI_Comm %ld\n",(long)comm);if (ierr) PetscFunctionReturn((PetscMPIInt)ierr);
368:   PetscFunctionReturn(MPI_SUCCESS);
369: }

371: #if defined(PETSC_USE_PETSC_MPI_EXTERNAL32)
372: #if !defined(PETSC_WORDS_BIGENDIAN)
373: PETSC_EXTERN PetscMPIInt PetscDataRep_extent_fn(MPI_Datatype,MPI_Aint*,void*);
374: PETSC_EXTERN PetscMPIInt PetscDataRep_read_conv_fn(void*, MPI_Datatype,PetscMPIInt,void*,MPI_Offset,void*);
375: PETSC_EXTERN PetscMPIInt PetscDataRep_write_conv_fn(void*, MPI_Datatype,PetscMPIInt,void*,MPI_Offset,void*);
376: #endif
377: #endif

379: int  PetscGlobalArgc   = 0;
380: char **PetscGlobalArgs = 0;
381: PetscSegBuffer PetscCitationsList;

383: PetscErrorCode PetscCitationsInitialize(void)
384: {

388:   PetscSegBufferCreate(1,10000,&PetscCitationsList);
389:   PetscCitationsRegister("@TechReport{petsc-user-ref,\n  Author = {Satish Balay and Shrirang Abhyankar and Mark F. Adams and Jed Brown and Peter Brune\n            and Kris Buschelman and Lisandro Dalcin and Victor Eijkhout and William D. Gropp\n            and Dinesh Kaushik and Matthew G. Knepley\n            and Lois Curfman McInnes and Karl Rupp and Barry F. Smith\n            and Stefano Zampini and Hong Zhang and Hong Zhang},\n  Title = {{PETS}c Users Manual},\n  Number = {ANL-95/11 - Revision 3.8},\n  Institution = {Argonne National Laboratory},\n  Year = {2017}\n}\n",NULL);
390:   PetscCitationsRegister("@InProceedings{petsc-efficient,\n  Author = {Satish Balay and William D. Gropp and Lois Curfman McInnes and Barry F. Smith},\n  Title = {Efficient Management of Parallelism in Object Oriented Numerical Software Libraries},\n  Booktitle = {Modern Software Tools in Scientific Computing},\n  Editor = {E. Arge and A. M. Bruaset and H. P. Langtangen},\n  Pages = {163--202},\n  Publisher = {Birkh{\\\"{a}}user Press},\n  Year = {1997}\n}\n",NULL);
391:   return(0);
392: }

394: /*@C
395:    PetscGetArgs - Allows you to access the raw command line arguments anywhere
396:      after PetscInitialize() is called but before PetscFinalize().

398:    Not Collective

400:    Output Parameters:
401: +  argc - count of number of command line arguments
402: -  args - the command line arguments

404:    Level: intermediate

406:    Notes:
407:       This is usually used to pass the command line arguments into other libraries
408:    that are called internally deep in PETSc or the application.

410:       The first argument contains the program name as is normal for C arguments.

412:    Concepts: command line arguments

414: .seealso: PetscFinalize(), PetscInitializeFortran(), PetscGetArguments()

416: @*/
417: PetscErrorCode  PetscGetArgs(int *argc,char ***args)
418: {
420:   if (!PetscInitializeCalled && PetscFinalizeCalled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"You must call after PetscInitialize() but before PetscFinalize()");
421:   *argc = PetscGlobalArgc;
422:   *args = PetscGlobalArgs;
423:   return(0);
424: }

426: /*@C
427:    PetscGetArguments - Allows you to access the  command line arguments anywhere
428:      after PetscInitialize() is called but before PetscFinalize().

430:    Not Collective

432:    Output Parameters:
433: .  args - the command line arguments

435:    Level: intermediate

437:    Notes:
438:       This does NOT start with the program name and IS null terminated (final arg is void)

440:    Concepts: command line arguments

442: .seealso: PetscFinalize(), PetscInitializeFortran(), PetscGetArgs(), PetscFreeArguments()

444: @*/
445: PetscErrorCode  PetscGetArguments(char ***args)
446: {
447:   PetscInt       i,argc = PetscGlobalArgc;

451:   if (!PetscInitializeCalled && PetscFinalizeCalled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"You must call after PetscInitialize() but before PetscFinalize()");
452:   if (!argc) {*args = 0; return(0);}
453:   PetscMalloc1(argc,args);
454:   for (i=0; i<argc-1; i++) {
455:     PetscStrallocpy(PetscGlobalArgs[i+1],&(*args)[i]);
456:   }
457:   (*args)[argc-1] = 0;
458:   return(0);
459: }

461: /*@C
462:    PetscFreeArguments - Frees the memory obtained with PetscGetArguments()

464:    Not Collective

466:    Output Parameters:
467: .  args - the command line arguments

469:    Level: intermediate

471:    Concepts: command line arguments

473: .seealso: PetscFinalize(), PetscInitializeFortran(), PetscGetArgs(), PetscGetArguments()

475: @*/
476: PetscErrorCode  PetscFreeArguments(char **args)
477: {
478:   PetscInt       i = 0;

482:   if (!args) return(0);
483:   while (args[i]) {
484:     PetscFree(args[i]);
485:     i++;
486:   }
487:   PetscFree(args);
488:   return(0);
489: }

491: #if defined(PETSC_HAVE_SAWS)
492: #include <petscconfiginfo.h>

494: PetscErrorCode  PetscInitializeSAWs(const char help[])
495: {
496:   if (!PetscGlobalRank) {
497:     char           cert[PETSC_MAX_PATH_LEN],root[PETSC_MAX_PATH_LEN],*intro,programname[64],*appline,*options,version[64];
498:     int            port;
499:     PetscBool      flg,rootlocal = PETSC_FALSE,flg2,selectport = PETSC_FALSE;
500:     size_t         applinelen,introlen;
502:     char           sawsurl[256];

504:     PetscOptionsHasName(NULL,NULL,"-saws_log",&flg);
505:     if (flg) {
506:       char  sawslog[PETSC_MAX_PATH_LEN];

508:       PetscOptionsGetString(NULL,NULL,"-saws_log",sawslog,PETSC_MAX_PATH_LEN,NULL);
509:       if (sawslog[0]) {
510:         PetscStackCallSAWs(SAWs_Set_Use_Logfile,(sawslog));
511:       } else {
512:         PetscStackCallSAWs(SAWs_Set_Use_Logfile,(NULL));
513:       }
514:     }
515:     PetscOptionsGetString(NULL,NULL,"-saws_https",cert,PETSC_MAX_PATH_LEN,&flg);
516:     if (flg) {
517:       PetscStackCallSAWs(SAWs_Set_Use_HTTPS,(cert));
518:     }
519:     PetscOptionsGetBool(NULL,NULL,"-saws_port_auto_select",&selectport,NULL);
520:     if (selectport) {
521:         PetscStackCallSAWs(SAWs_Get_Available_Port,(&port));
522:         PetscStackCallSAWs(SAWs_Set_Port,(port));
523:     } else {
524:       PetscOptionsGetInt(NULL,NULL,"-saws_port",&port,&flg);
525:       if (flg) {
526:         PetscStackCallSAWs(SAWs_Set_Port,(port));
527:       }
528:     }
529:     PetscOptionsGetString(NULL,NULL,"-saws_root",root,PETSC_MAX_PATH_LEN,&flg);
530:     if (flg) {
531:       PetscStackCallSAWs(SAWs_Set_Document_Root,(root));
532:       PetscStrcmp(root,".",&rootlocal);
533:     } else {
534:       PetscOptionsHasName(NULL,NULL,"-saws_options",&flg);
535:       if (flg) {
536:         PetscStrreplace(PETSC_COMM_WORLD,"${PETSC_DIR}/share/petsc/saws",root,PETSC_MAX_PATH_LEN);
537:         PetscStackCallSAWs(SAWs_Set_Document_Root,(root));
538:       }
539:     }
540:     PetscOptionsHasName(NULL,NULL,"-saws_local",&flg2);
541:     if (flg2) {
542:       char jsdir[PETSC_MAX_PATH_LEN];
543:       if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"-saws_local option requires -saws_root option");
544:       PetscSNPrintf(jsdir,PETSC_MAX_PATH_LEN,"%s/js",root);
545:       PetscTestDirectory(jsdir,'r',&flg);
546:       if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_READ,"-saws_local option requires js directory in root directory");
547:       PetscStackCallSAWs(SAWs_Push_Local_Header,());
548:     }
549:     PetscGetProgramName(programname,64);
550:     PetscStrlen(help,&applinelen);
551:     introlen   = 4096 + applinelen;
552:     applinelen += 1024;
553:     PetscMalloc(applinelen,&appline);
554:     PetscMalloc(introlen,&intro);

556:     if (rootlocal) {
557:       PetscSNPrintf(appline,applinelen,"%s.c.html",programname);
558:       PetscTestFile(appline,'r',&rootlocal);
559:     }
560:     PetscOptionsGetAll(NULL,&options);
561:     if (rootlocal && help) {
562:       PetscSNPrintf(appline,applinelen,"<center> Running <a href=\"%s.c.html\">%s</a> %s</center><br><center><pre>%s</pre></center><br>\n",programname,programname,options,help);
563:     } else if (help) {
564:       PetscSNPrintf(appline,applinelen,"<center>Running %s %s</center><br><center><pre>%s</pre></center><br>",programname,options,help);
565:     } else {
566:       PetscSNPrintf(appline,applinelen,"<center> Running %s %s</center><br>\n",programname,options);
567:     }
568:     PetscFree(options);
569:     PetscGetVersion(version,sizeof(version));
570:     PetscSNPrintf(intro,introlen,"<body>\n"
571:                                     "<center><h2> <a href=\"http://www.mcs.anl.gov/petsc\">PETSc</a> Application Web server powered by <a href=\"https://bitbucket.org/saws/saws\">SAWs</a> </h2></center>\n"
572:                                     "<center>This is the default PETSc application dashboard, from it you can access any published PETSc objects or logging data</center><br><center>%s configured with %s</center><br>\n"
573:                                     "%s",version,petscconfigureoptions,appline);
574:     PetscStackCallSAWs(SAWs_Push_Body,("index.html",0,intro));
575:     PetscFree(intro);
576:     PetscFree(appline);
577:     if (selectport) {
578:       PetscBool silent;

580:       SAWs_Initialize();
581:       /* another process may have grabbed the port so keep trying */
582:       while (ierr) {
583:         PetscStackCallSAWs(SAWs_Get_Available_Port,(&port));
584:         PetscStackCallSAWs(SAWs_Set_Port,(port));
585:         SAWs_Initialize();
586:       }

588:       PetscOptionsGetBool(NULL,NULL,"-saws_port_auto_select_silent",&silent,NULL);
589:       if (!silent) {
590:         PetscStackCallSAWs(SAWs_Get_FullURL,(sizeof(sawsurl),sawsurl));
591:         PetscPrintf(PETSC_COMM_WORLD,"Point your browser to %s for SAWs\n",sawsurl);
592:       }
593:     } else {
594:       PetscStackCallSAWs(SAWs_Initialize,());
595:     }
596:     PetscCitationsRegister("@TechReport{ saws,\n"
597:                                   "  Author = {Matt Otten and Jed Brown and Barry Smith},\n"
598:                                   "  Title  = {Scientific Application Web Server (SAWs) Users Manual},\n"
599:                                   "  Institution = {Argonne National Laboratory},\n"
600:                                   "  Year   = 2013\n}\n",NULL);
601:   }
602:   return(0);
603: }
604: #endif

606: /*@C
607:    PetscInitialize - Initializes the PETSc database and MPI.
608:    PetscInitialize() calls MPI_Init() if that has yet to be called,
609:    so this routine should always be called near the beginning of
610:    your program -- usually the very first line!

612:    Collective on MPI_COMM_WORLD or PETSC_COMM_WORLD if it has been set

614:    Input Parameters:
615: +  argc - count of number of command line arguments
616: .  args - the command line arguments
617: .  file - [optional] PETSc database file, also checks ~username/.petscrc and .petscrc use NULL to not check for
618:           code specific file. Use -skip_petscrc in the code specific file to skip the .petscrc files
619: -  help - [optional] Help message to print, use NULL for no message

621:    If you wish PETSc code to run ONLY on a subcommunicator of MPI_COMM_WORLD, create that
622:    communicator first and assign it to PETSC_COMM_WORLD BEFORE calling PetscInitialize(). Thus if you are running a
623:    four process job and two processes will run PETSc and have PetscInitialize() and PetscFinalize() and two process will not,
624:    then do this. If ALL processes in the job are using PetscInitialize() and PetscFinalize() then you don't need to do this, even
625:    if different subcommunicators of the job are doing different things with PETSc.

627:    Options Database Keys:
628: +  -help [intro] - prints help method for each option; if intro is given the program stops after printing the introductory help message
629: .  -start_in_debugger [noxterm,dbx,xdb,gdb,...] - Starts program in debugger
630: .  -on_error_attach_debugger [noxterm,dbx,xdb,gdb,...] - Starts debugger when error detected
631: .  -on_error_emacs <machinename> causes emacsclient to jump to error file
632: .  -on_error_abort calls abort() when error detected (no traceback)
633: .  -on_error_mpiabort calls MPI_abort() when error detected
634: .  -error_output_stderr prints error messages to stderr instead of the default stdout
635: .  -error_output_none does not print the error messages (but handles errors in the same way as if this was not called)
636: .  -debugger_nodes [node1,node2,...] - Indicates nodes to start in debugger
637: .  -debugger_pause [sleeptime] (in seconds) - Pauses debugger
638: .  -stop_for_debugger - Print message on how to attach debugger manually to
639:                         process and wait (-debugger_pause) seconds for attachment
640: .  -malloc - Indicates use of PETSc error-checking malloc (on by default for debug version of libraries)
641: .  -malloc no - Indicates not to use error-checking malloc
642: .  -malloc_debug - check for memory corruption at EVERY malloc or free
643: .  -malloc_dump - prints a list of all unfreed memory at the end of the run
644: .  -malloc_test - like -malloc_dump -malloc_debug, but only active for debugging builds
645: .  -fp_trap - Stops on floating point exceptions (Note that on the
646:               IBM RS6000 this slows code by at least a factor of 10.)
647: .  -no_signal_handler - Indicates not to trap error signals
648: .  -shared_tmp - indicates /tmp directory is shared by all processors
649: .  -not_shared_tmp - each processor has own /tmp
650: .  -tmp - alternative name of /tmp directory
651: .  -get_total_flops - returns total flops done by all processors
652: -  -memory_view - Print memory usage at end of run

654:    Options Database Keys for Profiling:
655:    See Users-Manual: Chapter 13 Profiling for details.
656: +  -info <optional filename> - Prints verbose information to the screen
657: .  -info_exclude <null,vec,mat,pc,ksp,snes,ts> - Excludes some of the verbose messages
658: .  -log_sync - Log the synchronization in scatters, inner products and norms
659: .  -log_trace [filename] - Print traces of all PETSc calls to the screen (useful to determine where a program
660:         hangs without running in the debugger).  See PetscLogTraceBegin().
661: .  -log_view [:filename:format] - Prints summary of flop and timing information to screen or file, see PetscLogView().
662: .  -log_summary [filename] - (Deprecated, use -log_view) Prints summary of flop and timing information to screen. If the filename is specified the
663:         summary is written to the file.  See PetscLogView().
664: .  -log_exclude: <vec,mat,pc.ksp,snes> - excludes subset of object classes from logging
665: .  -log_all [filename] - Logs extensive profiling information  See PetscLogDump().
666: .  -log [filename] - Logs basic profiline information  See PetscLogDump().
667: -  -log_mpe [filename] - Creates a logfile viewable by the utility Jumpshot (in MPICH distribution)

669:     Only one of -log_trace, -log_view, -log_view, -log_all, -log, or -log_mpe may be used at a time

671:    Options Database Keys for SAWs:
672: +  -saws_port <portnumber> - port number to publish SAWs data, default is 8080
673: .  -saws_port_auto_select - have SAWs select a new unique port number where it publishes the data, the URL is printed to the screen
674:                             this is useful when you are running many jobs that utilize SAWs at the same time
675: .  -saws_log <filename> - save a log of all SAWs communication
676: .  -saws_https <certificate file> - have SAWs use HTTPS instead of HTTP
677: -  -saws_root <directory> - allow SAWs to have access to the given directory to search for requested resources and files

679:    Environmental Variables:
680: +   PETSC_TMP - alternative tmp directory
681: .   PETSC_SHARED_TMP - tmp is shared by all processes
682: .   PETSC_NOT_SHARED_TMP - each process has its own private tmp
683: .   PETSC_VIEWER_SOCKET_PORT - socket number to use for socket viewer
684: -   PETSC_VIEWER_SOCKET_MACHINE - machine to use for socket viewer to connect to


687:    Level: beginner

689:    Notes:
690:    If for some reason you must call MPI_Init() separately, call
691:    it before PetscInitialize().

693:    Fortran Version:
694:    In Fortran this routine has the format
695: $       call PetscInitialize(file,ierr)

697: +   ierr - error return code
698: -  file - [optional] PETSc database file, also checks ~username/.petscrc and .petscrc use PETSC_NULL_CHARACTER to not check for
699:           code specific file. Use -skip_petscrc in the code specific file to skip the .petscrc files

701:    Important Fortran Note:
702:    In Fortran, you MUST use PETSC_NULL_CHARACTER to indicate a
703:    null character string; you CANNOT just use NULL as
704:    in the C version. See Users-Manual: Chapter 11 PETSc for Fortran Users for details.

706:    If your main program is C but you call Fortran code that also uses PETSc you need to call PetscInitializeFortran() soon after
707:    calling PetscInitialize().

709:    Concepts: initializing PETSc

711: .seealso: PetscFinalize(), PetscInitializeFortran(), PetscGetArgs(), PetscInitializeNoArguments()

713: @*/
714: PetscErrorCode  PetscInitialize(int *argc,char ***args,const char file[],const char help[])
715: {
717:   PetscMPIInt    flag, size;
718:   PetscBool      flg = PETSC_TRUE;
719:   char           hostname[256];
720: #if defined(PETSC_HAVE_CUDA)
721:   cublasStatus_t cberr;
722: #endif

725:   if (PetscInitializeCalled) return(0);
726:   /*
727:       The checking over compatible runtime libraries is complicated by the MPI ABI initiative
728:       https://wiki.mpich.org/mpich/index.php/ABI_Compatibility_Initiative which started with
729:         MPICH v3.1 (Released Feburary 2014)
730:         IBM MPI v2.1 (December 2014)
731:         Intel� MPI Library v5.0 (2014)
732:         Cray MPT v7.0.0 (June 2014)
733:       As of July 31, 2017 the ABI number still appears to be 12, that is all of the versions
734:       listed above and since that time are compatible.

736:       Unfortunately the MPI ABI initiative has not defined a way to determine the ABI number
737:       at compile time or runtime. Thus we will need to systematically track the allowed versions
738:       and how they are represented in the mpi.h and MPI_Get_library_version() output in order
739:       to perform the checking.

741:       Currently we only check for pre MPI ABI versions (and packages that do not follow the MPI ABI).

743:       Questions:

745:         Should the checks for ABI incompatibility be only on the major version number below?
746:         Presumably the output to stderr will be removed before a release.
747:   */

749: #if defined(PETSC_HAVE_MPI_GET_LIBRARY_VERSION)
750:   {
751:     char        mpilibraryversion[MPI_MAX_LIBRARY_VERSION_STRING];
752:     PetscMPIInt mpilibraryversionlength;
753:     MPI_Get_library_version(mpilibraryversion,&mpilibraryversionlength);if (ierr) return ierr;
754:     /* check for MPICH versions before MPI ABI initiative */
755: #if defined(MPICH_VERSION)
756: #if MPICH_NUMVERSION < 30100000
757:     {
758:       char *ver,*lf;
759:       flg = PETSC_FALSE;
760:       PetscStrstr(mpilibraryversion,"MPICH Version:",&ver);if (ierr) return ierr;
761:       if (ver) {
762:         PetscStrchr(ver,'\n',&lf);if (ierr) return ierr;
763:         if (lf) {
764:           *lf = 0;
765:           PetscStrendswith(ver,MPICH_VERSION,&flg);if (ierr) return ierr;
766:         }
767:       }
768:       if (!flg) {
769:         fprintf(stderr,"PETSc Error --- MPICH library version \n%s does not match what PETSc was compiled with %s, aborting\n",mpilibraryversion,MPICH_VERSION);
770:         return PETSC_ERR_MPI_LIB_INCOMP;
771:       }
772:     }
773: #endif
774:     /* check for OpenMPI version, it is not part of the MPI ABI initiative (is it part of another initiative that needs to be handled?) */
775: #elif defined(OMPI_MAJOR_VERSION)
776:     {
777:       char *ver,bs[32],*bsf;
778:       flg = PETSC_FALSE;
779:       PetscStrstr(mpilibraryversion,"Open MPI",&ver);if (ierr) return ierr;
780:       if (ver) {
781:         PetscSNPrintf(bs,32,"v%d.%d",OMPI_MAJOR_VERSION,OMPI_MINOR_VERSION);
782:         PetscStrstr(ver,bs,&bsf);if (ierr) return ierr;
783:         if (bsf) flg = PETSC_TRUE;
784:       }
785:       if (!flg) {
786:         fprintf(stderr,"PETSc Error --- Open MPI library version \n%s does not match what PETSc was compiled with %d.%d, aborting\n",mpilibraryversion,OMPI_MAJOR_VERSION,OMPI_MINOR_VERSION);
787:         return PETSC_ERR_MPI_LIB_INCOMP;
788:       }
789:     }
790: #endif
791:   }
792: #endif


795:   /* these must be initialized in a routine, not as a constant declaration*/
796:   PETSC_STDOUT = stdout;
797:   PETSC_STDERR = stderr;

799:   /* on Windows - set printf to default to printing 2 digit exponents */
800: #if defined(PETSC_HAVE__SET_OUTPUT_FORMAT)
801:   _set_output_format(_TWO_DIGIT_EXPONENT);
802: #endif

804:   PetscOptionsCreateDefault();

806:   /*
807:      We initialize the program name here (before MPI_Init()) because MPICH has a bug in
808:      it that it sets args[0] on all processors to be args[0] on the first processor.
809:   */
810:   if (argc && *argc) {
811:     PetscSetProgramName(**args);
812:   } else {
813:     PetscSetProgramName("Unknown Name");
814:   }

816:   MPI_Initialized(&flag);
817:   if (!flag) {
818:     if (PETSC_COMM_WORLD != MPI_COMM_NULL) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"You cannot set PETSC_COMM_WORLD if you have not initialized MPI first");
819: #if defined(PETSC_HAVE_MPI_INIT_THREAD)
820:     {
821:       PetscMPIInt provided;
822:       MPI_Init_thread(argc,args,MPI_THREAD_FUNNELED,&provided);
823:     }
824: #else
825:     MPI_Init(argc,args);
826: #endif
827:     PetscBeganMPI = PETSC_TRUE;
828:   }
829:   if (argc && args) {
830:     PetscGlobalArgc = *argc;
831:     PetscGlobalArgs = *args;
832:   }
833:   PetscFinalizeCalled = PETSC_FALSE;
834:   PetscSpinlockCreate(&PetscViewerASCIISpinLockOpen);
835:   PetscSpinlockCreate(&PetscViewerASCIISpinLockStdout);
836:   PetscSpinlockCreate(&PetscViewerASCIISpinLockStderr);
837:   PetscSpinlockCreate(&PetscCommSpinLock);

839:   if (PETSC_COMM_WORLD == MPI_COMM_NULL) PETSC_COMM_WORLD = MPI_COMM_WORLD;
840:   MPI_Comm_set_errhandler(PETSC_COMM_WORLD,MPI_ERRORS_RETURN);

842:   /* Done after init due to a bug in MPICH-GM? */
843:   PetscErrorPrintfInitialize();

845:   MPI_Comm_rank(MPI_COMM_WORLD,&PetscGlobalRank);
846:   MPI_Comm_size(MPI_COMM_WORLD,&PetscGlobalSize);

848:   MPIU_BOOL = MPI_INT;
849:   MPIU_ENUM = MPI_INT;

851:   /*
852:      Initialized the global complex variable; this is because with
853:      shared libraries the constructors for global variables
854:      are not called; at least on IRIX.
855:   */
856: #if defined(PETSC_HAVE_COMPLEX)
857:   {
858: #if defined(PETSC_CLANGUAGE_CXX) && !defined(PETSC_USE_REAL___FLOAT128)
859:     PetscComplex ic(0.0,1.0);
860:     PETSC_i = ic;
861: #else
862:     PETSC_i = _Complex_I;
863: #endif
864:   }

866: #if !defined(PETSC_HAVE_MPI_C_DOUBLE_COMPLEX)
867:   MPI_Type_contiguous(2,MPI_DOUBLE,&MPIU_C_DOUBLE_COMPLEX);
868:   MPI_Type_commit(&MPIU_C_DOUBLE_COMPLEX);
869:   MPI_Type_contiguous(2,MPI_FLOAT,&MPIU_C_COMPLEX);
870:   MPI_Type_commit(&MPIU_C_COMPLEX);
871: #endif
872: #endif /* PETSC_HAVE_COMPLEX */

874:   /*
875:      Create the PETSc MPI reduction operator that sums of the first
876:      half of the entries and maxes the second half.
877:   */
878:   MPI_Op_create(MPIU_MaxSum_Local,1,&MPIU_MAXSUM_OP);

880: #if defined(PETSC_USE_REAL___FLOAT128)
881:   MPI_Type_contiguous(2,MPI_DOUBLE,&MPIU___FLOAT128);
882:   MPI_Type_commit(&MPIU___FLOAT128);
883: #if defined(PETSC_HAVE_COMPLEX)
884:   MPI_Type_contiguous(4,MPI_DOUBLE,&MPIU___COMPLEX128);
885:   MPI_Type_commit(&MPIU___COMPLEX128);
886: #endif
887:   MPI_Op_create(PetscMax_Local,1,&MPIU_MAX);
888:   MPI_Op_create(PetscMin_Local,1,&MPIU_MIN);
889: #elif defined(PETSC_USE_REAL___FP16)
890:   MPI_Type_contiguous(2,MPI_CHAR,&MPIU___FP16);
891:   MPI_Type_commit(&MPIU___FP16);
892:   MPI_Op_create(PetscMax_Local,1,&MPIU_MAX);
893:   MPI_Op_create(PetscMin_Local,1,&MPIU_MIN);
894: #endif

896: #if (defined(PETSC_HAVE_COMPLEX) && !defined(PETSC_HAVE_MPI_C_DOUBLE_COMPLEX)) || defined(PETSC_USE_REAL___FLOAT128) || defined(PETSC_USE_REAL___FP16)
897:   MPI_Op_create(PetscSum_Local,1,&MPIU_SUM);
898: #endif

900:   MPI_Type_contiguous(2,MPIU_SCALAR,&MPIU_2SCALAR);
901:   MPI_Type_commit(&MPIU_2SCALAR);

903: #if defined(PETSC_USE_64BIT_INDICES) || !defined(MPI_2INT)
904:   MPI_Type_contiguous(2,MPIU_INT,&MPIU_2INT);
905:   MPI_Type_commit(&MPIU_2INT);
906: #endif


909:   /*
910:      Attributes to be set on PETSc communicators
911:   */
912:   MPI_Keyval_create(MPI_NULL_COPY_FN,Petsc_DelCounter,&Petsc_Counter_keyval,(void*)0);
913:   MPI_Keyval_create(MPI_NULL_COPY_FN,Petsc_DelComm_Outer,&Petsc_InnerComm_keyval,(void*)0);
914:   MPI_Keyval_create(MPI_NULL_COPY_FN,Petsc_DelComm_Inner,&Petsc_OuterComm_keyval,(void*)0);

916:   /*
917:      Build the options database
918:   */
919:   PetscOptionsInsert(NULL,argc,args,file);


922:   /*
923:      Print main application help message
924:   */
925:   PetscOptionsHasName(NULL,NULL,"-help",&flg);
926:   if (help && flg) {
927:     PetscPrintf(PETSC_COMM_WORLD,help);
928:   }
929:   PetscOptionsCheckInitial_Private();

931:   PetscCitationsInitialize();

933: #if defined(PETSC_HAVE_SAWS)
934:   PetscInitializeSAWs(help);
935: #endif

937:   /* Creates the logging data structures; this is enabled even if logging is not turned on */
938: #if defined(PETSC_USE_LOG)
939:   PetscLogInitialize();
940: #endif

942:   /*
943:      Load the dynamic libraries (on machines that support them), this registers all
944:      the solvers etc. (On non-dynamic machines this initializes the PetscDraw and PetscViewer classes)
945:   */
946:   PetscInitialize_DynamicLibraries();

948:   MPI_Comm_size(PETSC_COMM_WORLD,&size);
949:   PetscInfo1(0,"PETSc successfully started: number of processors = %d\n",size);
950:   PetscGetHostName(hostname,256);
951:   PetscInfo1(0,"Running on machine: %s\n",hostname);

953:   PetscOptionsCheckInitial_Components();
954:   /* Check the options database for options related to the options database itself */
955:   PetscOptionsSetFromOptions(NULL);

957: #if defined(PETSC_USE_PETSC_MPI_EXTERNAL32)
958:   /*
959:       Tell MPI about our own data representation converter, this would/should be used if extern32 is not supported by the MPI

961:       Currently not used because it is not supported by MPICH.
962:   */
963: #if !defined(PETSC_WORDS_BIGENDIAN)
964:   MPI_Register_datarep((char*)"petsc",PetscDataRep_read_conv_fn,PetscDataRep_write_conv_fn,PetscDataRep_extent_fn,NULL);
965: #endif
966: #endif

968: #if defined(PETSC_HAVE_CUDA)
969:   flg  = PETSC_TRUE;
970:   PetscOptionsGetBool(NULL,NULL,"-cublas",&flg,NULL);
971:   if (flg) {
972:     PetscMPIInt p;
973:     for (p = 0; p < PetscGlobalSize; ++p) {
974:       if (p == PetscGlobalRank) {
975:         cberr = cublasCreate(&cublasv2handle);CHKERRCUBLAS(cberr);
976:       }
977:       MPI_Barrier(PETSC_COMM_WORLD);
978:     }
979:   }
980: #endif

982:   PetscOptionsHasName(NULL,NULL,"-python",&flg);
983:   if (flg) {
984:     PetscInitializeCalled = PETSC_TRUE;
985:     PetscPythonInitialize(NULL,NULL);
986:   }

988:   /*
989:       Setup building of stack frames for all function calls
990:   */
991: #if defined(PETSC_USE_DEBUG) && !defined(PETSC_HAVE_THREADSAFETY)
992:   PetscStackCreate();
993: #endif

995: #if defined(PETSC_SERIALIZE_FUNCTIONS)
996:   PetscFPTCreate(10000);
997: #endif


1000:   /*
1001:       Once we are completedly initialized then we can set this variables
1002:   */
1003:   PetscInitializeCalled = PETSC_TRUE;
1004:   return(0);
1005: }

1007: #if defined(PETSC_USE_LOG)
1008: extern PetscObject *PetscObjects;
1009: extern PetscInt    PetscObjectsCounts, PetscObjectsMaxCounts;
1010: extern PetscBool   PetscObjectsLog;
1011: #endif

1013: /*
1014:     Frees all the MPI types and operations that PETSc may have created
1015: */
1016: PetscErrorCode  PetscFreeMPIResources(void)
1017: {

1021: #if defined(PETSC_USE_REAL___FLOAT128)
1022:   MPI_Type_free(&MPIU___FLOAT128);
1023: #if defined(PETSC_HAVE_COMPLEX)
1024:   MPI_Type_free(&MPIU___COMPLEX128);
1025: #endif
1026:   MPI_Op_free(&MPIU_MAX);
1027:   MPI_Op_free(&MPIU_MIN);
1028: #elif defined(PETSC_USE_REAL___FP16)
1029:   MPI_Type_free(&MPIU___FP16);
1030:   MPI_Op_free(&MPIU_MAX);
1031:   MPI_Op_free(&MPIU_MIN);
1032: #endif

1034: #if defined(PETSC_HAVE_COMPLEX)
1035: #if !defined(PETSC_HAVE_MPI_C_DOUBLE_COMPLEX)
1036:   MPI_Type_free(&MPIU_C_DOUBLE_COMPLEX);
1037:   MPI_Type_free(&MPIU_C_COMPLEX);
1038: #endif
1039: #endif

1041: #if (defined(PETSC_HAVE_COMPLEX) && !defined(PETSC_HAVE_MPI_C_DOUBLE_COMPLEX)) || defined(PETSC_USE_REAL___FLOAT128) || defined(PETSC_USE_REAL___FP16)
1042:   MPI_Op_free(&MPIU_SUM);
1043: #endif

1045:   MPI_Type_free(&MPIU_2SCALAR);
1046: #if defined(PETSC_USE_64BIT_INDICES) || !defined(MPI_2INT)
1047:   MPI_Type_free(&MPIU_2INT);
1048: #endif
1049:   MPI_Op_free(&MPIU_MAXSUM_OP);
1050:   return(0);
1051: }

1053: /*@C
1054:    PetscFinalize - Checks for options to be called at the conclusion
1055:    of the program. MPI_Finalize() is called only if the user had not
1056:    called MPI_Init() before calling PetscInitialize().

1058:    Collective on PETSC_COMM_WORLD

1060:    Options Database Keys:
1061: +  -options_table - Calls PetscOptionsView()
1062: .  -options_left - Prints unused options that remain in the database
1063: .  -objects_dump [all] - Prints list of objects allocated by the user that have not been freed, the option all cause all outstanding objects to be listed
1064: .  -mpidump - Calls PetscMPIDump()
1065: .  -malloc_dump - Calls PetscMallocDump()
1066: .  -malloc_info - Prints total memory usage
1067: -  -malloc_log - Prints summary of memory usage

1069:    Level: beginner

1071:    Note:
1072:    See PetscInitialize() for more general runtime options.

1074: .seealso: PetscInitialize(), PetscOptionsView(), PetscMallocDump(), PetscMPIDump(), PetscEnd()
1075: @*/
1076: PetscErrorCode  PetscFinalize(void)
1077: {
1079:   PetscMPIInt    rank;
1080:   PetscInt       nopt;
1081:   PetscBool      flg1 = PETSC_FALSE,flg2 = PETSC_FALSE,flg3 = PETSC_FALSE;
1082:   PetscBool      flg;
1083: #if defined(PETSC_USE_LOG)
1084:   char           mname[PETSC_MAX_PATH_LEN];
1085: #endif
1086: #if defined(PETSC_HAVE_CUDA)
1087:   cublasStatus_t cberr;
1088: #endif

1091:   if (!PetscInitializeCalled) {
1092:     printf("PetscInitialize() must be called before PetscFinalize()\n");
1093:     PetscFunctionReturn(PETSC_ERR_ARG_WRONGSTATE);
1094:   }
1095:   PetscInfo(NULL,"PetscFinalize() called\n");

1097:   MPI_Comm_rank(PETSC_COMM_WORLD,&rank);

1099:   PetscOptionsHasName(NULL,NULL,"-citations",&flg);
1100:   if (flg) {
1101:     char  *cits, filename[PETSC_MAX_PATH_LEN];
1102:     FILE  *fd = PETSC_STDOUT;

1104:     PetscOptionsGetString(NULL,NULL,"-citations",filename,PETSC_MAX_PATH_LEN,NULL);
1105:     if (filename[0]) {
1106:       PetscFOpen(PETSC_COMM_WORLD,filename,"w",&fd);
1107:     }
1108:     PetscSegBufferGet(PetscCitationsList,1,&cits);
1109:     cits[0] = 0;
1110:     PetscSegBufferExtractAlloc(PetscCitationsList,&cits);
1111:     PetscFPrintf(PETSC_COMM_WORLD,fd,"If you publish results based on this computation please cite the following:\n");
1112:     PetscFPrintf(PETSC_COMM_WORLD,fd,"===========================================================================\n");
1113:     PetscFPrintf(PETSC_COMM_WORLD,fd,"%s",cits);
1114:     PetscFPrintf(PETSC_COMM_WORLD,fd,"===========================================================================\n");
1115:     PetscFClose(PETSC_COMM_WORLD,fd);
1116:     PetscFree(cits);
1117:   }
1118:   PetscSegBufferDestroy(&PetscCitationsList);

1120: #if defined(PETSC_HAVE_SSL) && defined(PETSC_USE_SOCKET_VIEWER)
1121:   /* TextBelt is run for testing purposes only, please do not use this feature often */
1122:   {
1123:     PetscInt nmax = 2;
1124:     char     **buffs;
1125:     PetscMalloc1(2,&buffs);
1126:     PetscOptionsGetStringArray(NULL,NULL,"-textbelt",buffs,&nmax,&flg1);
1127:     if (flg1) {
1128:       if (!nmax) SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_USER,"-textbelt requires either the phone number or number,\"message\"");
1129:       if (nmax == 1) {
1130:         PetscMalloc1(128,&buffs[1]);
1131:         PetscGetProgramName(buffs[1],32);
1132:         PetscStrcat(buffs[1]," has completed");
1133:       }
1134:       PetscTextBelt(PETSC_COMM_WORLD,buffs[0],buffs[1],NULL);
1135:       PetscFree(buffs[0]);
1136:       PetscFree(buffs[1]);
1137:     }
1138:     PetscFree(buffs);
1139:   }
1140:   {
1141:     PetscInt nmax = 2;
1142:     char     **buffs;
1143:     PetscMalloc1(2,&buffs);
1144:     PetscOptionsGetStringArray(NULL,NULL,"-tellmycell",buffs,&nmax,&flg1);
1145:     if (flg1) {
1146:       if (!nmax) SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_USER,"-tellmycell requires either the phone number or number,\"message\"");
1147:       if (nmax == 1) {
1148:         PetscMalloc1(128,&buffs[1]);
1149:         PetscGetProgramName(buffs[1],32);
1150:         PetscStrcat(buffs[1]," has completed");
1151:       }
1152:       PetscTellMyCell(PETSC_COMM_WORLD,buffs[0],buffs[1],NULL);
1153:       PetscFree(buffs[0]);
1154:       PetscFree(buffs[1]);
1155:     }
1156:     PetscFree(buffs);
1157:   }
1158: #endif
1159:   /*
1160:     It should be safe to cancel the options monitors, since we don't expect to be setting options
1161:     here (at least that are worth monitoring).  Monitors ought to be released so that they release
1162:     whatever memory was allocated there before -malloc_dump reports unfreed memory.
1163:   */
1164:   PetscOptionsMonitorCancel();

1166: #if defined(PETSC_SERIALIZE_FUNCTIONS)
1167:   PetscFPTDestroy();
1168: #endif


1171: #if defined(PETSC_HAVE_SAWS)
1172:   flg = PETSC_FALSE;
1173:   PetscOptionsGetBool(NULL,NULL,"-saw_options",&flg,NULL);
1174:   if (flg) {
1175:     PetscOptionsSAWsDestroy();
1176:   }
1177: #endif

1179: #if defined(PETSC_HAVE_X)
1180:   flg1 = PETSC_FALSE;
1181:   PetscOptionsGetBool(NULL,NULL,"-x_virtual",&flg1,NULL);
1182:   if (flg1) {
1183:     /*  this is a crude hack, but better than nothing */
1184:     PetscPOpen(PETSC_COMM_WORLD,NULL,"pkill -9 Xvfb","r",NULL);
1185:   }
1186: #endif

1188: #if !defined(PETSC_HAVE_THREADSAFETY)
1189:   PetscOptionsGetBool(NULL,NULL,"-malloc_info",&flg2,NULL);
1190:   if (!flg2) {
1191:     flg2 = PETSC_FALSE;
1192:     PetscOptionsGetBool(NULL,NULL,"-memory_view",&flg2,NULL);
1193:   }
1194:   if (flg2) {
1195:     PetscMemoryView(PETSC_VIEWER_STDOUT_WORLD,"Summary of Memory Usage in PETSc\n");
1196:   }
1197: #endif

1199: #if defined(PETSC_USE_LOG)
1200:   flg1 = PETSC_FALSE;
1201:   PetscOptionsGetBool(NULL,NULL,"-get_total_flops",&flg1,NULL);
1202:   if (flg1) {
1203:     PetscLogDouble flops = 0;
1204:     MPI_Reduce(&petsc_TotalFlops,&flops,1,MPI_DOUBLE,MPI_SUM,0,PETSC_COMM_WORLD);
1205:     PetscPrintf(PETSC_COMM_WORLD,"Total flops over all processors %g\n",flops);
1206:   }
1207: #endif


1210: #if defined(PETSC_USE_LOG)
1211: #if defined(PETSC_HAVE_MPE)
1212:   mname[0] = 0;
1213:   PetscOptionsGetString(NULL,NULL,"-log_mpe",mname,PETSC_MAX_PATH_LEN,&flg1);
1214:   if (flg1) {
1215:     if (mname[0]) {PetscLogMPEDump(mname);}
1216:     else          {PetscLogMPEDump(0);}
1217:   }
1218: #endif
1219: #endif

1221:   /*
1222:      Free all objects registered with PetscObjectRegisterDestroy() such as PETSC_VIEWER_XXX_().
1223:   */
1224:   PetscObjectRegisterDestroyAll();

1226: #if defined(PETSC_USE_LOG)
1227:   PetscLogViewFromOptions();
1228:   mname[0] = 0;
1229:   PetscOptionsGetString(NULL,NULL,"-log_summary",mname,PETSC_MAX_PATH_LEN,&flg1);
1230:   if (flg1) {
1231:     PetscViewer viewer;
1232:     (*PetscHelpPrintf)(PETSC_COMM_WORLD,"\n\n WARNING:   -log_summary is being deprecated; switch to -log_view\n\n\n");
1233:     if (mname[0]) {
1234:       PetscViewerASCIIOpen(PETSC_COMM_WORLD,mname,&viewer);
1235:       PetscLogView(viewer);
1236:       PetscViewerDestroy(&viewer);
1237:     } else {
1238:       viewer = PETSC_VIEWER_STDOUT_WORLD;
1239:       PetscViewerPushFormat(viewer,PETSC_VIEWER_DEFAULT);
1240:       PetscLogView(viewer);
1241:       PetscViewerPopFormat(viewer);
1242:     }
1243:   }

1245:   /*
1246:      Free any objects created by the last block of code.
1247:   */
1248:   PetscObjectRegisterDestroyAll();

1250:   mname[0] = 0;
1251:   PetscOptionsGetString(NULL,NULL,"-log_all",mname,PETSC_MAX_PATH_LEN,&flg1);
1252:   PetscOptionsGetString(NULL,NULL,"-log",mname,PETSC_MAX_PATH_LEN,&flg2);
1253:   if (flg1 || flg2) {
1254:     if (mname[0]) PetscLogDump(mname);
1255:     else          PetscLogDump(0);
1256:   }
1257: #endif

1259:   PetscStackDestroy();

1261:   flg1 = PETSC_FALSE;
1262:   PetscOptionsGetBool(NULL,NULL,"-no_signal_handler",&flg1,NULL);
1263:   if (!flg1) { PetscPopSignalHandler();}
1264:   flg1 = PETSC_FALSE;
1265:   PetscOptionsGetBool(NULL,NULL,"-mpidump",&flg1,NULL);
1266:   if (flg1) {
1267:     PetscMPIDump(stdout);
1268:   }
1269:   flg1 = PETSC_FALSE;
1270:   flg2 = PETSC_FALSE;
1271:   /* preemptive call to avoid listing this option in options table as unused */
1272:   PetscOptionsHasName(NULL,NULL,"-malloc_dump",&flg1);
1273:   PetscOptionsHasName(NULL,NULL,"-objects_dump",&flg1);
1274:   PetscOptionsGetBool(NULL,NULL,"-options_view",&flg2,NULL);

1276:   if (flg2) {
1277:     PetscViewer viewer;
1278:     PetscViewerCreate(PETSC_COMM_WORLD,&viewer);
1279:     PetscViewerSetType(viewer,PETSCVIEWERASCII);
1280:     PetscOptionsView(NULL,viewer);
1281:     PetscViewerDestroy(&viewer);
1282:   }

1284:   /* to prevent PETSc -options_left from warning */
1285:   PetscOptionsHasName(NULL,NULL,"-nox",&flg1);
1286:   PetscOptionsHasName(NULL,NULL,"-nox_warning",&flg1);

1288:   flg3 = PETSC_FALSE; /* default value is required */
1289:   PetscOptionsGetBool(NULL,NULL,"-options_left",&flg3,&flg1);
1290:   PetscOptionsAllUsed(NULL,&nopt);
1291:   if (flg3) {
1292:     if (!flg2) { /* have not yet printed the options */
1293:       PetscViewer viewer;
1294:       PetscViewerCreate(PETSC_COMM_WORLD,&viewer);
1295:       PetscViewerSetType(viewer,PETSCVIEWERASCII);
1296:       PetscOptionsView(NULL,viewer);
1297:       PetscViewerDestroy(&viewer);
1298:     }
1299:     if (!nopt) {
1300:       PetscPrintf(PETSC_COMM_WORLD,"There are no unused options.\n");
1301:     } else if (nopt == 1) {
1302:       PetscPrintf(PETSC_COMM_WORLD,"There is one unused database option. It is:\n");
1303:     } else {
1304:       PetscPrintf(PETSC_COMM_WORLD,"There are %D unused database options. They are:\n",nopt);
1305:     }
1306:   }
1307: #if defined(PETSC_USE_DEBUG)
1308:   if (nopt && !flg3 && !flg1) {
1309:     PetscPrintf(PETSC_COMM_WORLD,"WARNING! There are options you set that were not used!\n");
1310:     PetscPrintf(PETSC_COMM_WORLD,"WARNING! could be spelling mistake, etc!\n");
1311:     PetscOptionsLeft(NULL);
1312:   } else if (nopt && flg3) {
1313: #else
1314:   if (nopt && flg3) {
1315: #endif
1316:     PetscOptionsLeft(NULL);
1317:   }

1319: #if defined(PETSC_HAVE_SAWS)
1320:   if (!PetscGlobalRank) {
1321:     PetscStackSAWsViewOff();
1322:     PetscStackCallSAWs(SAWs_Finalize,());
1323:   }
1324: #endif

1326: #if defined(PETSC_USE_LOG)
1327:   /*
1328:        List all objects the user may have forgot to free
1329:   */
1330:   if (PetscObjectsLog) {
1331:     PetscOptionsHasName(NULL,NULL,"-objects_dump",&flg1);
1332:     if (flg1) {
1333:       MPI_Comm local_comm;
1334:       char     string[64];

1336:       PetscOptionsGetString(NULL,NULL,"-objects_dump",string,64,NULL);
1337:       MPI_Comm_dup(MPI_COMM_WORLD,&local_comm);
1338:       PetscSequentialPhaseBegin_Private(local_comm,1);
1339:       PetscObjectsDump(stdout,(string[0] == 'a') ? PETSC_TRUE : PETSC_FALSE);
1340:       PetscSequentialPhaseEnd_Private(local_comm,1);
1341:       MPI_Comm_free(&local_comm);
1342:     }
1343:   }
1344: #endif

1346: #if defined(PETSC_USE_LOG)
1347:   PetscObjectsCounts    = 0;
1348:   PetscObjectsMaxCounts = 0;
1349:   PetscFree(PetscObjects);
1350: #endif

1352:   /*
1353:      Destroy any packages that registered a finalize
1354:   */
1355:   PetscRegisterFinalizeAll();

1357: #if defined(PETSC_USE_LOG)
1358:   PetscLogDestroy();
1359: #endif

1361:   /*
1362:      Print PetscFunctionLists that have not been properly freed

1364:   PetscFunctionListPrintAll();
1365:   */

1367:   if (petsc_history) {
1368:     PetscCloseHistoryFile(&petsc_history);
1369:     petsc_history = 0;
1370:   }
1371:   PetscOptionsHelpPrintedDestroy(&PetscOptionsHelpPrintedSingleton);

1373:   PetscInfoAllow(PETSC_FALSE,NULL);

1375: #if !defined(PETSC_HAVE_THREADSAFETY)
1376:   {
1377:     char fname[PETSC_MAX_PATH_LEN];
1378:     FILE *fd;
1379:     int  err;

1381:     fname[0] = 0;

1383:     PetscOptionsGetString(NULL,NULL,"-malloc_dump",fname,250,&flg1);
1384:     flg2 = PETSC_FALSE;
1385:     PetscOptionsGetBool(NULL,NULL,"-malloc_test",&flg2,NULL);
1386: #if defined(PETSC_USE_DEBUG)
1387:     if (PETSC_RUNNING_ON_VALGRIND) flg2 = PETSC_FALSE;
1388: #else
1389:     flg2 = PETSC_FALSE;         /* Skip reporting for optimized builds regardless of -malloc_test */
1390: #endif
1391:     if (flg1 && fname[0]) {
1392:       char sname[PETSC_MAX_PATH_LEN];

1394:       PetscSNPrintf(sname,PETSC_MAX_PATH_LEN,"%s_%d",fname,rank);
1395:       fd   = fopen(sname,"w"); if (!fd) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Cannot open log file: %s",sname);
1396:       PetscMallocDump(fd);
1397:       err  = fclose(fd);
1398:       if (err) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SYS,"fclose() failed on file");
1399:     } else if (flg1 || flg2) {
1400:       MPI_Comm local_comm;

1402:       MPI_Comm_dup(MPI_COMM_WORLD,&local_comm);
1403:       PetscSequentialPhaseBegin_Private(local_comm,1);
1404:       PetscMallocDump(stdout);
1405:       PetscSequentialPhaseEnd_Private(local_comm,1);
1406:       MPI_Comm_free(&local_comm);
1407:     }
1408:   }

1410:   {
1411:     char fname[PETSC_MAX_PATH_LEN];
1412:     FILE *fd = NULL;

1414:     fname[0] = 0;

1416:     PetscOptionsGetString(NULL,NULL,"-malloc_log",fname,250,&flg1);
1417:     PetscOptionsHasName(NULL,NULL,"-malloc_log_threshold",&flg2);
1418:     if (flg1 && fname[0]) {
1419:       int err;

1421:       if (!rank) {
1422:         fd = fopen(fname,"w");
1423:         if (!fd) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Cannot open log file: %s",fname);
1424:       }
1425:       PetscMallocDumpLog(fd);
1426:       if (fd) {
1427:         err = fclose(fd);
1428:         if (err) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SYS,"fclose() failed on file");
1429:       }
1430:     } else if (flg1 || flg2) {
1431:       PetscMallocDumpLog(stdout);
1432:     }
1433:   }
1434: #endif

1436:   /*
1437:      Close any open dynamic libraries
1438:   */
1439:   PetscFinalize_DynamicLibraries();

1441: #if defined(PETSC_HAVE_CUDA)
1442:   flg  = PETSC_TRUE;
1443:   PetscOptionsGetBool(NULL,NULL,"-cublas",&flg,NULL);
1444:   if (flg) {
1445:     PetscInt p;
1446:     for (p = 0; p < PetscGlobalSize; ++p) {
1447:       if (p == PetscGlobalRank) {
1448:         if (cublasv2handle) {
1449:           cberr = cublasDestroy(cublasv2handle);CHKERRCUBLAS(cberr);
1450:         }
1451:       }
1452:       MPI_Barrier(PETSC_COMM_WORLD);
1453:     }
1454:   }
1455: #endif

1457:   /* Can be destroyed only after all the options are used */
1458:   PetscOptionsDestroyDefault();

1460:   PetscGlobalArgc = 0;
1461:   PetscGlobalArgs = 0;

1463:   PetscFreeMPIResources();

1465:   /*
1466:      Destroy any known inner MPI_Comm's and attributes pointing to them
1467:      Note this will not destroy any new communicators the user has created.

1469:      If all PETSc objects were not destroyed those left over objects will have hanging references to
1470:      the MPI_Comms that were freed; but that is ok because those PETSc objects will never be used again
1471:  */
1472:   {
1473:     PetscCommCounter *counter;
1474:     PetscMPIInt      flg;
1475:     MPI_Comm         icomm;
1476:     union {MPI_Comm comm; void *ptr;} ucomm;
1477:     MPI_Attr_get(PETSC_COMM_SELF,Petsc_InnerComm_keyval,&ucomm,&flg);
1478:     if (flg) {
1479:       icomm = ucomm.comm;
1480:       MPI_Attr_get(icomm,Petsc_Counter_keyval,&counter,&flg);
1481:       if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_CORRUPT,"Inner MPI_Comm does not have expected tag/name counter, problem with corrupted memory");

1483:       MPI_Attr_delete(PETSC_COMM_SELF,Petsc_InnerComm_keyval);
1484:       MPI_Attr_delete(icomm,Petsc_Counter_keyval);
1485:       MPI_Comm_free(&icomm);
1486:     }
1487:     MPI_Attr_get(PETSC_COMM_WORLD,Petsc_InnerComm_keyval,&ucomm,&flg);
1488:     if (flg) {
1489:       icomm = ucomm.comm;
1490:       MPI_Attr_get(icomm,Petsc_Counter_keyval,&counter,&flg);
1491:       if (!flg) SETERRQ(PETSC_COMM_WORLD,PETSC_ERR_ARG_CORRUPT,"Inner MPI_Comm does not have expected tag/name counter, problem with corrupted memory");

1493:       MPI_Attr_delete(PETSC_COMM_WORLD,Petsc_InnerComm_keyval);
1494:       MPI_Attr_delete(icomm,Petsc_Counter_keyval);
1495:       MPI_Comm_free(&icomm);
1496:     }
1497:   }

1499:   MPI_Keyval_free(&Petsc_Counter_keyval);
1500:   MPI_Keyval_free(&Petsc_InnerComm_keyval);
1501:   MPI_Keyval_free(&Petsc_OuterComm_keyval);

1503:   PetscSpinlockDestroy(&PetscViewerASCIISpinLockOpen);
1504:   PetscSpinlockDestroy(&PetscViewerASCIISpinLockStdout);
1505:   PetscSpinlockDestroy(&PetscViewerASCIISpinLockStderr);
1506:   PetscSpinlockDestroy(&PetscCommSpinLock);

1508:   if (PetscBeganMPI) {
1509: #if defined(PETSC_HAVE_MPI_FINALIZED)
1510:     PetscMPIInt flag;
1511:     MPI_Finalized(&flag);
1512:     if (flag) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_LIB,"MPI_Finalize() has already been called, even though MPI_Init() was called by PetscInitialize()");
1513: #endif
1514:     MPI_Finalize();
1515:   }
1516: /*

1518:      Note: In certain cases PETSC_COMM_WORLD is never MPI_Comm_free()ed because
1519:    the communicator has some outstanding requests on it. Specifically if the
1520:    flag PETSC_HAVE_BROKEN_REQUEST_FREE is set (for IBM MPI implementation). See
1521:    src/vec/utils/vpscat.c. Due to this the memory allocated in PetscCommDuplicate()
1522:    is never freed as it should be. Thus one may obtain messages of the form
1523:    [ 1] 8 bytes PetscCommDuplicate() line 645 in src/sys/mpiu.c indicating the
1524:    memory was not freed.

1526: */
1527:   PetscMallocClear();

1529:   PetscInitializeCalled = PETSC_FALSE;
1530:   PetscFinalizeCalled   = PETSC_TRUE;
1531:   return(0);
1532: }

1534: #if defined(PETSC_MISSING_LAPACK_lsame_)
1535: PETSC_EXTERN int lsame_(char *a,char *b)
1536: {
1537:   if (*a == *b) return 1;
1538:   if (*a + 32 == *b) return 1;
1539:   if (*a - 32 == *b) return 1;
1540:   return 0;
1541: }
1542: #endif

1544: #if defined(PETSC_MISSING_LAPACK_lsame)
1545: PETSC_EXTERN int lsame(char *a,char *b)
1546: {
1547:   if (*a == *b) return 1;
1548:   if (*a + 32 == *b) return 1;
1549:   if (*a - 32 == *b) return 1;
1550:   return 0;
1551: }
1552: #endif