8 #ifndef BC_ALGORITHMS_ALGORITHMS_H_ 9 #define BC_ALGORITHMS_ALGORITHMS_H_ 16 #include <thrust/generate.h> 17 #include <thrust/sort.h> 18 #include <thrust/copy.h> 19 #include <thrust/reduce.h> 23 namespace algorithms {
25 #define BC_ALGORITHM_DEF(function) \ 28 template<class Begin, class End, class... Args> \ 29 static auto function( \ 30 bc::streams::Stream<bc::device_tag> stream, \ 35 return thrust::function( \ 36 thrust::cuda::par.on(stream), begin, end, args...); \ 39 template<class Begin, class End, class... Args> \ 40 static auto function ( \ 41 bc::streams::Stream<bc::host_tag> stream, \ 46 return stream.enqueue([&](){ std::function(begin, end, args...); }); \ 49 #define BC_REDUCE_ALGORITHM_DEF(function) \ 51 template<class Begin, class End, class... Args> \ 52 static auto function( \ 53 bc::streams::Stream<bc::device_tag> stream, \ 58 return thrust::function( \ 59 thrust::cuda::par.on(stream), begin, end, args...); \ 62 template<class Begin, class End, class... Args> \ 63 static auto function ( \ 64 bc::streams::Stream<bc::host_tag> stream, \ 69 using value_type = std::decay_t< \ 70 decltype(std::function(begin, end, args...))>; \ 73 stream.enqueue([&]() { \ 74 value = std::function(begin, end, args...); \ 92 #define BC_REDUCE_ALGORITHM_DEF_FIX_THRUST(function) \ 94 template<class Begin, class End, class... Args> \ 95 static auto function( \ 96 bc::streams::Stream<bc::device_tag> stream, \ 101 static_assert(std::is_same< \ 102 std::random_access_iterator_tag, \ 103 typename Begin::iterator_category>::value, \ 104 "Assert random_access_iterator_tag"); \ 106 return thrust::function( \ 107 thrust::cuda::par.on(stream), &*begin, &*end, args...); \ 110 template<class Begin, class End, class... Args> \ 111 static auto function ( \ 112 bc::streams::Stream<bc::host_tag> stream, \ 117 bc::streams::host_sync(); \ 118 return &*begin + std::function(begin, end, args...); \ 158 template<
class Begin,
class End,
class... Args>
159 static auto accumulate (
165 return thrust::reduce(
166 thrust::cuda::par.on(stream), begin, end, args...);
169 #endif //#ifdef __CUDACC__ 171 template<
class Begin,
class End,
class... Args>
172 static auto accumulate (
178 using value_type = std::decay_t<
179 decltype(std::accumulate(begin, end, args...))>;
181 value_type value = 1.0;
182 stream.enqueue([&](){
183 value = std::accumulate(begin, end, args...);
190 #undef BC_ALGORITHM_DEF 191 #undef BC_REDUCE_ALGORITHM_DEF 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
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