1e8597998SBarry Smith 25fdea053SToby Isaac #include <petsc/private/dmlabelimpl.h> 3af0996ceSBarry Smith #include <petsc/private/dmdaimpl.h> 4af0996ceSBarry Smith #include <petsc/private/dmpleximpl.h> 5af0996ceSBarry Smith #include <petsc/private/petscdsimpl.h> 6af0996ceSBarry Smith #include <petsc/private/petscfeimpl.h> 7af0996ceSBarry Smith #include <petsc/private/petscfvimpl.h> 8ed923d71SDave May #include <petsc/private/dmswarmimpl.h> 9e8597998SBarry Smith 10e8597998SBarry Smith static PetscBool DMPackageInitialized = PETSC_FALSE; 11e8597998SBarry Smith /*@C 12e8597998SBarry Smith DMFinalizePackage - This function finalizes everything in the DM package. It is called 13e8597998SBarry Smith from PetscFinalize(). 14e8597998SBarry Smith 15e8597998SBarry Smith Level: developer 16e8597998SBarry Smith 17e8597998SBarry Smith .keywords: AO, initialize, package 18e8597998SBarry Smith .seealso: PetscInitialize() 19e8597998SBarry Smith @*/ 20e8597998SBarry Smith PetscErrorCode DMFinalizePackage(void) 21e8597998SBarry Smith { 22e8597998SBarry Smith PetscErrorCode ierr; 23e8597998SBarry Smith 24e8597998SBarry Smith PetscFunctionBegin; 2577623264SMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscPartitionerList);CHKERRQ(ierr); 2637e93019SBarry Smith ierr = PetscFunctionListDestroy(&DMList);CHKERRQ(ierr); 27e8597998SBarry Smith DMPackageInitialized = PETSC_FALSE; 28e8597998SBarry Smith DMRegisterAllCalled = PETSC_FALSE; 2977623264SMatthew G. Knepley PetscPartitionerRegisterAllCalled = PETSC_FALSE; 30e8597998SBarry Smith PetscFunctionReturn(0); 31e8597998SBarry Smith } 32e8597998SBarry Smith 33e8597998SBarry Smith #if defined(PETSC_HAVE_HYPRE) 348cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatCreate_HYPREStruct(Mat); 3561710fbeSStefano Zampini PETSC_EXTERN PetscErrorCode MatCreate_HYPRESStruct(Mat); 36e8597998SBarry Smith #endif 37e8597998SBarry Smith 38e8597998SBarry Smith /*@C 39e8597998SBarry Smith DMInitializePackage - This function initializes everything in the DM package. It is called 40e8597998SBarry Smith from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to AOCreate() 41e8597998SBarry Smith or DMDACreate() when using static libraries. 42e8597998SBarry Smith 43e8597998SBarry Smith Level: developer 44e8597998SBarry Smith 45e8597998SBarry Smith .keywords: AO, initialize, package 46e8597998SBarry Smith .seealso: PetscInitialize() 47e8597998SBarry Smith @*/ 48607a6623SBarry Smith PetscErrorCode DMInitializePackage(void) 49e8597998SBarry Smith { 50e8597998SBarry Smith char logList[256]; 51e8597998SBarry Smith char *className; 52e8597998SBarry Smith PetscBool opt; 53e8597998SBarry Smith PetscErrorCode ierr; 54e8597998SBarry Smith 55e8597998SBarry Smith PetscFunctionBegin; 56e8597998SBarry Smith if (DMPackageInitialized) PetscFunctionReturn(0); 57e8597998SBarry Smith DMPackageInitialized = PETSC_TRUE; 58e8597998SBarry Smith 59e8597998SBarry Smith /* Register Classes */ 60e8597998SBarry Smith ierr = PetscClassIdRegister("Distributed Mesh",&DM_CLASSID);CHKERRQ(ierr); 6177623264SMatthew G. Knepley ierr = PetscClassIdRegister("GraphPartitioner",&PETSCPARTITIONER_CLASSID);CHKERRQ(ierr); 62e8597998SBarry Smith 63e8597998SBarry Smith #if defined(PETSC_HAVE_HYPRE) 64bdf89e91SBarry Smith ierr = MatRegister(MATHYPRESTRUCT, MatCreate_HYPREStruct);CHKERRQ(ierr); 6561710fbeSStefano Zampini ierr = MatRegister(MATHYPRESSTRUCT, MatCreate_HYPRESStruct);CHKERRQ(ierr); 66e8597998SBarry Smith #endif 675fdea053SToby Isaac ierr = PetscSectionSymRegister(PETSCSECTIONSYMLABEL,PetscSectionSymCreate_Label);CHKERRQ(ierr); 68e8597998SBarry Smith 69e8597998SBarry Smith /* Register Constructors */ 70607a6623SBarry Smith ierr = DMRegisterAll();CHKERRQ(ierr); 71e8597998SBarry Smith /* Register Events */ 72e8597998SBarry Smith ierr = PetscLogEventRegister("DMConvert", DM_CLASSID,&DM_Convert);CHKERRQ(ierr); 73e8597998SBarry Smith ierr = PetscLogEventRegister("DMGlobalToLocal", DM_CLASSID,&DM_GlobalToLocal);CHKERRQ(ierr); 74e8597998SBarry Smith ierr = PetscLogEventRegister("DMLocalToGlobal", DM_CLASSID,&DM_LocalToGlobal);CHKERRQ(ierr); 7547a35634SPatrick Farrell ierr = PetscLogEventRegister("DMLocatePoints", DM_CLASSID,&DM_LocatePoints);CHKERRQ(ierr); 7647a35634SPatrick Farrell ierr = PetscLogEventRegister("DMCoarsen", DM_CLASSID,&DM_Coarsen);CHKERRQ(ierr); 7742ac0407SBarry Smith ierr = PetscLogEventRegister("DMCreateInterp", DM_CLASSID,&DM_CreateInterpolation);CHKERRQ(ierr); 7842ac0407SBarry Smith ierr = PetscLogEventRegister("DMCreateRestrict", DM_CLASSID,&DM_CreateRestriction);CHKERRQ(ierr); 79e8597998SBarry Smith 80e8597998SBarry Smith ierr = PetscLogEventRegister("DMDALocalADFunc", DM_CLASSID,&DMDA_LocalADFunction);CHKERRQ(ierr); 81e8597998SBarry Smith 8277623264SMatthew G. Knepley ierr = PetscLogEventRegister("Mesh Partition", PETSCPARTITIONER_CLASSID,&PETSCPARTITIONER_Partition);CHKERRQ(ierr); 831b858b30SMichael Lange ierr = PetscLogEventRegister("Mesh Migration", DM_CLASSID,&DMPLEX_Migrate);CHKERRQ(ierr); 8475a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexInterp", DM_CLASSID,&DMPLEX_Interpolate);CHKERRQ(ierr); 85e8597998SBarry Smith ierr = PetscLogEventRegister("DMPlexDistribute", DM_CLASSID,&DMPLEX_Distribute);CHKERRQ(ierr); 8675a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexDistCones", DM_CLASSID,&DMPLEX_DistributeCones);CHKERRQ(ierr); 8775a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexDistLabels", DM_CLASSID,&DMPLEX_DistributeLabels);CHKERRQ(ierr); 881337e6e5SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexDistribSF", DM_CLASSID,&DMPLEX_DistributeSF);CHKERRQ(ierr); 893d822a50SMichael Lange ierr = PetscLogEventRegister("DMPlexDistribOL", DM_CLASSID,&DMPLEX_DistributeOverlap);CHKERRQ(ierr); 9075a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexDistField", DM_CLASSID,&DMPLEX_DistributeField);CHKERRQ(ierr); 9175a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexDistData", DM_CLASSID,&DMPLEX_DistributeData);CHKERRQ(ierr); 9225afeb17SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexInterpSF", DM_CLASSID,&DMPLEX_InterpolateSF);CHKERRQ(ierr); 93fa534816SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexGToNBegin", DM_CLASSID,&DMPLEX_GlobalToNaturalBegin);CHKERRQ(ierr); 94fa534816SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexGToNEnd", DM_CLASSID,&DMPLEX_GlobalToNaturalEnd);CHKERRQ(ierr); 95fa534816SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexNToGBegin", DM_CLASSID,&DMPLEX_NaturalToGlobalBegin);CHKERRQ(ierr); 96fa534816SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexNToGEnd", DM_CLASSID,&DMPLEX_NaturalToGlobalEnd);CHKERRQ(ierr); 97e8597998SBarry Smith ierr = PetscLogEventRegister("DMPlexStratify", DM_CLASSID,&DMPLEX_Stratify);CHKERRQ(ierr); 9875a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexPrealloc", DM_CLASSID,&DMPLEX_Preallocate);CHKERRQ(ierr); 9975a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexResidualFE", DM_CLASSID,&DMPLEX_ResidualFEM);CHKERRQ(ierr); 10075a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexJacobianFE", DM_CLASSID,&DMPLEX_JacobianFEM);CHKERRQ(ierr); 10175a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexInterpFE", DM_CLASSID,&DMPLEX_InterpolatorFEM);CHKERRQ(ierr); 10275a69067SMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexInjectorFE", DM_CLASSID,&DMPLEX_InjectorFEM);CHKERRQ(ierr); 103c1f031eeSMatthew G. Knepley ierr = PetscLogEventRegister("DMPlexIntegralFEM", DM_CLASSID,&DMPLEX_IntegralFEM);CHKERRQ(ierr); 1043b3bc66dSMichael Lange ierr = PetscLogEventRegister("DMPlexCreateGmsh", DM_CLASSID,&DMPLEX_CreateGmsh);CHKERRQ(ierr); 105ed923d71SDave May 106ed923d71SDave May ierr = PetscLogEventRegister("DMSwarmMigrate", DM_CLASSID,&DMSWARM_Migrate);CHKERRQ(ierr); 107ed923d71SDave May ierr = PetscLogEventRegister("DMSwarmDETSetup", DM_CLASSID,&DMSWARM_DataExchangerTopologySetup);CHKERRQ(ierr); 108ed923d71SDave May ierr = PetscLogEventRegister("DMSwarmDExBegin", DM_CLASSID,&DMSWARM_DataExchangerBegin);CHKERRQ(ierr); 109ed923d71SDave May ierr = PetscLogEventRegister("DMSwarmDExEnd", DM_CLASSID,&DMSWARM_DataExchangerEnd);CHKERRQ(ierr); 110ed923d71SDave May ierr = PetscLogEventRegister("DMSwarmDESendCnt", DM_CLASSID,&DMSWARM_DataExchangerSendCount);CHKERRQ(ierr); 111ed923d71SDave May ierr = PetscLogEventRegister("DMSwarmDEPack", DM_CLASSID,&DMSWARM_DataExchangerPack);CHKERRQ(ierr); 112f2b2bee7SDave May ierr = PetscLogEventRegister("DMSwarmAddPnts", DM_CLASSID,&DMSWARM_AddPoints);CHKERRQ(ierr); 113f2b2bee7SDave May ierr = PetscLogEventRegister("DMSwarmRmvPnts", DM_CLASSID,&DMSWARM_RemovePoints);CHKERRQ(ierr); 114f2b2bee7SDave May ierr = PetscLogEventRegister("DMSwarmSort", DM_CLASSID,&DMSWARM_Sort);CHKERRQ(ierr); 115f2b2bee7SDave May ierr = PetscLogEventRegister("DMSwarmSetSizes", DM_CLASSID,&DMSWARM_SetSizes);CHKERRQ(ierr); 116ed923d71SDave May 117e8597998SBarry Smith /* Process info exclusions */ 118c5929fdfSBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr); 119e8597998SBarry Smith if (opt) { 120e8597998SBarry Smith ierr = PetscStrstr(logList, "da", &className);CHKERRQ(ierr); 121e8597998SBarry Smith if (className) { 122e8597998SBarry Smith ierr = PetscInfoDeactivateClass(DM_CLASSID);CHKERRQ(ierr); 123e8597998SBarry Smith } 124e8597998SBarry Smith } 125e8597998SBarry Smith /* Process summary exclusions */ 1267bf5a629SBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr); 127e8597998SBarry Smith if (opt) { 128e8597998SBarry Smith ierr = PetscStrstr(logList, "da", &className);CHKERRQ(ierr); 129e8597998SBarry Smith if (className) { 130e8597998SBarry Smith ierr = PetscLogEventDeactivateClass(DM_CLASSID);CHKERRQ(ierr); 131e8597998SBarry Smith } 132e8597998SBarry Smith } 133*3a074057SBarry Smith ierr = DMPlexGenerateRegisterAll();CHKERRQ(ierr); 134*3a074057SBarry Smith ierr = PetscRegisterFinalize(DMPlexGenerateRegisterDestroy);CHKERRQ(ierr); 135e8597998SBarry Smith ierr = PetscRegisterFinalize(DMFinalizePackage);CHKERRQ(ierr); 136e8597998SBarry Smith PetscFunctionReturn(0); 137e8597998SBarry Smith } 13806759e06SMatthew G. Knepley #include <petscfe.h> 139e8597998SBarry Smith 14006759e06SMatthew G. Knepley static PetscBool PetscFEPackageInitialized = PETSC_FALSE; 14106759e06SMatthew G. Knepley /*@C 14206759e06SMatthew G. Knepley PetscFEFinalizePackage - This function finalizes everything in the PetscFE package. It is called 14306759e06SMatthew G. Knepley from PetscFinalize(). 144e8597998SBarry Smith 14506759e06SMatthew G. Knepley Level: developer 14606759e06SMatthew G. Knepley 14706759e06SMatthew G. Knepley .keywords: PetscFE, initialize, package 14806759e06SMatthew G. Knepley .seealso: PetscInitialize() 14906759e06SMatthew G. Knepley @*/ 15006759e06SMatthew G. Knepley PetscErrorCode PetscFEFinalizePackage(void) 15106759e06SMatthew G. Knepley { 15206759e06SMatthew G. Knepley PetscErrorCode ierr; 15306759e06SMatthew G. Knepley 15406759e06SMatthew G. Knepley PetscFunctionBegin; 15506759e06SMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscSpaceList);CHKERRQ(ierr); 15606759e06SMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscDualSpaceList);CHKERRQ(ierr); 1570483ade4SMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscFEList);CHKERRQ(ierr); 15806759e06SMatthew G. Knepley PetscFEPackageInitialized = PETSC_FALSE; 15906759e06SMatthew G. Knepley PetscSpaceRegisterAllCalled = PETSC_FALSE; 16006759e06SMatthew G. Knepley PetscDualSpaceRegisterAllCalled = PETSC_FALSE; 1610483ade4SMatthew G. Knepley PetscFERegisterAllCalled = PETSC_FALSE; 16206759e06SMatthew G. Knepley PetscFunctionReturn(0); 16306759e06SMatthew G. Knepley } 16406759e06SMatthew G. Knepley 16506759e06SMatthew G. Knepley /*@C 16606759e06SMatthew G. Knepley PetscFEInitializePackage - This function initializes everything in the FE package. It is called 16706759e06SMatthew G. Knepley from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscSpaceCreate() 16806759e06SMatthew G. Knepley when using static libraries. 16906759e06SMatthew G. Knepley 17006759e06SMatthew G. Knepley Level: developer 17106759e06SMatthew G. Knepley 17206759e06SMatthew G. Knepley .keywords: PetscFE, initialize, package 17306759e06SMatthew G. Knepley .seealso: PetscInitialize() 17406759e06SMatthew G. Knepley @*/ 17506759e06SMatthew G. Knepley PetscErrorCode PetscFEInitializePackage(void) 17606759e06SMatthew G. Knepley { 17706759e06SMatthew G. Knepley char logList[256]; 17806759e06SMatthew G. Knepley char *className; 17906759e06SMatthew G. Knepley PetscBool opt; 18006759e06SMatthew G. Knepley PetscErrorCode ierr; 18106759e06SMatthew G. Knepley 18206759e06SMatthew G. Knepley PetscFunctionBegin; 18306759e06SMatthew G. Knepley if (PetscFEPackageInitialized) PetscFunctionReturn(0); 18406759e06SMatthew G. Knepley PetscFEPackageInitialized = PETSC_TRUE; 18506759e06SMatthew G. Knepley 18606759e06SMatthew G. Knepley /* Register Classes */ 18706759e06SMatthew G. Knepley ierr = PetscClassIdRegister("Linear Space", &PETSCSPACE_CLASSID);CHKERRQ(ierr); 18806759e06SMatthew G. Knepley ierr = PetscClassIdRegister("Dual Space", &PETSCDUALSPACE_CLASSID);CHKERRQ(ierr); 18906759e06SMatthew G. Knepley ierr = PetscClassIdRegister("FE Space", &PETSCFE_CLASSID);CHKERRQ(ierr); 19006759e06SMatthew G. Knepley 19106759e06SMatthew G. Knepley /* Register Constructors */ 19206759e06SMatthew G. Knepley ierr = PetscSpaceRegisterAll();CHKERRQ(ierr); 1930483ade4SMatthew G. Knepley ierr = PetscDualSpaceRegisterAll();CHKERRQ(ierr); 1940483ade4SMatthew G. Knepley ierr = PetscFERegisterAll();CHKERRQ(ierr); 19506759e06SMatthew G. Knepley /* Register Events */ 19606759e06SMatthew G. Knepley /* Process info exclusions */ 197c5929fdfSBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr); 19806759e06SMatthew G. Knepley if (opt) { 19906759e06SMatthew G. Knepley ierr = PetscStrstr(logList, "fe", &className);CHKERRQ(ierr); 200f62f30faSMatthew G. Knepley if (className) {ierr = PetscInfoDeactivateClass(PETSCFE_CLASSID);CHKERRQ(ierr);} 20106759e06SMatthew G. Knepley } 20206759e06SMatthew G. Knepley /* Process summary exclusions */ 2037bf5a629SBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr); 20406759e06SMatthew G. Knepley if (opt) { 205f62f30faSMatthew G. Knepley ierr = PetscStrstr(logList, "fe", &className);CHKERRQ(ierr); 206f62f30faSMatthew G. Knepley if (className) {ierr = PetscLogEventDeactivateClass(PETSCFE_CLASSID);CHKERRQ(ierr);} 20706759e06SMatthew G. Knepley } 20806759e06SMatthew G. Knepley ierr = PetscRegisterFinalize(PetscFEFinalizePackage);CHKERRQ(ierr); 20906759e06SMatthew G. Knepley PetscFunctionReturn(0); 21006759e06SMatthew G. Knepley } 211f62f30faSMatthew G. Knepley #include <petscfv.h> 212f62f30faSMatthew G. Knepley 213f62f30faSMatthew G. Knepley static PetscBool PetscFVPackageInitialized = PETSC_FALSE; 214f62f30faSMatthew G. Knepley /*@C 215f62f30faSMatthew G. Knepley PetscFVFinalizePackage - This function finalizes everything in the PetscFV package. It is called 216f62f30faSMatthew G. Knepley from PetscFinalize(). 217f62f30faSMatthew G. Knepley 218f62f30faSMatthew G. Knepley Level: developer 219f62f30faSMatthew G. Knepley 220f62f30faSMatthew G. Knepley .keywords: PetscFV, initialize, package 221f62f30faSMatthew G. Knepley .seealso: PetscInitialize() 222f62f30faSMatthew G. Knepley @*/ 223f62f30faSMatthew G. Knepley PetscErrorCode PetscFVFinalizePackage(void) 224f62f30faSMatthew G. Knepley { 225f62f30faSMatthew G. Knepley PetscErrorCode ierr; 226f62f30faSMatthew G. Knepley 227f62f30faSMatthew G. Knepley PetscFunctionBegin; 228ab2453f0SMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscLimiterList);CHKERRQ(ierr); 229f62f30faSMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscFVList);CHKERRQ(ierr); 230f62f30faSMatthew G. Knepley PetscFVPackageInitialized = PETSC_FALSE; 231f62f30faSMatthew G. Knepley PetscFVRegisterAllCalled = PETSC_FALSE; 232ab2453f0SMatthew G. Knepley PetscLimiterRegisterAllCalled = PETSC_FALSE; 233f62f30faSMatthew G. Knepley PetscFunctionReturn(0); 234f62f30faSMatthew G. Knepley } 235f62f30faSMatthew G. Knepley 236f62f30faSMatthew G. Knepley /*@C 237f62f30faSMatthew G. Knepley PetscFVInitializePackage - This function initializes everything in the FV package. It is called 238f62f30faSMatthew G. Knepley from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscFVCreate() 239f62f30faSMatthew G. Knepley when using static libraries. 240f62f30faSMatthew G. Knepley 241f62f30faSMatthew G. Knepley Level: developer 242f62f30faSMatthew G. Knepley 243f62f30faSMatthew G. Knepley .keywords: PetscFV, initialize, package 244f62f30faSMatthew G. Knepley .seealso: PetscInitialize() 245f62f30faSMatthew G. Knepley @*/ 246f62f30faSMatthew G. Knepley PetscErrorCode PetscFVInitializePackage(void) 247f62f30faSMatthew G. Knepley { 248f62f30faSMatthew G. Knepley char logList[256]; 249f62f30faSMatthew G. Knepley char *className; 250f62f30faSMatthew G. Knepley PetscBool opt; 251f62f30faSMatthew G. Knepley PetscErrorCode ierr; 252f62f30faSMatthew G. Knepley 253f62f30faSMatthew G. Knepley PetscFunctionBegin; 254f62f30faSMatthew G. Knepley if (PetscFVPackageInitialized) PetscFunctionReturn(0); 255f62f30faSMatthew G. Knepley PetscFVPackageInitialized = PETSC_TRUE; 256f62f30faSMatthew G. Knepley 257f62f30faSMatthew G. Knepley /* Register Classes */ 258f62f30faSMatthew G. Knepley ierr = PetscClassIdRegister("FV Space", &PETSCFV_CLASSID);CHKERRQ(ierr); 259ab2453f0SMatthew G. Knepley ierr = PetscClassIdRegister("Limiter", &PETSCLIMITER_CLASSID);CHKERRQ(ierr); 260f62f30faSMatthew G. Knepley 261f62f30faSMatthew G. Knepley /* Register Constructors */ 262f62f30faSMatthew G. Knepley ierr = PetscFVRegisterAll();CHKERRQ(ierr); 263f62f30faSMatthew G. Knepley /* Register Events */ 264f62f30faSMatthew G. Knepley /* Process info exclusions */ 265c5929fdfSBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr); 266f62f30faSMatthew G. Knepley if (opt) { 267f62f30faSMatthew G. Knepley ierr = PetscStrstr(logList, "fv", &className);CHKERRQ(ierr); 268f62f30faSMatthew G. Knepley if (className) {ierr = PetscInfoDeactivateClass(PETSCFV_CLASSID);CHKERRQ(ierr);} 269ab2453f0SMatthew G. Knepley ierr = PetscStrstr(logList, "limiter", &className);CHKERRQ(ierr); 270ab2453f0SMatthew G. Knepley if (className) {ierr = PetscInfoDeactivateClass(PETSCLIMITER_CLASSID);CHKERRQ(ierr);} 271f62f30faSMatthew G. Knepley } 272f62f30faSMatthew G. Knepley /* Process summary exclusions */ 2737bf5a629SBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr); 274f62f30faSMatthew G. Knepley if (opt) { 275f62f30faSMatthew G. Knepley ierr = PetscStrstr(logList, "fv", &className);CHKERRQ(ierr); 276f62f30faSMatthew G. Knepley if (className) {ierr = PetscLogEventDeactivateClass(PETSCFV_CLASSID);CHKERRQ(ierr);} 277ab2453f0SMatthew G. Knepley ierr = PetscStrstr(logList, "limiter", &className);CHKERRQ(ierr); 278ab2453f0SMatthew G. Knepley if (className) {ierr = PetscLogEventDeactivateClass(PETSCLIMITER_CLASSID);CHKERRQ(ierr);} 279f62f30faSMatthew G. Knepley } 280f62f30faSMatthew G. Knepley ierr = PetscRegisterFinalize(PetscFVFinalizePackage);CHKERRQ(ierr); 281f62f30faSMatthew G. Knepley PetscFunctionReturn(0); 282f62f30faSMatthew G. Knepley } 2832764a2aaSMatthew G. Knepley #include <petscds.h> 284022a7a5cSMatthew G. Knepley 2852764a2aaSMatthew G. Knepley static PetscBool PetscDSPackageInitialized = PETSC_FALSE; 286022a7a5cSMatthew G. Knepley /*@C 2872764a2aaSMatthew G. Knepley PetscDSFinalizePackage - This function finalizes everything in the PetscDS package. It is called 288022a7a5cSMatthew G. Knepley from PetscFinalize(). 289022a7a5cSMatthew G. Knepley 290022a7a5cSMatthew G. Knepley Level: developer 291022a7a5cSMatthew G. Knepley 2922764a2aaSMatthew G. Knepley .keywords: PetscDS, initialize, package 293022a7a5cSMatthew G. Knepley .seealso: PetscInitialize() 294022a7a5cSMatthew G. Knepley @*/ 2952764a2aaSMatthew G. Knepley PetscErrorCode PetscDSFinalizePackage(void) 296022a7a5cSMatthew G. Knepley { 297022a7a5cSMatthew G. Knepley PetscErrorCode ierr; 298022a7a5cSMatthew G. Knepley 299022a7a5cSMatthew G. Knepley PetscFunctionBegin; 3002764a2aaSMatthew G. Knepley ierr = PetscFunctionListDestroy(&PetscDSList);CHKERRQ(ierr); 3012764a2aaSMatthew G. Knepley PetscDSPackageInitialized = PETSC_FALSE; 3022764a2aaSMatthew G. Knepley PetscDSRegisterAllCalled = PETSC_FALSE; 303022a7a5cSMatthew G. Knepley PetscFunctionReturn(0); 304022a7a5cSMatthew G. Knepley } 305022a7a5cSMatthew G. Knepley 306022a7a5cSMatthew G. Knepley /*@C 3072764a2aaSMatthew G. Knepley PetscDSInitializePackage - This function initializes everything in the DS package. It is called 3082764a2aaSMatthew G. Knepley from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscDSCreate() 309022a7a5cSMatthew G. Knepley when using static libraries. 310022a7a5cSMatthew G. Knepley 311022a7a5cSMatthew G. Knepley Level: developer 312022a7a5cSMatthew G. Knepley 3132764a2aaSMatthew G. Knepley .keywords: PetscDS, initialize, package 314022a7a5cSMatthew G. Knepley .seealso: PetscInitialize() 315022a7a5cSMatthew G. Knepley @*/ 3162764a2aaSMatthew G. Knepley PetscErrorCode PetscDSInitializePackage(void) 317022a7a5cSMatthew G. Knepley { 318022a7a5cSMatthew G. Knepley char logList[256]; 319022a7a5cSMatthew G. Knepley char *className; 320022a7a5cSMatthew G. Knepley PetscBool opt; 321022a7a5cSMatthew G. Knepley PetscErrorCode ierr; 322022a7a5cSMatthew G. Knepley 323022a7a5cSMatthew G. Knepley PetscFunctionBegin; 3242764a2aaSMatthew G. Knepley if (PetscDSPackageInitialized) PetscFunctionReturn(0); 3252764a2aaSMatthew G. Knepley PetscDSPackageInitialized = PETSC_TRUE; 326022a7a5cSMatthew G. Knepley 327022a7a5cSMatthew G. Knepley /* Register Classes */ 3282764a2aaSMatthew G. Knepley ierr = PetscClassIdRegister("Discrete System", &PETSCDS_CLASSID);CHKERRQ(ierr); 329022a7a5cSMatthew G. Knepley 330022a7a5cSMatthew G. Knepley /* Register Constructors */ 3312764a2aaSMatthew G. Knepley ierr = PetscDSRegisterAll();CHKERRQ(ierr); 332022a7a5cSMatthew G. Knepley /* Register Events */ 333022a7a5cSMatthew G. Knepley /* Process info exclusions */ 334c5929fdfSBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr); 335022a7a5cSMatthew G. Knepley if (opt) { 3362764a2aaSMatthew G. Knepley ierr = PetscStrstr(logList, "ds", &className);CHKERRQ(ierr); 3372764a2aaSMatthew G. Knepley if (className) {ierr = PetscInfoDeactivateClass(PETSCDS_CLASSID);CHKERRQ(ierr);} 338022a7a5cSMatthew G. Knepley } 339022a7a5cSMatthew G. Knepley /* Process summary exclusions */ 3407bf5a629SBarry Smith ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr); 341022a7a5cSMatthew G. Knepley if (opt) { 3422764a2aaSMatthew G. Knepley ierr = PetscStrstr(logList, "ds", &className);CHKERRQ(ierr); 3432764a2aaSMatthew G. Knepley if (className) {ierr = PetscLogEventDeactivateClass(PETSCDS_CLASSID);CHKERRQ(ierr);} 344022a7a5cSMatthew G. Knepley } 3452764a2aaSMatthew G. Knepley ierr = PetscRegisterFinalize(PetscDSFinalizePackage);CHKERRQ(ierr); 346022a7a5cSMatthew G. Knepley PetscFunctionReturn(0); 347022a7a5cSMatthew G. Knepley } 348e8597998SBarry Smith 349aa2d57e9SJed Brown #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES) 350e8597998SBarry Smith /* 351e8597998SBarry Smith PetscDLLibraryRegister - This function is called when the dynamic library it is in is opened. 352e8597998SBarry Smith 353e8597998SBarry Smith This one registers all the mesh generators and partitioners that are in 354e8597998SBarry Smith the basic DM library. 355e8597998SBarry Smith 356e8597998SBarry Smith */ 357607a6623SBarry Smith PETSC_EXTERN PetscErrorCode PetscDLLibraryRegister_petscdm(void) 358e8597998SBarry Smith { 359e8597998SBarry Smith PetscErrorCode ierr; 360e8597998SBarry Smith 361e8597998SBarry Smith PetscFunctionBegin; 362607a6623SBarry Smith ierr = AOInitializePackage();CHKERRQ(ierr); 363607a6623SBarry Smith ierr = DMInitializePackage();CHKERRQ(ierr); 36406759e06SMatthew G. Knepley ierr = PetscFEInitializePackage();CHKERRQ(ierr); 365ab2453f0SMatthew G. Knepley ierr = PetscFVInitializePackage();CHKERRQ(ierr); 366e8597998SBarry Smith PetscFunctionReturn(0); 367e8597998SBarry Smith } 368e8597998SBarry Smith 369aa2d57e9SJed Brown #endif /* PETSC_HAVE_DYNAMIC_LIBRARIES */ 370