CUB
|
#include "specializations/warp_scan_shfl.cuh"
#include "specializations/warp_scan_smem.cuh"
#include "../thread/thread_operators.cuh"
#include "../util_arch.cuh"
#include "../util_type.cuh"
#include "../util_namespace.cuh"
Go to the source code of this file.
Classes | |
class | cub::WarpScan< T, LOGICAL_WARP_THREADS, PTX_ARCH > |
The WarpScan class provides collective methods for computing a parallel prefix scan of items partitioned across a CUDA thread warp.
![]()
. | |
struct | cub::WarpScan< T, LOGICAL_WARP_THREADS, PTX_ARCH >::TempStorage |
The operations exposed by WarpScan require a temporary memory allocation of this nested type for thread communication. This opaque storage can be allocated directly using the __shared__ keyword. Alternatively, it can be aliased to externally allocated memory (shared or global) or union 'd with other storage allocation types to facilitate memory reuse. More... | |
Namespaces | |
cub | |
Optional outer namespace(s) | |
The cub::WarpScan class provides collective methods for computing a parallel prefix scan of items partitioned across a CUDA thread warp.
Definition in file warp_scan.cuh.