BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
algorithms.h
Go to the documentation of this file.
1 /*
2  * algorithms.h
3  *
4  * Created on: Nov 25, 2018
5  * Author: joseph
6  */
7 
8 #ifndef BC_ALGORITHMS_ALGORITHMS_H_
9 #define BC_ALGORITHMS_ALGORITHMS_H_
10 
11 #include "common.h"
12 #include <numeric>
13 #include <algorithm>
14 
15 #ifdef __CUDACC__
16 #include <thrust/generate.h>
17 #include <thrust/sort.h>
18 #include <thrust/copy.h>
19 #include <thrust/reduce.h>
20 #endif
21 
22 namespace bc {
23 namespace algorithms {
24 
25 #define BC_ALGORITHM_DEF(function) \
26  \
27 BC_IF_CUDA( \
28 template<class Begin, class End, class... Args> \
29 static auto function( \
30  bc::streams::Stream<bc::device_tag> stream, \
31  Begin begin, \
32  End end, \
33  Args... args) \
34 { \
35  return thrust::function( \
36  thrust::cuda::par.on(stream), begin, end, args...); \
37 }) \
38  \
39 template<class Begin, class End, class... Args> \
40 static auto function ( \
41  bc::streams::Stream<bc::host_tag> stream, \
42  Begin begin, \
43  End end, \
44  Args... args) \
45 { \
46  return stream.enqueue([&](){ std::function(begin, end, args...); }); \
47 }
48 
49 #define BC_REDUCE_ALGORITHM_DEF(function) \
50 BC_IF_CUDA( \
51 template<class Begin, class End, class... Args> \
52 static auto function( \
53  bc::streams::Stream<bc::device_tag> stream, \
54  Begin begin, \
55  End end, \
56  Args... args) \
57 { \
58  return thrust::function( \
59  thrust::cuda::par.on(stream), begin, end, args...); \
60 }) \
61  \
62 template<class Begin, class End, class... Args> \
63 static auto function ( \
64  bc::streams::Stream<bc::host_tag> stream, \
65  Begin begin, \
66  End end, \
67  Args... args) \
68  { \
69  using value_type = std::decay_t< \
70  decltype(std::function(begin, end, args...))>; \
71  \
72  value_type value; \
73  stream.enqueue([&]() { \
74  value = std::function(begin, end, args...); \
75  }); \
76  \
77  stream.sync(); \
78  return value; \
79  } \
80 
81 
92 #define BC_REDUCE_ALGORITHM_DEF_FIX_THRUST(function) \
93 BC_IF_CUDA( \
94 template<class Begin, class End, class... Args> \
95 static auto function( \
96  bc::streams::Stream<bc::device_tag> stream, \
97  Begin begin, \
98  End end, \
99  Args... args) \
100 { \
101  static_assert(std::is_same< \
102  std::random_access_iterator_tag, \
103  typename Begin::iterator_category>::value, \
104  "Assert random_access_iterator_tag"); \
105  \
106  return thrust::function( \
107  thrust::cuda::par.on(stream), &*begin, &*end, args...); \
108 }) \
109  \
110 template<class Begin, class End, class... Args> \
111 static auto function ( \
112  bc::streams::Stream<bc::host_tag> stream, \
113  Begin begin, \
114  End end, \
115  Args... args) \
116  { \
117  bc::streams::host_sync(); \
118  return &*begin + std::function(begin, end, args...); \
119  } \
120 
127 
144 
149 
155 
156 #ifdef __CUDACC__
157 
158 template<class Begin, class End, class... Args>
159 static auto accumulate (
161  Begin begin,
162  End end,
163  Args... args)
164 {
165  return thrust::reduce(
166  thrust::cuda::par.on(stream), begin, end, args...);
167 }
168 
169 #endif //#ifdef __CUDACC__
170 
171 template<class Begin, class End, class... Args>
172 static auto accumulate (
174  Begin begin,
175  End end,
176  Args... args)
177 {
178  using value_type = std::decay_t<
179  decltype(std::accumulate(begin, end, args...))>;
180 
181  value_type value = 1.0;
182  stream.enqueue([&](){
183  value = std::accumulate(begin, end, args...);
184  });
185 
186  stream.sync();
187  return value;
188 }
189 
190 #undef BC_ALGORITHM_DEF
191 #undef BC_REDUCE_ALGORITHM_DEF
192 
193 } //ns algorithms
194 } //bs BC
195 
196 #endif /* ALGORITHMS_H_ */
class::::::Args static auto count_if(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:123
class::::::Args static auto transform(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:133
class::::::Args static auto copy(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:128
class::::::Args static auto copy_if(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:129
class::::::Args static auto min(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:152
#define BC_ALGORITHM_DEF(function)
Definition: algorithms.h:25
class::::::Args static auto fill_n(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:132
class::::::Args static auto for_each(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:121
class::::::Args static auto reverse_copy(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:143
class::::::Args static auto stable_sort(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:148
class::::::Args static auto fill(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:131
class::::::Args static auto replace_copy(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:138
class::::::Args static auto swap(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:140
class::::::Args static auto replace_if(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:137
class::::::Args static auto is_sorted_until(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:146
#define BC_REDUCE_ALGORITHM_DEF(function)
Definition: algorithms.h:49
class::::::Args static auto find_if_not(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:126
class::::::Args static auto minmax_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:154
class::::::Args static auto sort(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:147
class::::::Args static auto find(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:124
class::::::Args static auto count(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:122
class::::::Args static auto copy_n(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:130
class::::::Args static auto max_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:151
class::::::Args static auto swap_ranges(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:141
class::::::Args static auto replace_copy_if(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:139
class::::::Args static auto generate(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:134
class::::::Args static auto find_if(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:125
class::::::Args static auto reverse(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:142
class::::::Args static auto min_element(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:153
class::::::Args static auto max(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:150
Definition: device.h:27
Definition: common.h:25
class::::::Args static auto is_sorted(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:145
class::::::Args static auto generate_n(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:135
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
class::::::Args static auto replace(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:136
#define BC_REDUCE_ALGORITHM_DEF_FIX_THRUST(function)
– thrust fails to compile certain functions.
Definition: algorithms.h:92