BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
blas.h
Go to the documentation of this file.
1 /* Project: BlackCat_Tensors
2  * Author: JosephJaspers
3  * Copyright 2018
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 
9 #ifndef BC_CORE_OPERATIONS_BLAS_H_
10 #define BC_CORE_OPERATIONS_BLAS_H_
11 
12 #include "operation_traits.h"
13 #include "tags.h"
14 
15 namespace bc {
16 namespace oper {
17 
18 template<class system_tag>
19 struct transpose {};
20 
21 template<class system_tag>
23  static constexpr int tensor_dim = 2;
24 };
25 
26 template<class system_tag>
28  static constexpr int tensor_dim = 1;
29 };
30 
31 template<class system_tag>
32 struct ger : BLAS_Function {
33  static constexpr int tensor_dim = 2;
34 };
35 
36 template<class system_tag>
37 struct dot : BLAS_Function {
38  static constexpr int tensor_dim = 0;
39 };
40 
41 }
42 }
43 
44 
45 
46 #endif /* BLAS_H_ */
Definition: blas.h:19
Definition: blas.h:27
Definition: blas.h:32
Definition: blas.h:22
Definition: tags.h:26
Definition: blas.h:37
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22