Dendro  5.01
Dendro in Greek language means tree. The Dendro library is a large scale (262K cores on ORNL's Titan) distributed memory adaptive octree framework. The main goal of Dendro is to perform large scale multiphysics simulations efficeiently in mordern supercomputers. Dendro consists of efficient parallel data structures and algorithms to perform variational ( finite element) methods and finite difference mthods on 2:1 balanced arbitary adaptive octrees which enables the users to perform simulations raning from black holes (binary black hole mergers) to blood flow in human body, where applications ranging from relativity, astrophysics to biomedical engineering.
mfreeTest.h
1 //
2 // Created by milinda on 1/9/19.
3 //
4 
11 #ifndef DENDRO_5_0_MFREETEST_H
12 #define DENDRO_5_0_MFREETEST_H
13 
14 #include "TreeNode.h"
15 #include "mpi.h"
16 #include "genPts_par.h"
17 #include "sfcSort.h"
18 #include "mesh.h"
19 #include "dendro.h"
20 #include "dendroIO.h"
21 #include "octUtils.h"
22 #include "functional"
23 #include "fdCoefficient.h"
24 #include "stencil.h"
25 #include "rkTransport.h"
26 #include "refel.h"
27 #include "operators.h"
28 #include "cg.h"
29 #include "matvec.h"
30 
31 
32 
33 namespace mfree
34 {
35 
36 
37  extern profiler_t tLev[31];
38 
44  void ptBucketRoofline(const Point* ptList, unsigned int ptSz,unsigned int lev,unsigned int pMaxDepth);
45 }
46 
47 
48 
49 #endif //DENDRO_5_0_MFREETEST_H
simple profiler based on Hari's sort_profiler for bssn application.
Definition: profiler.h:24
void ptBucketRoofline(const Point *ptList, unsigned int ptSz, unsigned int lev, unsigned int pMaxDepth)
performs roofline bucketing.
Definition: mfreeTest.cpp:13
A point class.
Definition: point.h:36
contains bechmark functions for mesh free vs mesh based FEM computation.
Definition: mfreeTest.h:33