5 #define BC_ASSERT_ASSIGNABLE(literal) \ 7 traits_type::is_copy_assignable::value, \ 8 "ASSERT COPY ASSIGNABLE: " literal) 10 template<
class ScalarType>
11 using enable_if_scalar = std::enable_if_t<
12 std::is_convertible<ScalarType, value_type>::value>;
18 template<
class Xpr>
BCHOT 19 self_type&
operator = (
const Expression_Base<Xpr>& param)
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)");
29 #define BC_OPER_BASIC_ASSIGNMENT_DEF(op, op_functor) \ 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)); \ 43 #define BC_OPER_SCALAR_ASSIGNMENT_DEF(op, op_functor) \ 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))); \ 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) 60 template<
class ScalarType,
class=enable_if_scalar<ScalarType>>
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)));
76 struct
Alias; friend struct Alias;
83 tensor.assert_valid(param);
84 return tensor.evaluate(
90 tensor.assert_valid(param);
91 return tensor.evaluate(
97 tensor.assert_valid(param);
98 return tensor.evaluate(
104 return Alias { *
this };
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)
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");
125 exprs::evaluate(tensor.expression_template(), this->get_stream());
127 BC_ASSERT(this->get_stream().get_allocator().allocated_bytes() == 0,
128 "Evaluation expects streams allocate_bytes to be 0 post-evaluation");
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 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
#define BC_ASSERT_ASSIGNABLE(literal)
Definition: tensor_operations.h:5
self_type & operator-=(const ScalarType ¶m)
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 > ¶m)
Definition: tensor_operations.h:19
self_type & operator+=(const ScalarType ¶m)
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