/* This file defines part of the initialization of PETSc This file uses regular malloc and free because it cannot be known what malloc is being used until it has already processed the input. */ #include /*I "petscsys.h" I*/ #include #include #include #if defined(PETSC_USE_LOG) PETSC_INTERN PetscErrorCode PetscLogInitialize(void); #endif #if defined(PETSC_HAVE_SYS_SYSINFO_H) #include #endif #if defined(PETSC_HAVE_UNISTD_H) #include #endif #if defined(PETSC_HAVE_CUDA) #include #include #endif #if defined(PETSC_HAVE_HIP) #include #endif #if defined(PETSC_HAVE_DEVICE) #if defined(PETSC_HAVE_OMPI_MAJOR_VERSION) #include "mpi-ext.h" /* Needed for OpenMPI CUDA-aware check */ #endif #endif #if defined(PETSC_HAVE_VIENNACL) PETSC_EXTERN PetscErrorCode PetscViennaCLInit(); #endif /* ------------------------Nasty global variables -------------------------------*/ /* Indicates if PETSc started up MPI, or it was already started before PETSc was initialized. */ PetscBool PetscBeganMPI = PETSC_FALSE; PetscBool PetscErrorHandlingInitialized = PETSC_FALSE; PetscBool PetscInitializeCalled = PETSC_FALSE; PetscBool PetscFinalizeCalled = PETSC_FALSE; PetscMPIInt PetscGlobalRank = -1; PetscMPIInt PetscGlobalSize = -1; #if defined(PETSC_HAVE_KOKKOS) PetscBool PetscBeganKokkos = PETSC_FALSE; #endif PetscBool use_gpu_aware_mpi = PETSC_TRUE; PetscBool PetscCreatedGpuObjects = PETSC_FALSE; #if defined(PETSC_HAVE_COMPLEX) #if defined(PETSC_COMPLEX_INSTANTIATE) template <> class std::complex; /* instantiate complex template class */ #endif #if !defined(PETSC_HAVE_MPI_C_DOUBLE_COMPLEX) MPI_Datatype MPIU_C_DOUBLE_COMPLEX; MPI_Datatype MPIU_C_COMPLEX; #endif /*MC PETSC_i - the imaginary number i Synopsis: #include PetscComplex PETSC_i; Level: beginner Note: Complex numbers are automatically available if PETSc located a working complex implementation .seealso: PetscRealPart(), PetscImaginaryPart(), PetscRealPartComplex(), PetscImaginaryPartComplex() M*/ PetscComplex PETSC_i; #endif #if defined(PETSC_USE_REAL___FLOAT128) MPI_Datatype MPIU___FLOAT128 = 0; #if defined(PETSC_HAVE_COMPLEX) MPI_Datatype MPIU___COMPLEX128 = 0; #endif #elif defined(PETSC_USE_REAL___FP16) MPI_Datatype MPIU___FP16 = 0; #endif MPI_Datatype MPIU_2SCALAR = 0; #if defined(PETSC_USE_64BIT_INDICES) MPI_Datatype MPIU_2INT = 0; #endif MPI_Datatype MPIU_BOOL; MPI_Datatype MPIU_ENUM; MPI_Datatype MPIU_FORTRANADDR; MPI_Datatype MPIU_SIZE_T; /* Function that is called to display all error messages */ PetscErrorCode (*PetscErrorPrintf)(const char [],...) = PetscErrorPrintfDefault; PetscErrorCode (*PetscHelpPrintf)(MPI_Comm,const char [],...) = PetscHelpPrintfDefault; PetscErrorCode (*PetscVFPrintf)(FILE*,const char[],va_list) = PetscVFPrintfDefault; /* This is needed to turn on/off GPU synchronization */ PetscBool PetscViennaCLSynchronize = PETSC_FALSE; /* ------------------------------------------------------------------------------*/ /* Optional file where all PETSc output from various prints is saved */ PETSC_INTERN FILE *petsc_history; FILE *petsc_history = NULL; PetscErrorCode PetscOpenHistoryFile(const char filename[],FILE **fd) { PetscErrorCode ierr; PetscMPIInt rank,size; char pfile[PETSC_MAX_PATH_LEN],pname[PETSC_MAX_PATH_LEN],fname[PETSC_MAX_PATH_LEN],date[64]; char version[256]; PetscFunctionBegin; ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr); if (!rank) { char arch[10]; int err; ierr = PetscGetArchType(arch,10);CHKERRQ(ierr); ierr = PetscGetDate(date,64);CHKERRQ(ierr); ierr = PetscGetVersion(version,256);CHKERRQ(ierr); ierr = MPI_Comm_size(PETSC_COMM_WORLD,&size);CHKERRQ(ierr); if (filename) { ierr = PetscFixFilename(filename,fname);CHKERRQ(ierr); } else { ierr = PetscGetHomeDirectory(pfile,sizeof(pfile));CHKERRQ(ierr); ierr = PetscStrlcat(pfile,"/.petschistory",sizeof(pfile));CHKERRQ(ierr); ierr = PetscFixFilename(pfile,fname);CHKERRQ(ierr); } *fd = fopen(fname,"a"); if (!fd) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_FILE_OPEN,"Cannot open file: %s",fname); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"----------------------------------------\n");CHKERRQ(ierr); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"%s %s\n",version,date);CHKERRQ(ierr); ierr = PetscGetProgramName(pname,sizeof(pname));CHKERRQ(ierr); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"%s on a %s, %d proc. with options:\n",pname,arch,size);CHKERRQ(ierr); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"----------------------------------------\n");CHKERRQ(ierr); err = fflush(*fd); if (err) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SYS,"fflush() failed on file"); } PetscFunctionReturn(0); } PETSC_INTERN PetscErrorCode PetscCloseHistoryFile(FILE **fd) { PetscErrorCode ierr; PetscMPIInt rank; char date[64]; int err; PetscFunctionBegin; ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr); if (!rank) { ierr = PetscGetDate(date,64);CHKERRQ(ierr); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"----------------------------------------\n");CHKERRQ(ierr); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"Finished at %s\n",date);CHKERRQ(ierr); ierr = PetscFPrintf(PETSC_COMM_SELF,*fd,"----------------------------------------\n");CHKERRQ(ierr); err = fflush(*fd); if (err) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SYS,"fflush() failed on file"); err = fclose(*fd); if (err) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SYS,"fclose() failed on file"); } PetscFunctionReturn(0); } /* ------------------------------------------------------------------------------*/ /* This is ugly and probably belongs somewhere else, but I want to be able to put a true MPI abort error handler with command line args. This is so MPI errors in the debugger will leave all the stack frames. The default MP_Abort() cleans up and exits thus providing no useful information in the debugger hence we call abort() instead of MPI_Abort(). */ void Petsc_MPI_AbortOnError(MPI_Comm *comm,PetscMPIInt *flag,...) { PetscFunctionBegin; (*PetscErrorPrintf)("MPI error %d\n",*flag); abort(); } void Petsc_MPI_DebuggerOnError(MPI_Comm *comm,PetscMPIInt *flag,...) { PetscErrorCode ierr; PetscFunctionBegin; (*PetscErrorPrintf)("MPI error %d\n",*flag); ierr = PetscAttachDebugger(); if (ierr) PETSCABORT(*comm,*flag); /* hopeless so get out */ } /*@C PetscEnd - Calls PetscFinalize() and then ends the program. This is useful if one wishes a clean exit somewhere deep in the program. Collective on PETSC_COMM_WORLD Options Database Keys are the same as for PetscFinalize() Level: advanced Note: See PetscInitialize() for more general runtime options. .seealso: PetscInitialize(), PetscOptionsView(), PetscMallocDump(), PetscMPIDump(), PetscFinalize() @*/ PetscErrorCode PetscEnd(void) { PetscFunctionBegin; PetscFinalize(); exit(0); return 0; } PetscBool PetscOptionsPublish = PETSC_FALSE; PETSC_INTERN PetscErrorCode PetscSetUseHBWMalloc_Private(void); PETSC_INTERN PetscBool petscsetmallocvisited; static char emacsmachinename[256]; PetscErrorCode (*PetscExternalVersionFunction)(MPI_Comm) = NULL; PetscErrorCode (*PetscExternalHelpFunction)(MPI_Comm) = NULL; /*@C PetscSetHelpVersionFunctions - Sets functions that print help and version information before the PETSc help and version information is printed. Must call BEFORE PetscInitialize(). This routine enables a "higher-level" package that uses PETSc to print its messages first. Input Parameter: + help - the help function (may be NULL) - version - the version function (may be NULL) Level: developer @*/ PetscErrorCode PetscSetHelpVersionFunctions(PetscErrorCode (*help)(MPI_Comm),PetscErrorCode (*version)(MPI_Comm)) { PetscFunctionBegin; PetscExternalHelpFunction = help; PetscExternalVersionFunction = version; PetscFunctionReturn(0); } #if defined(PETSC_USE_LOG) PETSC_INTERN PetscBool PetscObjectsLog; #endif void PetscMPI_Comm_eh(MPI_Comm *comm, PetscMPIInt *err, ...) { if (PetscUnlikely(*err)) { PETSC_UNUSED PetscMPIInt len; char errstring[MPI_MAX_ERROR_STRING]; MPI_Error_string(*err,errstring,&len); PetscError(MPI_COMM_SELF,__LINE__,PETSC_FUNCTION_NAME,__FILE__,PETSC_MPI_ERROR_CODE,PETSC_ERROR_INITIAL,"Internal error in MPI: %s",errstring); } return; } /* CUPM stands for 'CUDA Programming Model', which is implemented in either CUDA or HIP. Use the following macros to define CUDA/HIP initialization related vars/routines. */ #if defined(PETSC_HAVE_CUDA) typedef cudaError_t cupmError_t; typedef struct cudaDeviceProp cupmDeviceProp; #define cupmGetDeviceCount(x) cudaGetDeviceCount(x) #define cupmGetDevice(x) cudaGetDevice(x) #define cupmSetDevice(x) cudaSetDevice(x) #define cupmSetDeviceFlags(x) cudaSetDeviceFlags(x) #define cupmGetDeviceProperties(x,y) cudaGetDeviceProperties(x,y) #define cupmGetLastError() cudaGetLastError() #define cupmDeviceMapHost cudaDeviceMapHost #define cupmSuccess cudaSuccess #define cupmErrorMemoryAllocation cudaErrorMemoryAllocation #define cupmErrorLaunchOutOfResources cudaErrorLaunchOutOfResources #define cupmErrorSetOnActiveProcess cudaErrorSetOnActiveProcess #define CHKERRCUPM(x) CHKERRCUDA(x) #define PetscCUPMBLASInitializeHandle() PetscCUBLASInitializeHandle() #define PetscCUPMSOLVERDnInitializeHandle() PetscCUSOLVERDnInitializeHandle() #define PetscCUPMInitialize PetscCUDAInitialize #define PetscCUPMInitialized PetscCUDAInitialized #define PetscCUPMInitializeCheck PetscCUDAInitializeCheck #define PetscCUPMInitializeAndView PetscCUDAInitializeAndView #define PetscCUPMSynchronize PetscCUDASynchronize #define PetscNotUseCUPM PetscNotUseCUDA #define cupmOptionsStr "CUDA options" #define cupmSetDeviceStr "-cuda_device" #define cupmViewStr "-cuda_view" #define cupmSynchronizeStr "-cuda_synchronize" #define PetscCUPMInitializeStr "PetscCUDAInitialize" #define PetscOptionsCheckCUPM PetscOptionsCheckCUDA #define PetscMPICUPMAwarenessCheck PetscMPICUDAAwarenessCheck #include "cupminit.inc" #endif #if defined(PETSC_HAVE_HIP) typedef hipError_t cupmError_t; typedef hipDeviceProp_t cupmDeviceProp; #define cupmGetDeviceCount(x) hipGetDeviceCount(x) #define cupmGetDevice(x) hipGetDevice(x) #define cupmSetDevice(x) hipSetDevice(x) #define cupmSetDeviceFlags(x) hipSetDeviceFlags(x) #define cupmGetDeviceProperties(x,y) hipGetDeviceProperties(x,y) #define cupmGetLastError() hipGetLastError() #define cupmDeviceMapHost hipDeviceMapHost #define cupmSuccess hipSuccess #define cupmErrorMemoryAllocation hipErrorMemoryAllocation #define cupmErrorLaunchOutOfResources hipErrorLaunchOutOfResources #define cupmErrorSetOnActiveProcess hipErrorSetOnActiveProcess #define CHKERRCUPM(x) CHKERRQ((x)==hipSuccess? 0:PETSC_ERR_LIB) #define PetscCUPMBLASInitializeHandle() 0 #define PetscCUPMSOLVERDnInitializeHandle() 0 #define PetscCUPMInitialize PetscHIPInitialize #define PetscCUPMInitialized PetscHIPInitialized #define PetscCUPMInitializeCheck PetscHIPInitializeCheck #define PetscCUPMInitializeAndView PetscHIPInitializeAndView #define PetscCUPMSynchronize PetscHIPSynchronize #define PetscNotUseCUPM PetscNotUseHIP #define cupmOptionsStr "HIP options" #define cupmSetDeviceStr "-hip_device" #define cupmViewStr "-hip_view" #define cupmSynchronizeStr "-hip_synchronize" #define PetscCUPMInitializeStr "PetscHIPInitialize" #define PetscOptionsCheckCUPM PetscOptionsCheckHIP #define PetscMPICUPMAwarenessCheck PetscMPIHIPAwarenessCheck #include "cupminit.inc" #endif PETSC_INTERN PetscErrorCode PetscOptionsCheckInitial_Private(const char help[]) { char string[64]; MPI_Comm comm = PETSC_COMM_WORLD; PetscBool flg1 = PETSC_FALSE,flg2 = PETSC_FALSE,flg3 = PETSC_FALSE,flag,hasHelp,logView; PetscErrorCode ierr; PetscReal si; PetscInt intensity; int i; PetscMPIInt rank; char version[256]; #if defined(PETSC_USE_LOG) char mname[PETSC_MAX_PATH_LEN]; PetscViewerFormat format; PetscBool flg4 = PETSC_FALSE; #endif PetscFunctionBegin; ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr); #if !defined(PETSC_HAVE_THREADSAFETY) if (!(PETSC_RUNNING_ON_VALGRIND)) { /* Setup the memory management; support for tracing malloc() usage */ PetscBool mdebug = PETSC_FALSE, eachcall = PETSC_FALSE, initializenan = PETSC_FALSE, mlog = PETSC_FALSE; if (PetscDefined(USE_DEBUG)) { mdebug = PETSC_TRUE; initializenan = PETSC_TRUE; ierr = PetscOptionsHasName(NULL,NULL,"-malloc_test",&flg1);CHKERRQ(ierr); } else { /* don't warn about unused option */ ierr = PetscOptionsHasName(NULL,NULL,"-malloc_test",&flg1);CHKERRQ(ierr); flg1 = PETSC_FALSE; } ierr = PetscOptionsGetBool(NULL,NULL,"-malloc_debug",&flg2,&flg3);CHKERRQ(ierr); if (flg1 || flg2) { mdebug = PETSC_TRUE; eachcall = PETSC_TRUE; initializenan = PETSC_TRUE; } else if (flg3 && !flg2) { mdebug = PETSC_FALSE; eachcall = PETSC_FALSE; initializenan = PETSC_FALSE; } ierr = PetscOptionsGetBool(NULL,NULL,"-malloc_requested_size",&flg1,&flg2);CHKERRQ(ierr); if (flg2) {ierr = PetscMallocLogRequestedSizeSet(flg1);CHKERRQ(ierr);} ierr = PetscOptionsHasName(NULL,NULL,"-malloc_view",&mlog);CHKERRQ(ierr); if (mlog) { mdebug = PETSC_TRUE; } /* the next line is deprecated */ ierr = PetscOptionsGetBool(NULL,NULL,"-malloc",&mdebug,NULL);CHKERRQ(ierr); ierr = PetscOptionsGetBool(NULL,NULL,"-malloc_dump",&mdebug,NULL);CHKERRQ(ierr); ierr = PetscOptionsGetBool(NULL,NULL,"-log_view_memory",&mdebug,NULL);CHKERRQ(ierr); if (mdebug) { ierr = PetscMallocSetDebug(eachcall,initializenan);CHKERRQ(ierr); } if (mlog) { PetscReal logthreshold = 0; ierr = PetscOptionsGetReal(NULL,NULL,"-malloc_view_threshold",&logthreshold,NULL);CHKERRQ(ierr); ierr = PetscMallocViewSet(logthreshold);CHKERRQ(ierr); } #if defined(PETSC_USE_LOG) ierr = PetscOptionsGetBool(NULL,NULL,"-log_view_memory",&PetscLogMemory,NULL);CHKERRQ(ierr); #endif } ierr = PetscOptionsGetBool(NULL,NULL,"-malloc_coalesce",&flg1,&flg2);CHKERRQ(ierr); if (flg2) {ierr = PetscMallocSetCoalesce(flg1);CHKERRQ(ierr);} flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-malloc_hbw",&flg1,NULL);CHKERRQ(ierr); /* ignore this option if malloc is already set */ if (flg1 && !petscsetmallocvisited) {ierr = PetscSetUseHBWMalloc_Private();CHKERRQ(ierr);} flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-malloc_info",&flg1,NULL);CHKERRQ(ierr); if (!flg1) { flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-memory_view",&flg1,NULL);CHKERRQ(ierr); } if (flg1) { ierr = PetscMemorySetGetMaximumUsage();CHKERRQ(ierr); } #endif #if defined(PETSC_USE_LOG) ierr = PetscOptionsHasName(NULL,NULL,"-objects_dump",&PetscObjectsLog);CHKERRQ(ierr); #endif /* Set the display variable for graphics */ ierr = PetscSetDisplay();CHKERRQ(ierr); /* Print main application help message */ ierr = PetscOptionsHasHelp(NULL,&hasHelp);CHKERRQ(ierr); if (help && hasHelp) { ierr = PetscPrintf(comm,help);CHKERRQ(ierr); ierr = PetscPrintf(comm,"----------------------------------------\n");CHKERRQ(ierr); } /* Print the PETSc version information */ ierr = PetscOptionsHasName(NULL,NULL,"-version",&flg1);CHKERRQ(ierr); if (flg1 || hasHelp) { /* Print "higher-level" package version message */ if (PetscExternalVersionFunction) { ierr = (*PetscExternalVersionFunction)(comm);CHKERRQ(ierr); } ierr = PetscGetVersion(version,256);CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"%s\n",version);CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"%s",PETSC_AUTHOR_INFO);CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"See docs/changes/index.html for recent updates.\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"See docs/faq.html for problems.\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"See docs/manualpages/index.html for help. \n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"Libraries linked from %s\n",PETSC_LIB_DIR);CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm,"----------------------------------------\n");CHKERRQ(ierr); } /* Print "higher-level" package help message */ if (hasHelp) { PetscBool hasHelpIntro; if (PetscExternalHelpFunction) { ierr = (*PetscExternalHelpFunction)(comm);CHKERRQ(ierr); } ierr = PetscOptionsHasHelpIntro_Internal(NULL,&hasHelpIntro);CHKERRQ(ierr); if (hasHelpIntro) { ierr = PetscOptionsDestroyDefault();CHKERRQ(ierr); ierr = PetscFreeMPIResources();CHKERRQ(ierr); ierr = MPI_Finalize();CHKERRQ(ierr); exit(0); } } /* Setup the error handling */ flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-on_error_abort",&flg1,NULL);CHKERRQ(ierr); if (flg1) { ierr = MPI_Comm_set_errhandler(comm,MPI_ERRORS_ARE_FATAL);CHKERRQ(ierr); ierr = PetscPushErrorHandler(PetscAbortErrorHandler,NULL);CHKERRQ(ierr); } flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-on_error_mpiabort",&flg1,NULL);CHKERRQ(ierr); if (flg1) { ierr = PetscPushErrorHandler(PetscMPIAbortErrorHandler,NULL);CHKERRQ(ierr);} flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-mpi_return_on_error",&flg1,NULL);CHKERRQ(ierr); if (flg1) { ierr = MPI_Comm_set_errhandler(comm,MPI_ERRORS_RETURN);CHKERRQ(ierr); } /* experimental */ flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-mpi_return_error_string",&flg1,NULL);CHKERRQ(ierr); if (flg1) { MPI_Errhandler eh; ierr = MPI_Comm_create_errhandler(PetscMPI_Comm_eh,&eh);CHKERRQ(ierr); ierr = MPI_Comm_set_errhandler(comm,eh);CHKERRQ(ierr); ierr = MPI_Errhandler_free(&eh);CHKERRQ(ierr); } flg1 = PETSC_FALSE; ierr = PetscOptionsGetBool(NULL,NULL,"-no_signal_handler",&flg1,NULL);CHKERRQ(ierr); if (!flg1) {ierr = PetscPushSignalHandler(PetscSignalHandlerDefault,(void*)0);CHKERRQ(ierr);} /* Setup debugger information */ ierr = PetscSetDefaultDebugger();CHKERRQ(ierr); ierr = PetscOptionsGetString(NULL,NULL,"-on_error_attach_debugger",string,sizeof(string),&flg1);CHKERRQ(ierr); if (flg1) { MPI_Errhandler err_handler; ierr = PetscSetDebuggerFromString(string);CHKERRQ(ierr); ierr = MPI_Comm_create_errhandler(Petsc_MPI_DebuggerOnError,&err_handler);CHKERRQ(ierr); ierr = MPI_Comm_set_errhandler(comm,err_handler);CHKERRQ(ierr); ierr = PetscPushErrorHandler(PetscAttachDebuggerErrorHandler,NULL);CHKERRQ(ierr); } ierr = PetscOptionsGetString(NULL,NULL,"-debug_terminal",string,sizeof(string),&flg1);CHKERRQ(ierr); if (flg1) { ierr = PetscSetDebugTerminal(string);CHKERRQ(ierr); } ierr = PetscOptionsGetString(NULL,NULL,"-start_in_debugger",string,sizeof(string),&flg1);CHKERRQ(ierr); ierr = PetscOptionsGetString(NULL,NULL,"-stop_for_debugger",string,sizeof(string),&flg2);CHKERRQ(ierr); if (flg1 || flg2) { PetscMPIInt size; PetscInt lsize,*ranks; MPI_Errhandler err_handler; /* we have to make sure that all processors have opened connections to all other processors, otherwise once the debugger has stated it is likely to receive a SIGUSR1 and kill the program. */ ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); if (size > 2) { PetscMPIInt dummy = 0; MPI_Status status; for (i=0; i\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," emacs jumps to error file\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -debugger_ranks [n1,n2,..] Ranks to start in debugger\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -debugger_pause [m] : delay (in seconds) to attach debugger\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -stop_for_debugger : prints message on how to attach debugger manually\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," waits the delay for you to attach\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -display display: Location where X window graphics and debuggers are displayed\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -no_signal_handler: do not trap error signals\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -mpi_return_on_error: MPI returns error code, rather than abort on internal error\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -fp_trap: stop on floating point exceptions\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," note on IBM RS6000 this slows run greatly\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -malloc_dump : dump list of unfreed memory at conclusion\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -malloc: use PETSc error checking malloc (deprecated, use -malloc_debug)\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -malloc no: don't use PETSc error checking malloc (deprecated, use -malloc_debug no)\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -malloc_info: prints total memory usage\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -malloc_view : keeps log of all memory allocations, displays in PetscFinalize()\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -malloc_debug : enables or disables extended checking for memory corruption\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -options_view: dump list of options inputted\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -options_left: dump list of unused options\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -options_left no: don't dump list of unused options\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -tmp tmpdir: alternative /tmp directory\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -shared_tmp: tmp directory is shared by all processors\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -not_shared_tmp: each processor has separate tmp directory\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -memory_view: print memory usage at end of run\n");CHKERRQ(ierr); #if defined(PETSC_USE_LOG) ierr = (*PetscHelpPrintf)(comm," -get_total_flops: total flops over all processors\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -log_view [:filename:[format]]: logging objects and events\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -log_trace [filename]: prints trace of all PETSc calls\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -log_exclude : exclude given classes from logging\n");CHKERRQ(ierr); #if defined(PETSC_HAVE_MPE) ierr = (*PetscHelpPrintf)(comm," -log_mpe: Also create logfile viewable through Jumpshot\n");CHKERRQ(ierr); #endif #endif #if defined(PETSC_USE_INFO) ierr = (*PetscHelpPrintf)(comm," -info [filename][:[~][:[~]self]]: print verbose information\n");CHKERRQ(ierr); #endif ierr = (*PetscHelpPrintf)(comm," -options_file : reads options from file\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -options_monitor: monitor options to standard output, including that set previously e.g. in option files\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -options_monitor_cancel: cancels all hardwired option monitors\n");CHKERRQ(ierr); ierr = (*PetscHelpPrintf)(comm," -petsc_sleep n: sleeps n seconds before running program\n");CHKERRQ(ierr); } #if defined(PETSC_HAVE_POPEN) { char machine[128]; ierr = PetscOptionsGetString(NULL,NULL,"-popen_machine",machine,sizeof(machine),&flg1);CHKERRQ(ierr); if (flg1) { ierr = PetscPOpenSetMachine(machine);CHKERRQ(ierr); } } #endif ierr = PetscOptionsGetReal(NULL,NULL,"-petsc_sleep",&si,&flg1);CHKERRQ(ierr); if (flg1) { ierr = PetscSleep(si);CHKERRQ(ierr); } #if defined(PETSC_HAVE_VIENNACL) ierr = PetscOptionsHasName(NULL,NULL,"-log_summary",&flg3);CHKERRQ(ierr); if (!flg3) { ierr = PetscOptionsHasName(NULL,NULL,"-log_view",&flg3);CHKERRQ(ierr); } ierr = PetscOptionsGetBool(NULL,NULL,"-viennacl_synchronize",&flg3,NULL);CHKERRQ(ierr); PetscViennaCLSynchronize = flg3; ierr = PetscViennaCLInit();CHKERRQ(ierr); #endif /* Creates the logging data structures; this is enabled even if logging is not turned on This is the last thing we do before returning to the user code to prevent having the logging numbers contaminated by any startup time associated with MPI and the GPUs */ #if defined(PETSC_USE_LOG) ierr = PetscLogInitialize();CHKERRQ(ierr); #endif PetscFunctionReturn(0); }