xref: /petsc/src/dm/interface/dlregisdmdm.c (revision 5fdea0536965a239c90dff5414c6b46a38f50357)
1e8597998SBarry Smith 
2*5fdea053SToby 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>
8e8597998SBarry Smith 
9e8597998SBarry Smith static PetscBool DMPackageInitialized = PETSC_FALSE;
10e8597998SBarry Smith #undef __FUNCT__
11e8597998SBarry Smith #define __FUNCT__ "DMFinalizePackage"
12e8597998SBarry Smith /*@C
13e8597998SBarry Smith   DMFinalizePackage - This function finalizes everything in the DM package. It is called
14e8597998SBarry Smith   from PetscFinalize().
15e8597998SBarry Smith 
16e8597998SBarry Smith   Level: developer
17e8597998SBarry Smith 
18e8597998SBarry Smith .keywords: AO, initialize, package
19e8597998SBarry Smith .seealso: PetscInitialize()
20e8597998SBarry Smith @*/
21e8597998SBarry Smith PetscErrorCode  DMFinalizePackage(void)
22e8597998SBarry Smith {
23e8597998SBarry Smith   PetscErrorCode ierr;
24e8597998SBarry Smith 
25e8597998SBarry Smith   PetscFunctionBegin;
2677623264SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscPartitionerList);CHKERRQ(ierr);
2737e93019SBarry Smith   ierr = PetscFunctionListDestroy(&DMList);CHKERRQ(ierr);
28e8597998SBarry Smith   DMPackageInitialized = PETSC_FALSE;
29e8597998SBarry Smith   DMRegisterAllCalled  = PETSC_FALSE;
3077623264SMatthew G. Knepley   PetscPartitionerRegisterAllCalled = PETSC_FALSE;
31e8597998SBarry Smith   PetscFunctionReturn(0);
32e8597998SBarry Smith }
33e8597998SBarry Smith 
34e8597998SBarry Smith #if defined(PETSC_HAVE_HYPRE)
358cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatCreate_HYPREStruct(Mat);
36e8597998SBarry Smith #endif
37e8597998SBarry Smith 
38e8597998SBarry Smith #undef __FUNCT__
39e8597998SBarry Smith #define __FUNCT__ "DMInitializePackage"
40e8597998SBarry Smith /*@C
41e8597998SBarry Smith   DMInitializePackage - This function initializes everything in the DM package. It is called
42e8597998SBarry Smith   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to AOCreate()
43e8597998SBarry Smith   or DMDACreate() when using static libraries.
44e8597998SBarry Smith 
45e8597998SBarry Smith   Level: developer
46e8597998SBarry Smith 
47e8597998SBarry Smith .keywords: AO, initialize, package
48e8597998SBarry Smith .seealso: PetscInitialize()
49e8597998SBarry Smith @*/
50607a6623SBarry Smith PetscErrorCode  DMInitializePackage(void)
51e8597998SBarry Smith {
52e8597998SBarry Smith   char           logList[256];
53e8597998SBarry Smith   char           *className;
54e8597998SBarry Smith   PetscBool      opt;
55e8597998SBarry Smith   PetscErrorCode ierr;
56e8597998SBarry Smith 
57e8597998SBarry Smith   PetscFunctionBegin;
58e8597998SBarry Smith   if (DMPackageInitialized) PetscFunctionReturn(0);
59e8597998SBarry Smith   DMPackageInitialized = PETSC_TRUE;
60e8597998SBarry Smith 
61e8597998SBarry Smith   /* Register Classes */
62e8597998SBarry Smith   ierr = PetscClassIdRegister("Distributed Mesh",&DM_CLASSID);CHKERRQ(ierr);
6377623264SMatthew G. Knepley   ierr = PetscClassIdRegister("GraphPartitioner",&PETSCPARTITIONER_CLASSID);CHKERRQ(ierr);
64e8597998SBarry Smith 
65e8597998SBarry Smith #if defined(PETSC_HAVE_HYPRE)
66bdf89e91SBarry Smith   ierr = MatRegister(MATHYPRESTRUCT, MatCreate_HYPREStruct);CHKERRQ(ierr);
67e8597998SBarry Smith #endif
68*5fdea053SToby Isaac   ierr = PetscSectionSymRegister(PETSCSECTIONSYMLABEL,PetscSectionSymCreate_Label);CHKERRQ(ierr);
69e8597998SBarry Smith 
70e8597998SBarry Smith   /* Register Constructors */
71607a6623SBarry Smith   ierr = DMRegisterAll();CHKERRQ(ierr);
72e8597998SBarry Smith   /* Register Events */
73e8597998SBarry Smith   ierr = PetscLogEventRegister("DMConvert",              DM_CLASSID,&DM_Convert);CHKERRQ(ierr);
74e8597998SBarry Smith   ierr = PetscLogEventRegister("DMGlobalToLocal",        DM_CLASSID,&DM_GlobalToLocal);CHKERRQ(ierr);
75e8597998SBarry Smith   ierr = PetscLogEventRegister("DMLocalToGlobal",        DM_CLASSID,&DM_LocalToGlobal);CHKERRQ(ierr);
7647a35634SPatrick Farrell   ierr = PetscLogEventRegister("DMLocatePoints",         DM_CLASSID,&DM_LocatePoints);CHKERRQ(ierr);
7747a35634SPatrick Farrell   ierr = PetscLogEventRegister("DMCoarsen",              DM_CLASSID,&DM_Coarsen);CHKERRQ(ierr);
7842ac0407SBarry Smith   ierr = PetscLogEventRegister("DMCreateInterp",         DM_CLASSID,&DM_CreateInterpolation);CHKERRQ(ierr);
7942ac0407SBarry Smith   ierr = PetscLogEventRegister("DMCreateRestrict",       DM_CLASSID,&DM_CreateRestriction);CHKERRQ(ierr);
80e8597998SBarry Smith 
81e8597998SBarry Smith   ierr = PetscLogEventRegister("DMDALocalADFunc",        DM_CLASSID,&DMDA_LocalADFunction);CHKERRQ(ierr);
82e8597998SBarry Smith 
8377623264SMatthew G. Knepley   ierr = PetscLogEventRegister("Mesh Partition",         PETSCPARTITIONER_CLASSID,&PETSCPARTITIONER_Partition);CHKERRQ(ierr);
841b858b30SMichael Lange   ierr = PetscLogEventRegister("Mesh Migration",         DM_CLASSID,&DMPLEX_Migrate);CHKERRQ(ierr);
8575a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexInterp",           DM_CLASSID,&DMPLEX_Interpolate);CHKERRQ(ierr);
86e8597998SBarry Smith   ierr = PetscLogEventRegister("DMPlexDistribute",       DM_CLASSID,&DMPLEX_Distribute);CHKERRQ(ierr);
8775a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistCones",        DM_CLASSID,&DMPLEX_DistributeCones);CHKERRQ(ierr);
8875a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistLabels",       DM_CLASSID,&DMPLEX_DistributeLabels);CHKERRQ(ierr);
891337e6e5SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistribSF",        DM_CLASSID,&DMPLEX_DistributeSF);CHKERRQ(ierr);
903d822a50SMichael Lange   ierr = PetscLogEventRegister("DMPlexDistribOL",        DM_CLASSID,&DMPLEX_DistributeOverlap);CHKERRQ(ierr);
9175a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistField",        DM_CLASSID,&DMPLEX_DistributeField);CHKERRQ(ierr);
9275a69067SMatthew G. Knepley   ierr = PetscLogEventRegister("DMPlexDistData",         DM_CLASSID,&DMPLEX_DistributeData);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);
105e8597998SBarry Smith   /* Process info exclusions */
106c5929fdfSBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
107e8597998SBarry Smith   if (opt) {
108e8597998SBarry Smith     ierr = PetscStrstr(logList, "da", &className);CHKERRQ(ierr);
109e8597998SBarry Smith     if (className) {
110e8597998SBarry Smith       ierr = PetscInfoDeactivateClass(DM_CLASSID);CHKERRQ(ierr);
111e8597998SBarry Smith     }
112e8597998SBarry Smith   }
113e8597998SBarry Smith   /* Process summary exclusions */
1147bf5a629SBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr);
115e8597998SBarry Smith   if (opt) {
116e8597998SBarry Smith     ierr = PetscStrstr(logList, "da", &className);CHKERRQ(ierr);
117e8597998SBarry Smith     if (className) {
118e8597998SBarry Smith       ierr = PetscLogEventDeactivateClass(DM_CLASSID);CHKERRQ(ierr);
119e8597998SBarry Smith     }
120e8597998SBarry Smith   }
121e8597998SBarry Smith   ierr = PetscRegisterFinalize(DMFinalizePackage);CHKERRQ(ierr);
122e8597998SBarry Smith   PetscFunctionReturn(0);
123e8597998SBarry Smith }
12406759e06SMatthew G. Knepley #include <petscfe.h>
125e8597998SBarry Smith 
12606759e06SMatthew G. Knepley static PetscBool PetscFEPackageInitialized = PETSC_FALSE;
12706759e06SMatthew G. Knepley #undef __FUNCT__
12806759e06SMatthew G. Knepley #define __FUNCT__ "PetscFEFinalizePackage"
12906759e06SMatthew G. Knepley /*@C
13006759e06SMatthew G. Knepley   PetscFEFinalizePackage - This function finalizes everything in the PetscFE package. It is called
13106759e06SMatthew G. Knepley   from PetscFinalize().
132e8597998SBarry Smith 
13306759e06SMatthew G. Knepley   Level: developer
13406759e06SMatthew G. Knepley 
13506759e06SMatthew G. Knepley .keywords: PetscFE, initialize, package
13606759e06SMatthew G. Knepley .seealso: PetscInitialize()
13706759e06SMatthew G. Knepley @*/
13806759e06SMatthew G. Knepley PetscErrorCode PetscFEFinalizePackage(void)
13906759e06SMatthew G. Knepley {
14006759e06SMatthew G. Knepley   PetscErrorCode ierr;
14106759e06SMatthew G. Knepley 
14206759e06SMatthew G. Knepley   PetscFunctionBegin;
14306759e06SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscSpaceList);CHKERRQ(ierr);
14406759e06SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscDualSpaceList);CHKERRQ(ierr);
1450483ade4SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscFEList);CHKERRQ(ierr);
14606759e06SMatthew G. Knepley   PetscFEPackageInitialized       = PETSC_FALSE;
14706759e06SMatthew G. Knepley   PetscSpaceRegisterAllCalled     = PETSC_FALSE;
14806759e06SMatthew G. Knepley   PetscDualSpaceRegisterAllCalled = PETSC_FALSE;
1490483ade4SMatthew G. Knepley   PetscFERegisterAllCalled        = PETSC_FALSE;
15006759e06SMatthew G. Knepley   PetscFunctionReturn(0);
15106759e06SMatthew G. Knepley }
15206759e06SMatthew G. Knepley 
15306759e06SMatthew G. Knepley #undef __FUNCT__
15406759e06SMatthew G. Knepley #define __FUNCT__ "PetscFEInitializePackage"
15506759e06SMatthew G. Knepley /*@C
15606759e06SMatthew G. Knepley   PetscFEInitializePackage - This function initializes everything in the FE package. It is called
15706759e06SMatthew G. Knepley   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscSpaceCreate()
15806759e06SMatthew G. Knepley   when using static libraries.
15906759e06SMatthew G. Knepley 
16006759e06SMatthew G. Knepley   Level: developer
16106759e06SMatthew G. Knepley 
16206759e06SMatthew G. Knepley .keywords: PetscFE, initialize, package
16306759e06SMatthew G. Knepley .seealso: PetscInitialize()
16406759e06SMatthew G. Knepley @*/
16506759e06SMatthew G. Knepley PetscErrorCode PetscFEInitializePackage(void)
16606759e06SMatthew G. Knepley {
16706759e06SMatthew G. Knepley   char           logList[256];
16806759e06SMatthew G. Knepley   char          *className;
16906759e06SMatthew G. Knepley   PetscBool      opt;
17006759e06SMatthew G. Knepley   PetscErrorCode ierr;
17106759e06SMatthew G. Knepley 
17206759e06SMatthew G. Knepley   PetscFunctionBegin;
17306759e06SMatthew G. Knepley   if (PetscFEPackageInitialized) PetscFunctionReturn(0);
17406759e06SMatthew G. Knepley   PetscFEPackageInitialized = PETSC_TRUE;
17506759e06SMatthew G. Knepley 
17606759e06SMatthew G. Knepley   /* Register Classes */
17706759e06SMatthew G. Knepley   ierr = PetscClassIdRegister("Linear Space", &PETSCSPACE_CLASSID);CHKERRQ(ierr);
17806759e06SMatthew G. Knepley   ierr = PetscClassIdRegister("Dual Space",   &PETSCDUALSPACE_CLASSID);CHKERRQ(ierr);
17906759e06SMatthew G. Knepley   ierr = PetscClassIdRegister("FE Space",     &PETSCFE_CLASSID);CHKERRQ(ierr);
18006759e06SMatthew G. Knepley 
18106759e06SMatthew G. Knepley   /* Register Constructors */
18206759e06SMatthew G. Knepley   ierr = PetscSpaceRegisterAll();CHKERRQ(ierr);
1830483ade4SMatthew G. Knepley   ierr = PetscDualSpaceRegisterAll();CHKERRQ(ierr);
1840483ade4SMatthew G. Knepley   ierr = PetscFERegisterAll();CHKERRQ(ierr);
18506759e06SMatthew G. Knepley   /* Register Events */
18606759e06SMatthew G. Knepley   /* Process info exclusions */
187c5929fdfSBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
18806759e06SMatthew G. Knepley   if (opt) {
18906759e06SMatthew G. Knepley     ierr = PetscStrstr(logList, "fe", &className);CHKERRQ(ierr);
190f62f30faSMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCFE_CLASSID);CHKERRQ(ierr);}
19106759e06SMatthew G. Knepley   }
19206759e06SMatthew G. Knepley   /* Process summary exclusions */
1937bf5a629SBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr);
19406759e06SMatthew G. Knepley   if (opt) {
195f62f30faSMatthew G. Knepley     ierr = PetscStrstr(logList, "fe", &className);CHKERRQ(ierr);
196f62f30faSMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCFE_CLASSID);CHKERRQ(ierr);}
19706759e06SMatthew G. Knepley   }
19806759e06SMatthew G. Knepley   ierr = PetscRegisterFinalize(PetscFEFinalizePackage);CHKERRQ(ierr);
19906759e06SMatthew G. Knepley   PetscFunctionReturn(0);
20006759e06SMatthew G. Knepley }
201f62f30faSMatthew G. Knepley #include <petscfv.h>
202f62f30faSMatthew G. Knepley 
203f62f30faSMatthew G. Knepley static PetscBool PetscFVPackageInitialized = PETSC_FALSE;
204f62f30faSMatthew G. Knepley #undef __FUNCT__
205f62f30faSMatthew G. Knepley #define __FUNCT__ "PetscFVFinalizePackage"
206f62f30faSMatthew G. Knepley /*@C
207f62f30faSMatthew G. Knepley   PetscFVFinalizePackage - This function finalizes everything in the PetscFV package. It is called
208f62f30faSMatthew G. Knepley   from PetscFinalize().
209f62f30faSMatthew G. Knepley 
210f62f30faSMatthew G. Knepley   Level: developer
211f62f30faSMatthew G. Knepley 
212f62f30faSMatthew G. Knepley .keywords: PetscFV, initialize, package
213f62f30faSMatthew G. Knepley .seealso: PetscInitialize()
214f62f30faSMatthew G. Knepley @*/
215f62f30faSMatthew G. Knepley PetscErrorCode PetscFVFinalizePackage(void)
216f62f30faSMatthew G. Knepley {
217f62f30faSMatthew G. Knepley   PetscErrorCode ierr;
218f62f30faSMatthew G. Knepley 
219f62f30faSMatthew G. Knepley   PetscFunctionBegin;
220ab2453f0SMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscLimiterList);CHKERRQ(ierr);
221f62f30faSMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscFVList);CHKERRQ(ierr);
222f62f30faSMatthew G. Knepley   PetscFVPackageInitialized     = PETSC_FALSE;
223f62f30faSMatthew G. Knepley   PetscFVRegisterAllCalled      = PETSC_FALSE;
224ab2453f0SMatthew G. Knepley   PetscLimiterRegisterAllCalled = PETSC_FALSE;
225f62f30faSMatthew G. Knepley   PetscFunctionReturn(0);
226f62f30faSMatthew G. Knepley }
227f62f30faSMatthew G. Knepley 
228f62f30faSMatthew G. Knepley #undef __FUNCT__
229f62f30faSMatthew G. Knepley #define __FUNCT__ "PetscFVInitializePackage"
230f62f30faSMatthew G. Knepley /*@C
231f62f30faSMatthew G. Knepley   PetscFVInitializePackage - This function initializes everything in the FV package. It is called
232f62f30faSMatthew G. Knepley   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscFVCreate()
233f62f30faSMatthew G. Knepley   when using static libraries.
234f62f30faSMatthew G. Knepley 
235f62f30faSMatthew G. Knepley   Level: developer
236f62f30faSMatthew G. Knepley 
237f62f30faSMatthew G. Knepley .keywords: PetscFV, initialize, package
238f62f30faSMatthew G. Knepley .seealso: PetscInitialize()
239f62f30faSMatthew G. Knepley @*/
240f62f30faSMatthew G. Knepley PetscErrorCode PetscFVInitializePackage(void)
241f62f30faSMatthew G. Knepley {
242f62f30faSMatthew G. Knepley   char           logList[256];
243f62f30faSMatthew G. Knepley   char          *className;
244f62f30faSMatthew G. Knepley   PetscBool      opt;
245f62f30faSMatthew G. Knepley   PetscErrorCode ierr;
246f62f30faSMatthew G. Knepley 
247f62f30faSMatthew G. Knepley   PetscFunctionBegin;
248f62f30faSMatthew G. Knepley   if (PetscFVPackageInitialized) PetscFunctionReturn(0);
249f62f30faSMatthew G. Knepley   PetscFVPackageInitialized = PETSC_TRUE;
250f62f30faSMatthew G. Knepley 
251f62f30faSMatthew G. Knepley   /* Register Classes */
252f62f30faSMatthew G. Knepley   ierr = PetscClassIdRegister("FV Space", &PETSCFV_CLASSID);CHKERRQ(ierr);
253ab2453f0SMatthew G. Knepley   ierr = PetscClassIdRegister("Limiter",  &PETSCLIMITER_CLASSID);CHKERRQ(ierr);
254f62f30faSMatthew G. Knepley 
255f62f30faSMatthew G. Knepley   /* Register Constructors */
256f62f30faSMatthew G. Knepley   ierr = PetscFVRegisterAll();CHKERRQ(ierr);
257f62f30faSMatthew G. Knepley   /* Register Events */
258f62f30faSMatthew G. Knepley   /* Process info exclusions */
259c5929fdfSBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
260f62f30faSMatthew G. Knepley   if (opt) {
261f62f30faSMatthew G. Knepley     ierr = PetscStrstr(logList, "fv", &className);CHKERRQ(ierr);
262f62f30faSMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCFV_CLASSID);CHKERRQ(ierr);}
263ab2453f0SMatthew G. Knepley     ierr = PetscStrstr(logList, "limiter", &className);CHKERRQ(ierr);
264ab2453f0SMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCLIMITER_CLASSID);CHKERRQ(ierr);}
265f62f30faSMatthew G. Knepley   }
266f62f30faSMatthew G. Knepley   /* Process summary exclusions */
2677bf5a629SBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr);
268f62f30faSMatthew G. Knepley   if (opt) {
269f62f30faSMatthew G. Knepley     ierr = PetscStrstr(logList, "fv", &className);CHKERRQ(ierr);
270f62f30faSMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCFV_CLASSID);CHKERRQ(ierr);}
271ab2453f0SMatthew G. Knepley     ierr = PetscStrstr(logList, "limiter", &className);CHKERRQ(ierr);
272ab2453f0SMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCLIMITER_CLASSID);CHKERRQ(ierr);}
273f62f30faSMatthew G. Knepley   }
274f62f30faSMatthew G. Knepley   ierr = PetscRegisterFinalize(PetscFVFinalizePackage);CHKERRQ(ierr);
275f62f30faSMatthew G. Knepley   PetscFunctionReturn(0);
276f62f30faSMatthew G. Knepley }
2772764a2aaSMatthew G. Knepley #include <petscds.h>
278022a7a5cSMatthew G. Knepley 
2792764a2aaSMatthew G. Knepley static PetscBool PetscDSPackageInitialized = PETSC_FALSE;
280022a7a5cSMatthew G. Knepley #undef __FUNCT__
2812764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSFinalizePackage"
282022a7a5cSMatthew G. Knepley /*@C
2832764a2aaSMatthew G. Knepley   PetscDSFinalizePackage - This function finalizes everything in the PetscDS package. It is called
284022a7a5cSMatthew G. Knepley   from PetscFinalize().
285022a7a5cSMatthew G. Knepley 
286022a7a5cSMatthew G. Knepley   Level: developer
287022a7a5cSMatthew G. Knepley 
2882764a2aaSMatthew G. Knepley .keywords: PetscDS, initialize, package
289022a7a5cSMatthew G. Knepley .seealso: PetscInitialize()
290022a7a5cSMatthew G. Knepley @*/
2912764a2aaSMatthew G. Knepley PetscErrorCode PetscDSFinalizePackage(void)
292022a7a5cSMatthew G. Knepley {
293022a7a5cSMatthew G. Knepley   PetscErrorCode ierr;
294022a7a5cSMatthew G. Knepley 
295022a7a5cSMatthew G. Knepley   PetscFunctionBegin;
2962764a2aaSMatthew G. Knepley   ierr = PetscFunctionListDestroy(&PetscDSList);CHKERRQ(ierr);
2972764a2aaSMatthew G. Knepley   PetscDSPackageInitialized = PETSC_FALSE;
2982764a2aaSMatthew G. Knepley   PetscDSRegisterAllCalled  = PETSC_FALSE;
299022a7a5cSMatthew G. Knepley   PetscFunctionReturn(0);
300022a7a5cSMatthew G. Knepley }
301022a7a5cSMatthew G. Knepley 
302022a7a5cSMatthew G. Knepley #undef __FUNCT__
3032764a2aaSMatthew G. Knepley #define __FUNCT__ "PetscDSInitializePackage"
304022a7a5cSMatthew G. Knepley /*@C
3052764a2aaSMatthew G. Knepley   PetscDSInitializePackage - This function initializes everything in the DS package. It is called
3062764a2aaSMatthew G. Knepley   from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to PetscDSCreate()
307022a7a5cSMatthew G. Knepley   when using static libraries.
308022a7a5cSMatthew G. Knepley 
309022a7a5cSMatthew G. Knepley   Level: developer
310022a7a5cSMatthew G. Knepley 
3112764a2aaSMatthew G. Knepley .keywords: PetscDS, initialize, package
312022a7a5cSMatthew G. Knepley .seealso: PetscInitialize()
313022a7a5cSMatthew G. Knepley @*/
3142764a2aaSMatthew G. Knepley PetscErrorCode PetscDSInitializePackage(void)
315022a7a5cSMatthew G. Knepley {
316022a7a5cSMatthew G. Knepley   char           logList[256];
317022a7a5cSMatthew G. Knepley   char          *className;
318022a7a5cSMatthew G. Knepley   PetscBool      opt;
319022a7a5cSMatthew G. Knepley   PetscErrorCode ierr;
320022a7a5cSMatthew G. Knepley 
321022a7a5cSMatthew G. Knepley   PetscFunctionBegin;
3222764a2aaSMatthew G. Knepley   if (PetscDSPackageInitialized) PetscFunctionReturn(0);
3232764a2aaSMatthew G. Knepley   PetscDSPackageInitialized = PETSC_TRUE;
324022a7a5cSMatthew G. Knepley 
325022a7a5cSMatthew G. Knepley   /* Register Classes */
3262764a2aaSMatthew G. Knepley   ierr = PetscClassIdRegister("Discrete System", &PETSCDS_CLASSID);CHKERRQ(ierr);
327022a7a5cSMatthew G. Knepley 
328022a7a5cSMatthew G. Knepley   /* Register Constructors */
3292764a2aaSMatthew G. Knepley   ierr = PetscDSRegisterAll();CHKERRQ(ierr);
330022a7a5cSMatthew G. Knepley   /* Register Events */
331022a7a5cSMatthew G. Knepley   /* Process info exclusions */
332c5929fdfSBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-info_exclude", logList, 256, &opt);CHKERRQ(ierr);
333022a7a5cSMatthew G. Knepley   if (opt) {
3342764a2aaSMatthew G. Knepley     ierr = PetscStrstr(logList, "ds", &className);CHKERRQ(ierr);
3352764a2aaSMatthew G. Knepley     if (className) {ierr = PetscInfoDeactivateClass(PETSCDS_CLASSID);CHKERRQ(ierr);}
336022a7a5cSMatthew G. Knepley   }
337022a7a5cSMatthew G. Knepley   /* Process summary exclusions */
3387bf5a629SBarry Smith   ierr = PetscOptionsGetString(NULL,NULL, "-log_exclude", logList, 256, &opt);CHKERRQ(ierr);
339022a7a5cSMatthew G. Knepley   if (opt) {
3402764a2aaSMatthew G. Knepley     ierr = PetscStrstr(logList, "ds", &className);CHKERRQ(ierr);
3412764a2aaSMatthew G. Knepley     if (className) {ierr = PetscLogEventDeactivateClass(PETSCDS_CLASSID);CHKERRQ(ierr);}
342022a7a5cSMatthew G. Knepley   }
3432764a2aaSMatthew G. Knepley   ierr = PetscRegisterFinalize(PetscDSFinalizePackage);CHKERRQ(ierr);
344022a7a5cSMatthew G. Knepley   PetscFunctionReturn(0);
345022a7a5cSMatthew G. Knepley }
346e8597998SBarry Smith 
347aa2d57e9SJed Brown #if defined(PETSC_HAVE_DYNAMIC_LIBRARIES)
348e8597998SBarry Smith #undef __FUNCT__
349e8597998SBarry Smith #define __FUNCT__ "PetscDLLibraryRegister_petscdm"
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