| 279 | } |
| 280 | |
| 281 | struct sum_op |
| 282 | { |
| 283 | template<typename T> ROCPRIM_HOST_DEVICE |
| 284 | T |
| 285 | operator()(const T& input_1,const T& input_2) const |
| 286 | { |
| 287 | return input_1 + input_2; |
| 288 | } |
| 289 | }; |
| 290 | |
| 291 | template<class Type, int32_t Length> |
| 292 | __global__ |
no outgoing calls