BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
expression_template_base.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_INTERNAL_BASE_H_
10 #define BC_INTERNAL_BASE_H_
11 
13 
14 namespace bc {
15 namespace tensors {
16 namespace exprs {
17 
18 template<class Derived>
20 
21  BCINLINE
22  const Derived& expression_template() const {
23  return static_cast<const Derived&>(*this);
24  }
25 
26  BCINLINE
27  Derived& expression_template() {
28  return static_cast<Derived&>(*this);
29  }
30 
31 
33 
34  using bc::traits::true_call;
35  using bc::traits::Integer;
36 
37 #ifndef _MSC_VER
38  static_assert(std::is_trivially_copy_constructible<Derived>::value,
39  "ExpressionTemplates must be trivially constructible");
40 
41  static_assert(std::is_trivially_copyable<Derived>::value,
42  "ExpressionTemplates must be tricially copyable");
43 #endif
44  static_assert(true_call<typename Derived::value_type>(),
45  "ExpressionTemplates must define: 'using value_type = <T>;'");
46 
47  static_assert(true_call<decltype(std::declval<Derived>().inner_shape())>(),
48  "ExpressionTemplates must define: inner_shape()");
49 
50  static_assert(true_call<decltype(std::declval<Derived>().rows())>(),
51  "ExpressionTemplates must define: rows()");
52 
53  static_assert(true_call<decltype(std::declval<Derived>().cols())>(),
54  "ExpressionTemplates must define: cols()");
55 
56  static_assert(true_call<decltype(std::declval<Derived>().dim(0))>(),
57  "ExpressionTemplates must define: dim(int)");
58 
59  static_assert(true_call<Integer<Derived::tensor_dim>>(),
60  "ExpressionTemplates must define: "
61  "static constexpr int tensor_dim");
62 
63  static_assert(true_call<Integer<Derived::tensor_iterator_dim>>(),
64  "ExpressionTemplates must define: "
65  "static constexpr int tensor_iterator_dim");
66 
67  static_assert(Derived::tensor_iterator_dim >= Derived::tensor_dim
68  || Derived::tensor_iterator_dim <= 1,
69  "Iterator Dimension must be greater than or equal to the tensor_dim");
70  }
71 
72  void deallocate() const {}
73 };
74 
75 
76 template<class Derived>
78  Expression_Template_Base<Derived> {
79 
80  using copy_constructible = std::false_type;
81  using move_constructible = std::false_type;
82  using copy_assignable = std::false_type;
83  using move_assignable = std::false_type;
84  using expression_template_expression_type = std::true_type;
85 
86  BCINLINE const auto inner_shape() const {
88  for (bc::size_t i = 0; i < Derived::tensor_dim; ++i) {
89  dim[i] = static_cast<const Derived&>(*this).dim(i);
90  }
91  return dim;
92  }
93 
94  BCINLINE const auto get_shape() const {
96  static_cast<const Derived&>(*this).inner_shape());
97  }
98 
100  auto& derived = static_cast<const Derived&>(*this);
101  return derived.dim(derived.tensor_dim-1);
102  }
103 };
104 
105 
106 template<class Derived>
108 
109  using expression_template_array_type = std::true_type;
110 
111  BCINLINE
113  using value_type = std::remove_const_t<typename Derived::value_type>;
114  using data_type = decltype(std::declval<Derived>().data());
115  using data_value_type = std::remove_const_t<std::remove_pointer_t<data_type>>;
116 
117  static_assert(std::is_same<value_type, data_value_type>::value,
118  "Array_Types must define: data() which returns a pointer of the ExpressionTemplate's value_type");
119  }
120 };
121 
122 
123 } //ns BC
124 } //ns exprs
125 } //ns tensors
126 
127 #endif /* BC_INTERNAL_BASE_H_ */
#define BCINLINE
Definition: common.h:96
BCINLINE const auto get_shape() const
Definition: expression_template_base.h:94
Definition: shape.h:17
std::true_type expression_template_expression_type
Definition: expression_template_base.h:84
BCINLINE value_type dim(size_t i, size_t default_value=1) const
Definition: dim.h:61
std::false_type copy_constructible
Definition: expression_template_base.h:80
Definition: expression_template_base.h:19
Definition: constexpr_int.h:14
std::false_type move_assignable
Definition: expression_template_base.h:83
BCINLINE Expression_Template_Base()
Definition: expression_template_base.h:32
BCINLINE Kernel_Array_Base()
Definition: expression_template_base.h:112
BCINLINE auto dim(const Integers &... ints)
Definition: dim.h:336
std::false_type copy_assignable
Definition: expression_template_base.h:82
void deallocate() const
Definition: expression_template_base.h:72
Definition: dim.h:17
BCINLINE Derived & expression_template()
Definition: expression_template_base.h:27
int size_t
Definition: common.h:283
std::false_type move_constructible
Definition: expression_template_base.h:81
BCINLINE const Derived & expression_template() const
Definition: expression_template_base.h:22
Definition: expression_template_base.h:77
BCINLINE const auto inner_shape() const
Definition: expression_template_base.h:86
BCINLINE bc::size_t outer_dim() const
Definition: expression_template_base.h:99
Definition: expression_template_base.h:107
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22