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.
tensor.h
1 //
2 // Created by milinda on 1/15/17.
3 //
4 
12 #ifndef SFCSORTBENCH_DENDROTENSOR_H
13 #define SFCSORTBENCH_DENDROTENSOR_H
14 
15 
27 void DENDRO_TENSOR_AIIX_APPLY_ELEM (const int M, const double* A, const double* X, double* Y);
28 
29 
30 
42 void DENDRO_TENSOR_IIAX_APPLY_ELEM(const int M, const double* A, const double* X, double* Y);
43 
44 
56 void DENDRO_TENSOR_IAIX_APPLY_ELEM (const int M, const double* A, const double* X, double* Y);
57 
58 
59 
60 
72 void DENDRO_TENSOR_IAX_APPLY_ELEM_2D(const int M, const double* A, const double* X, double* Y);
73 
74 
75 
87 void DENDRO_TENSOR_AIX_APPLY_ELEM_2D (const int M, const double* A, const double* X, double* Y);
88 
89 
90 #endif //SFCSORTBENCH_DENDROTENSOR_H