7 #ifndef LIN_CORE_OPERATIONS_TENSOR_OPERATORS_HPP_ 8 #define LIN_CORE_OPERATIONS_TENSOR_OPERATORS_HPP_ 10 #include "../config.hpp" 11 #include "../types.hpp" 16 #include <type_traits> 25 template <
class C,
class D, std::enable_if_t<
26 matches_tensor_tensor<C, D>::value,
size_t> = 0>
27 inline constexpr
auto operator+(Stream<C>
const &c, Stream<D>
const &d) {
28 return lin::add(c, d);
31 template <
typename T,
class C, std::enable_if_t<
32 matches_scalar_tensor<T, C>::value,
size_t> = 0>
33 inline constexpr
auto operator+(T
const &t, Stream<C>
const &c) {
34 return lin::add(t, c);
37 template <
class C,
typename T, std::enable_if_t<
38 matches_tensor_scalar<C, T>::value,
size_t> = 0>
39 inline constexpr
auto operator+(Stream<C>
const &c, T
const &t) {
40 return lin::add(c, t);
43 template <class C, std::enable_if_t<matches_tensor<C>::value,
size_t> = 0>
44 inline constexpr
auto operator-(Stream<C>
const &c) {
45 return lin::negate(c);
49 template <
class C,
class D, std::enable_if_t<
50 matches_tensor_tensor<C, D>::value,
size_t> = 0>
51 inline constexpr
auto operator-(Stream<C>
const &c, Stream<D>
const &d) {
52 return lin::subtract(c, d);
55 template <
typename T,
class C, std::enable_if_t<
56 matches_scalar_tensor<T, C>::value,
size_t> = 0>
57 inline constexpr
auto operator-(T
const &t, Stream<C>
const &c) {
58 return lin::subtract(t, c);
61 template <
class C,
typename T, std::enable_if_t<
62 matches_tensor_scalar<C, T>::value,
size_t> = 0>
63 inline constexpr
auto operator-(Stream<C>
const &c, T
const &t) {
64 return lin::subtract(c, t);
67 template <
class C,
class D, std::enable_if_t<
68 can_multiply<C, D>::value,
size_t> = 0>
69 inline constexpr
auto operator*(Stream<C>
const &c, Stream<D>
const &d) {
71 return StreamMultiply<C, D>(c, d);
74 template <
typename T,
class C, std::enable_if_t<
75 matches_scalar_tensor<T, C>::value,
size_t> = 0>
76 inline constexpr
auto operator*(T
const &t, Stream<C>
const &c) {
77 return lin::multiply(t, c);
80 template <
class C,
typename T, std::enable_if_t<
81 matches_tensor_scalar<C, T>::value,
size_t> = 0>
82 inline constexpr
auto operator*(Stream<C>
const &c, T
const &t) {
83 return lin::multiply(c, t);
86 template <
class C,
class D, std::enable_if_t<
87 matches_tensor_tensor<C, D>::value,
size_t> = 0>
88 inline constexpr
auto operator/(Stream<C>
const &c, Stream<D>
const &d) {
89 return lin::divide(c, d);
92 template <
typename T,
class C, std::enable_if_t<
93 matches_scalar_tensor<T, C>::value,
size_t> = 0>
94 inline constexpr
auto operator/(T
const &t, Stream<C>
const &c) {
95 return lin::divide(t, c);
98 template <
class C,
typename T, std::enable_if_t<
99 matches_tensor_scalar<C, T>::value,
size_t> = 0>
100 inline constexpr
auto operator/(Stream<C>
const &c, T
const &t) {
101 return lin::divide(c, t);
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Definition: config.hpp:27