9 #ifndef EXPRESSION_BINARY_FUNCTORS_H_ 10 #define EXPRESSION_BINARY_FUNCTORS_H_ 15 #include "../common.h" 16 #include <type_traits> 23 #define BC_FORWARD_TO_APPLY\ 24 template<class Lv, class Rv> \ 25 BCINLINE auto operator () (Lv&& lv, Rv&& rv) const \ 26 -> decltype(apply(lv, rv)) { \ 27 return apply(lv, rv); \ 30 #define BC_FORWARD_DEF(...) \ 31 template<class Lv, class Rv> \ 33 static auto apply (Lv&& lv, Rv&& rv) \ 34 -> decltype(__VA_ARGS__) { \ 39 #define BC_ADVANCED_FORWARD_DEF(...) \ 40 template<class Lv, class Rv> \ 42 static auto apply (Lv&& lv, Rv&& rv) \ 202 static constexpr
bool is_host = std::is_same<T, host_tag>::value;
209 return atomicAdd(&lv, rv);
217 std::is_same<void, Lv>::value,
218 "BLACKCAT_TENSORS: Atomic-reduction " 219 "mul-assign is currently not available on the GPU");
225 return atomicAdd(&lv, -rv);
232 std::is_same<void, Lv>::value,
233 "BLACKCAT_TENSORS: Atomic-reduction " 234 "div-assign is currently not available on the GPU");
238 template<
class SystemTag>
239 using Atomic_Add = std::conditional_t<detail::is_host<SystemTag>,
241 template<
class SystemTag>
242 using Atomic_Sub = std::conditional_t<detail::is_host<SystemTag>,
244 template<
class SystemTag>
245 using Atomic_Div = std::conditional_t<detail::is_host<SystemTag>,
247 template<
class SystemTag>
248 using Atomic_Mul = std::conditional_t<detail::is_host<SystemTag>,
251 #else //if __CUDACC__ is not defined 253 template<
class SystemTag>
254 using Atomic_Add = std::enable_if_t<detail::is_host<SystemTag>,
256 template<
class SystemTag>
257 using Atomic_Sub = std::enable_if_t<detail::is_host<SystemTag>,
259 template<
class SystemTag>
260 using Atomic_Div = std::enable_if_t<detail::is_host<SystemTag>,
262 template<
class SystemTag>
263 using Atomic_Mul = std::enable_if_t<detail::is_host<SystemTag>,
272 #undef BC_FORWARD_DEF 273 #undef BC_FORWARD_TO_APPLY
bc::oper::Alias_Add_Assign alias_add_assign
bc::oper::Device_Atomic_Add device_atomic_add
Definition: constexpr_int.h:14
bc::oper::Add_Assign add_assign
std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Sub > Atomic_Sub
Definition: binary.h:243
struct bc::oper::Lesser lesser
struct bc::oper::Approx_Equal approx_equal
struct bc::oper::Xor xor_
std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Div > Atomic_Div
Definition: binary.h:246
struct bc::oper::cmath_functions::Abs abs
struct bc::oper::Greater greater
#define BC_FORWARD_DEF(...)
Definition: binary.h:30
bc::oper::Device_Atomic_Sub device_atomic_sub
std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Add > Atomic_Add
Definition: binary.h:240
bc::oper::Alias_Sub_Assign alias_sub_assign
struct bc::oper::Equal equal
bc::oper::Device_Atomic_Mul device_atomic_mul
#define BC_ADVANCED_FORWARD_DEF(...)
Definition: binary.h:39
bc::oper::Host_Atomic_Div host_atomic_div
bc::oper::Div_Assign div_assign
bc::oper::Mul_Assign mul_assign
std::conditional_t< detail::is_host< SystemTag >, Host_Atomic_Add, Device_Atomic_Mul > Atomic_Mul
Definition: binary.h:249
struct bc::oper::Greater_Equal greater_equal
bc::oper::Alias_Assign alias_assign
bc::oper::Host_Atomic_Mul host_atomic_mul
bc::oper::Host_Atomic_Add host_atomic_add
struct bc::oper::Lesser_Equal lesser_equal
bc::oper::Host_Atomic_Sub host_atomic_sub
struct bc::oper::Scalar_Mul scalar_mul
bc::oper::Sub_Assign sub_assign
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
#define BC_omp_atomic__
Definition: common.h:268
bc::oper::Device_Atomic_Div device_atomic_div
struct bc::oper::And and_