BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
tensor_operations.h
Go to the documentation of this file.
2 
3 private:
4 
5  #define BC_ASSERT_ASSIGNABLE(literal) \
6  static_assert( \
7  traits_type::is_copy_assignable::value, \
8  "ASSERT COPY ASSIGNABLE: " literal)
9 
10  template<class ScalarType>
11  using enable_if_scalar = std::enable_if_t<
12  std::is_convertible<ScalarType, value_type>::value>;
13 
14 
15 public:
16 
17 
18  template<class Xpr> BCHOT
19  self_type& operator = (const Expression_Base<Xpr>& param)
20  {
21  static_assert(tensor_dim >= Xpr::tensor_dim,
22  "BlackCat_Tensors: Operator= is not a valid operation for (reduction) broadcasting");
24  "self_type& operator = (const Expression_Base<Xpr>& param)");
25  assert_valid(param);
26  return evaluate(assignment_bi_expr(bc::oper::assign, param));
27  }
28 
29 #define BC_OPER_BASIC_ASSIGNMENT_DEF(op, op_functor) \
30  \
31  template<class Xpr> BCHOT \
32  self_type& operator op (const Expression_Base<Xpr>& param) { \
33  BC_ASSERT_ASSIGNABLE( \
34  "operator " #op "(const Expression_Base<Xpr>& param)"); \
35  assert_valid(param); \
36  using operation = std::conditional_t< \
37  (tensor_dim >= Xpr::tensor_dim), \
38  oper::op_functor##_Assign, \
39  oper::Atomic_##op_functor<system_tag>>; \
40  return evaluate(assignment_bi_expr(operation(), param)); \
41  } \
42 
43 #define BC_OPER_SCALAR_ASSIGNMENT_DEF(op, op_functor) \
44  \
45  template<class ScalarType, class=enable_if_scalar<ScalarType>> \
46  self_type& operator op (const ScalarType& param) { \
47  BC_ASSERT_ASSIGNABLE( \
48  "operator " #op " (const Expression_Base<Xpr>& param)"); \
49  value_type value = param; \
50  return evaluate(assignment_bi_expr( \
51  oper:: op_functor##_Assign(), \
52  exprs::make_scalar_constant<system_tag>(value))); \
53  } \
54 
55 #define BC_OPER_ASSIGNMENT_DEF(op, op_functor) \
56  BC_OPER_SCALAR_ASSIGNMENT_DEF(op, op_functor) \
57  BC_OPER_BASIC_ASSIGNMENT_DEF(op, op_functor)
58 
59 
60  template<class ScalarType, class=enable_if_scalar<ScalarType>>
61  self_type& operator = (const ScalarType& param)
62  {
64  "self_type& operator =(const Expression_Base<Xpr>& param)");
65  return evaluate(assignment_bi_expr(
67  exprs::make_scalar_constant<system_tag>((value_type)param)));
68  }
69 
74 
75 
76  struct Alias; friend struct Alias;
77  struct Alias {
78 
79  self_type& tensor;
80 
81  template<class Xpr>
82  auto& operator = (const Expression_Base<Xpr>& param) {
83  tensor.assert_valid(param);
84  return tensor.evaluate(
85  tensor.assignment_bi_expr(oper::alias_assign, param));
86  }
87 
88  template<class Xpr>
89  auto& operator += (const Expression_Base<Xpr>& param) {
90  tensor.assert_valid(param);
91  return tensor.evaluate(
92  tensor.assignment_bi_expr(oper::alias_add_assign, param));
93  }
94 
95  template<class Xpr>
96  auto& operator -= (const Expression_Base<Xpr>& param) {
97  tensor.assert_valid(param);
98  return tensor.evaluate(
99  tensor.assignment_bi_expr(oper::alias_sub_assign, param));
100  }
101  };
102 
104  return Alias { *this };
105  }
106 
107 private:
108 
109  template<
110  class Functor,
111  class Xpr,
112  class=std::enable_if_t<
113  exprs::expression_traits<Xpr>::is_expression_template::value>>
114  auto assignment_bi_expr(Functor func, const Xpr& rv)
115  {
116  return make_tensor(
117  exprs::make_bin_expr(this->expression_template(), rv.expression_template(), func));
118  }
119 
120  template<class Xpr>
121  self_type& evaluate(const Expression_Base<Xpr>& tensor) {
122  BC_ASSERT(this->get_stream().get_allocator().allocated_bytes() == 0,
123  "Evaluation expects streams allocate_bytes to be 0 pre-evaluation");
124 
125  exprs::evaluate(tensor.expression_template(), this->get_stream());
126 
127  BC_ASSERT(this->get_stream().get_allocator().allocated_bytes() == 0,
128  "Evaluation expects streams allocate_bytes to be 0 post-evaluation");
129  return *this;
130  }
131 public:
132 
133 #undef BC_ASSERT_ASSIGNABLE
134 #undef BC_OPER_ASSIGNMENT_DEF
135 #undef BC_OPER_SCALAR_ASSIGNMENT_DEF
136 #undef BC_OPER_BASIC_ASSIGNMENT_DEF
137 
Definition: tensor_operations.h:77
bc::oper::Alias_Add_Assign alias_add_assign
BCHOT auto make_bin_expr(Lv left, Rv right, Op oper)
Definition: expression_binary.h:275
#define BC_OPER_ASSIGNMENT_DEF(op, op_functor)
Definition: tensor_operations.h:55
bc::oper::Assign assign
#define BC_ASSERT_ASSIGNABLE(literal)
Definition: tensor_operations.h:5
self_type & operator-=(const ScalarType &param)
Definition: tensor_operations.h:71
void assert_valid(const Expression_Base< Xpr > &tensor) const
Definition: expression_operations.h:125
Alias alias()
Definition: tensor_operations.h:103
BCHOT self_type & operator=(const Expression_Base< Xpr > &param)
Definition: tensor_operations.h:19
self_type & operator+=(const ScalarType &param)
Definition: tensor_operations.h:70
bc::oper::Alias_Sub_Assign alias_sub_assign
bc::oper::Alias_Assign alias_assign
self_type & tensor
Definition: tensor_operations.h:79
#define BC_ASSERT(condition, message)
Definition: common.h:185
#define BCHOT
Definition: common.h:97
auto make_tensor(ExpressionTemplate expression)
Definition: common.h:29