cotila  1.2.1
A compile time linear algebra system
utility.h
1 #ifndef COTILA_VECTOR_UTILITY_H_
2 #define COTILA_VECTOR_UTILITY_H_
3 
4 #include <cotila/vector/vector.h>
5 #include <tuple>
6 
7 namespace cotila {
8 
21 template <
22  typename F, typename T, typename... Vectors,
23  typename U = std::invoke_result_t<F, T, typename Vectors::value_type...>,
24  std::size_t N =
25  detail::all_same_value<std::size_t, Vectors::size...>::value>
26 constexpr vector<U, N> elementwise(F f, const vector<T, N> &v,
27  const Vectors &... vectors) {
28  vector<U, N> op_applied = {};
29  for (std::size_t i = 0; i < N; ++i)
30  op_applied[i] = std::apply(f, std::forward_as_tuple(v[i], vectors[i]...));
31  return op_applied;
32 }
33 
42 template <typename T, std::size_t N, typename F, typename U>
43 constexpr U accumulate(const vector<T, N> &v, U init, F &&f) {
44  U r = init;
45  for (std::size_t i = 0; i < vector<T, N>::size; ++i)
46  r = std::apply(std::forward<F>(f), std::forward_as_tuple(r, v[i]));
47  return r;
48 }
49 
56 template <typename T, typename U, std::size_t N>
57 constexpr vector<T, N> cast(const vector<U, N> &v) {
58  return elementwise([](const U u) { return static_cast<T>(u); }, v);
59 }
60 
67 template <std::size_t N, typename T>
68 constexpr vector<T, N> iota(T value = T()) {
69  vector<T, N> seq = {};
70  for (auto &x : seq) {
71  x = value;
72  value += 1; // equivalent to value++, see GCC Bug 91705
73  }
74  return seq;
75 }
76 
84 template <std::size_t N, typename T>
85 constexpr vector<T, N> linspace(T min, T max) {
86  return ((max - min) / (N - 1)) * iota<N, T>() + min;
87 }
88 
95 template <std::size_t N, typename T> constexpr vector<T, N> fill(T value) {
96  vector<T, N> filled = {};
97  for (auto &x : filled)
98  x = value;
99  return filled;
100 }
101 
108 template <std::size_t N, typename F> constexpr decltype(auto) generate(F &&f) {
109  return elementwise(f, iota<N, std::size_t>());
110 }
111 
120 template <std::size_t N, typename T>
121 constexpr vector<T, N> rotate(vector<T, N> v, int n) {
122  vector<T, N> rotated = {};
123  // add N (the modulus) to n until it is positive
124  while (n < 0)
125  n += N;
126  for (std::size_t i = 0; i < N; ++i)
127  rotated[i] = v[(i + n) % N];
128  return rotated;
129 }
130 
139 template <std::size_t M, typename T, std::size_t N>
140 constexpr vector<T, M> slice(vector<T, N> v, std::size_t start = 0) {
141 
142  vector<T, M> sliced = {};
143  for (std::size_t i = 0; i < M; ++i)
144  sliced[i] = v[i + start];
145 
146  return sliced;
147 }
148 
157 template <typename T, std::size_t N, std::size_t M>
159  vector<T, N + M> concatted = {};
160  for (std::size_t i = 0; i < N; ++i)
161  concatted[i] = a[i];
162  for (std::size_t i = 0; i < M; ++i)
163  concatted[i + N] = b[i];
164  return concatted;
165 }
166 
169 } // namespace cotila
170 
171 #endif // COTILA_VECTOR_UTILITY_H_
constexpr vector< T, N > rotate(vector< T, N > v, int n)
shifts vector elements
Definition: utility.h:121
constexpr vector< U, N > elementwise(F f, const vector< T, N > &v, const Vectors &... vectors)
applies a function elementwise between many vectors
Definition: utility.h:26
constexpr vector< T, N > linspace(T min, T max)
generates a vector of equally spaced elements
Definition: utility.h:85
constexpr U accumulate(const vector< T, N > &v, U init, F &&f)
accumulates an operation across a vector
Definition: utility.h:43
constexpr vector< T, M > slice(vector< T, N > v, std::size_t start=0)
slices a vector into a subvector
Definition: utility.h:140
Definition: math.h:16
constexpr T max(const vector< T, N > &v)
computes the maximum valued element
Definition: math.h:119
A container representing a vector.
Definition: vector.h:25
constexpr vector< T, N > iota(T value=T())
generates a vector containing consecutive elements
Definition: utility.h:68
constexpr T min(const vector< T, N > &v)
computes the minimum valued element
Definition: math.h:109
constexpr vector< T, N+M > concat(vector< T, N > a, vector< T, M > b)
concatenates two vectors
Definition: utility.h:158
Contains the definition of the cotila::vector class.
constexpr vector< T, N > cast(const vector< U, N > &v)
casts a vector to another type
Definition: utility.h:57
constexpr vector< T, N > fill(T value)
generates a vector containing a single value
Definition: utility.h:95
decltype(auto) constexpr generate(F &&f)
generates a vector as a function of its index
Definition: utility.h:108