BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
expression_templates.h
Go to the documentation of this file.
1 /*
2  * Expression_Templates.h
3  *
4  * Created on: Feb 23, 2019
5  * Author: joseph
6  */
7 
8 #ifndef EXPRESSION_TEMPLATES_H_
9 #define EXPRESSION_TEMPLATES_H_
10 
11 #include "array.h"
12 #include "array_slice.h"
13 #include "array_scalar_constant.h"
14 #include "vector.h"
15 
16 #include "expression_unary.h"
17 #include "expression_binary.h"
18 
19 #include "function_transpose.h"
20 #include "function_dot.h"
21 #include "function_ger.h"
22 #include "function_gemv.h"
23 #include "function_gemm.h"
24 
25 #include "function_sum.h"
26 
27 #include "tree_evaluator.h"
28 
29 #endif /* EXPRESSION_TEMPLATES_H_ */