lin
tensor_operators.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_OPERATIONS_TENSOR_OPERATORS_HPP_
8 #define LIN_CORE_OPERATIONS_TENSOR_OPERATORS_HPP_
9 
10 #include "../config.hpp"
11 #include "../types.hpp"
12 #include "functors.hpp"
13 #include "stream_multiply.hpp"
14 #include "tensor_operations.hpp"
15 
16 #include <type_traits>
17 
18 namespace lin {
19 namespace internal {
20 
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);
29 }
30 
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);
35 }
36 
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);
41 }
42 
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);
46 }
47 
48 
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);
53 }
54 
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);
59 }
60 
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);
65 }
66 
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) {
70  LIN_ASSERT(c.cols() == d.rows());
71  return StreamMultiply<C, D>(c, d);
72 }
73 
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);
78 }
79 
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);
84 }
85 
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);
90 }
91 
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);
96 }
97 
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);
102 }
103 
107 } // namespace internal
108 } // namespace lin
109 
110 #endif
#define LIN_ASSERT(x)
Asserts the condition x when assertions are enabled within lin.
Definition: config.hpp:22
Definition: config.hpp:27