@@ -127,7 +127,7 @@ CUB_TEST("Device scan works with all device interfaces", "[scan][device]", full_
127
127
SECTION (" inclusive sum" )
128
128
{
129
129
using op_t = cub::Sum;
130
- using accum_t = cub::detail:: accumulator_t <op_t , input_t , input_t >;
130
+ using accum_t = ::cuda::std:: __accumulator_t <op_t , input_t , input_t >;
131
131
132
132
// Prepare verification data
133
133
c2h::host_vector<input_t > host_items (in_items);
@@ -155,7 +155,7 @@ CUB_TEST("Device scan works with all device interfaces", "[scan][device]", full_
155
155
SECTION (" exclusive sum" )
156
156
{
157
157
using op_t = cub::Sum;
158
- using accum_t = cub::detail:: accumulator_t <op_t , input_t , input_t >;
158
+ using accum_t = ::cuda::std:: __accumulator_t <op_t , input_t , input_t >;
159
159
160
160
// Prepare verification data
161
161
c2h::host_vector<input_t > host_items (in_items);
@@ -184,7 +184,7 @@ CUB_TEST("Device scan works with all device interfaces", "[scan][device]", full_
184
184
SECTION (" inclusive scan" )
185
185
{
186
186
using op_t = cub::Min;
187
- using accum_t = cub::detail:: accumulator_t <op_t , input_t , input_t >;
187
+ using accum_t = ::cuda::std:: __accumulator_t <op_t , input_t , input_t >;
188
188
189
189
// Prepare verification data
190
190
c2h::host_vector<input_t > host_items (in_items);
@@ -213,7 +213,7 @@ CUB_TEST("Device scan works with all device interfaces", "[scan][device]", full_
213
213
SECTION (" inclusive scan with init value" )
214
214
{
215
215
using op_t = cub::Sum;
216
- using accum_t = cub::detail:: accumulator_t <op_t , input_t , input_t >;
216
+ using accum_t = ::cuda::std:: __accumulator_t <op_t , input_t , input_t >;
217
217
218
218
// Scan operator
219
219
auto scan_op = unwrap_op (reference_extended_fp (d_in_it), op_t {});
@@ -248,7 +248,7 @@ CUB_TEST("Device scan works with all device interfaces", "[scan][device]", full_
248
248
SECTION (" exclusive scan" )
249
249
{
250
250
using op_t = cub::Sum;
251
- using accum_t = cub::detail:: accumulator_t <op_t , input_t , input_t >;
251
+ using accum_t = ::cuda::std:: __accumulator_t <op_t , input_t , input_t >;
252
252
253
253
// Scan operator
254
254
auto scan_op = unwrap_op (reference_extended_fp (d_in_it), op_t {});
@@ -281,7 +281,7 @@ CUB_TEST("Device scan works with all device interfaces", "[scan][device]", full_
281
281
SECTION (" exclusive scan with future-init value" )
282
282
{
283
283
using op_t = cub::Sum;
284
- using accum_t = cub::detail:: accumulator_t <op_t , input_t , input_t >;
284
+ using accum_t = ::cuda::std:: __accumulator_t <op_t , input_t , input_t >;
285
285
286
286
// Scan operator
287
287
auto scan_op = unwrap_op (reference_extended_fp (d_in_it), op_t {});
0 commit comments