#include "specializations/block_scan_raking.cuh"
#include "specializations/block_scan_warp_scans.cuh"
#include "../util_arch.cuh"
#include "../util_type.cuh"
#include "../util_ptx.cuh"
#include "../util_namespace.cuh"
Go to the source code of this file.
Data Structures | |
class | cub::BlockScan< T, BLOCK_DIM_X, ALGORITHM, BLOCK_DIM_Y, BLOCK_DIM_Z, PTX_ARCH > |
The BlockScan class provides collective methods for computing a parallel prefix sum/scan of items partitioned across a CUDA thread block. More... | |
struct | cub::BlockScan< T, BLOCK_DIM_X, ALGORITHM, BLOCK_DIM_Y, BLOCK_DIM_Z, PTX_ARCH >::TempStorage |
\smemstorage{BlockScan} More... | |
Namespaces | |
namespace | cub |
Optional outer namespace(s) | |
Enumerations | |
enum | cub::BlockScanAlgorithm { cub::BLOCK_SCAN_RAKING , cub::BLOCK_SCAN_RAKING_MEMOIZE , cub::BLOCK_SCAN_WARP_SCANS } |
BlockScanAlgorithm enumerates alternative algorithms for cub::BlockScan to compute a parallel prefix scan across a CUDA thread block. More... | |
The cub::BlockScan class provides collective methods for computing a parallel prefix sum/scan of items partitioned across a CUDA thread block.
Definition in file block_scan.cuh.