-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathscan.cuh
More file actions
172 lines (145 loc) · 6.25 KB
/
scan.cuh
File metadata and controls
172 lines (145 loc) · 6.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
* Copyright (c) 20224 NVIDIA Corporation
*
* Licensed under the Apache License Version 2.0 with LLVM Exceptions
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://llvm.org/LICENSE.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "../../stdexec/execution.hpp"
#include <type_traits>
#include <ranges>
#include <cuda/std/type_traits>
#include <cub/device/device_scan.cuh>
#include "algorithm_base.cuh"
#include "common.cuh"
#include "../detail/throw_on_cuda_error.cuh"
namespace nvexec {
namespace STDEXEC_STREAM_DETAIL_NS {
namespace scan_ {
template <class SenderId, class ReceiverId, class InitT, class Fun>
struct receiver_t
: public __algo_range_init_fun::receiver_t<
SenderId,
ReceiverId,
InitT,
Fun,
receiver_t<SenderId, ReceiverId, InitT, Fun>> {
using base = __algo_range_init_fun::
receiver_t<SenderId, ReceiverId, InitT, Fun, receiver_t<SenderId, ReceiverId, InitT, Fun>>;
template <class Range>
using result_t = typename __algo_range_init_fun::binary_invoke_result_t<Range, InitT, Fun>;
template <class Range>
static void set_value_impl(base::__t&& self, Range&& range) noexcept {
cudaError_t status{cudaSuccess};
cudaStream_t stream = self.op_state_.get_stream();
// `range` is produced asynchronously, so we need to wait for it to be ready
if (status = STDEXEC_DBG_ERR(cudaStreamSynchronize(stream)); status != cudaSuccess) {
self.op_state_.propagate_completion_signal(stdexec::set_error, std::move(status));
return;
}
using value_t = result_t<Range>;
value_t* d_out = static_cast<value_t*>(self.op_state_.temp_storage_);
void* d_temp_storage{};
std::size_t temp_storage_size{};
auto first = begin(range);
auto last = end(range);
std::size_t num_items = std::distance(first, last);
if (status = STDEXEC_DBG_ERR(cub::DeviceScan::ExclusiveScan(
d_temp_storage,
temp_storage_size,
first,
d_out,
self.fun_,
self.init_,
num_items,
stream));
status != cudaSuccess) {
self.op_state_.propagate_completion_signal(stdexec::set_error, std::move(status));
return;
}
if (status = STDEXEC_DBG_ERR( //
cudaMallocAsync(&d_temp_storage, temp_storage_size, stream));
status != cudaSuccess) {
self.op_state_.propagate_completion_signal(stdexec::set_error, std::move(status));
return;
}
if (status = STDEXEC_DBG_ERR(cub::DeviceScan::ExclusiveScan(
d_temp_storage,
temp_storage_size,
first,
d_out,
self.fun_,
self.init_,
num_items,
stream));
status != cudaSuccess) {
self.op_state_.propagate_completion_signal(stdexec::set_error, std::move(status));
return;
}
status = STDEXEC_DBG_ERR(cudaFreeAsync(d_temp_storage, stream));
self.op_state_.defer_temp_storage_destruction(d_out);
if (status == cudaSuccess) {
int* host_out = new int[10];
cudaMemcpy(host_out, d_out, 10 * sizeof(int), cudaMemcpyDeviceToHost);
for (size_t i = 0; i < 10; ++i) {
std::cout << host_out[i] << std::endl;
}
self.op_state_.propagate_completion_signal(stdexec::set_value, d_out);
} else {
self.op_state_.propagate_completion_signal(stdexec::set_error, std::move(status));
}
}
};
template <class SenderId, class InitT, class Fun>
struct sender_t
: public __algo_range_init_fun::
sender_t<SenderId, InitT, Fun, sender_t<SenderId, InitT, Fun>> {
template <class Receiver>
using receiver_t =
stdexec::__t<scan_::receiver_t<SenderId, stdexec::__id<Receiver>, InitT, Fun>>;
template <class Range>
using _set_value_t = completion_signatures<set_value_t(
::std::add_lvalue_reference_t<
typename __algo_range_init_fun::binary_invoke_result_t<Range, InitT, Fun>>)>;
// template <class Range>
// using _set_value_t = completion_signatures<set_value_t(
// std::vector<typename __algo_range_init_fun::binary_invoke_result_t<Range, InitT, Fun>>)>;
// // template <class Range, class InitT, class Fun>
// using _set_value_t_spanc =
// completion_signatures<set_value_t(binary_invoke_result_t<Range, InitT, Fun>*)>;
};
} // namespace scan_
struct scan_t {
template <class Sender, class InitT, class Fun>
using __sender = stdexec::__t<scan_::sender_t<stdexec::__id<__decay_t<Sender>>, InitT, Fun>>;
template <sender Sender, __movable_value InitT, __movable_value Fun = cub::Sum>
__sender<Sender, InitT, Fun> operator()(Sender&& sndr, InitT init, Fun fun) const {
return __sender<Sender, InitT, Fun>{{}, (Sender&&) sndr, (InitT&&) init, (Fun&&) fun};
}
template <class InitT, class Fun = cub::Sum>
__binder_back<scan_t, InitT, Fun> operator()(InitT init, Fun fun = {}) const {
return {
{},
{},
{(InitT&&) init, (Fun&&) fun}
};
}
};
} // namespace STDEXEC_STREAM_DETAIL_NS
inline constexpr STDEXEC_STREAM_DETAIL_NS::scan_t scan{};
} // namespace nvexec
namespace stdexec::__detail {
template <class SenderId, class Init, class Fun>
extern __mconst<
nvexec::STDEXEC_STREAM_DETAIL_NS::scan_::sender_t<__name_of<__t<SenderId>>, Init, Fun>>
__name_of_v<nvexec::STDEXEC_STREAM_DETAIL_NS::scan_::sender_t<SenderId, Init, Fun>>;
} // namespace stdexec::__detail