Spaces:
Sleeping
Sleeping
File size: 221 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 | #pragma once
template<typename T>
void scan_host(const T* values_in, T* values_out, int n, bool inclusive = true);
template<typename T>
void scan_device(const T* values_in, T* values_out, int n, bool inclusive = true);
|