BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
expression_base.h
Go to the documentation of this file.
1 /*
2  * expression_base.h
3  *
4  * Created on: Apr 14, 2020
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_TENSORS_EXPRESSION_BASE_H_
9 #define BLACKCAT_TENSORS_EXPRESSION_BASE_H_
10 
11 #include "common.h"
13 #include "tensor_iterator_defs.h"
14 
15 namespace bc {
16 namespace tensors {
17 
18 template<class>
19 class Tensor_Base;
20 
21 template<class ExpressionTemplate>
22 class Expression_Base: public ExpressionTemplate
23 {
24  template<class>
25  friend class Tensor_Base;
26 
28  using expression_type = ExpressionTemplate;
30 
31 public:
32 
33  static constexpr int tensor_dim = expression_type::tensor_dim;
34  static constexpr int tensor_iterator_dim = expression_type::tensor_iterator_dim;
35 
36  using value_type = typename ExpressionTemplate::value_type;
37  using system_tag = typename ExpressionTemplate::system_tag;
38 
39  using ExpressionTemplate::ExpressionTemplate;
40  using ExpressionTemplate::expression_template;
41 
42  //ets are trivially copyable
44  Expression_Base(const ExpressionTemplate& et): ExpressionTemplate(et) {}
45  Expression_Base(ExpressionTemplate&& et): ExpressionTemplate(std::move(et)) {}
46 
47  //Expressions only support element-wise iteration
48  //Tensors support column and cwise iteration
51  BC_FORWARD_ITER(cw_, begin, this->expression_template())
52  BC_FORWARD_ITER(cw_, end, this->expression_template())
53 
54  #include "expression_operations.h"
55 };
56 
57 }
58 }
59 
60 
61 #endif
#define BC_ITERATOR_DEF(suffix, iterator_name, begin_func, end_func)
Definition: tensor_iterator_defs.h:22
auto cw_rbegin() const
Definition: expression_base.h:51
Definition: expression_base.h:49
typename ValueType ::value_type value_type
Definition: expression_base.h:36
static constexpr int tensor_dim
Definition: expression_base.h:33
Expression_Base()
Definition: expression_base.h:43
typename ValueType ::system_tag system_tag
Definition: expression_base.h:37
Definition: expression_template_traits.h:76
#define BC_FORWARD_ITER(suffix, iter, access)
Definition: tensor_iterator_defs.h:2
Definition: cmath.h:17
auto cw_rend() const
Definition: expression_base.h:52
auto cw_begin() const
Definition: expression_base.h:51
Definition: common.h:25
static constexpr int tensor_iterator_dim
Definition: expression_base.h:34
auto cw_end() const
Definition: expression_base.h:52
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22