diff options
| author | Miles Macklin <[email protected]> | 2017-06-09 13:41:15 +1200 |
|---|---|---|
| committer | Miles Macklin <[email protected]> | 2017-06-09 13:41:15 +1200 |
| commit | 688b5f42e9bfe498d7af7075d4d8f4429867f3a3 (patch) | |
| tree | 7e0d0e7c95298f0418723abd92f61ac6e16b055e /external/cub-1.3.2 | |
| parent | Update README.md (diff) | |
| download | flex-688b5f42e9bfe498d7af7075d4d8f4429867f3a3.tar.xz flex-688b5f42e9bfe498d7af7075d4d8f4429867f3a3.zip | |
1.2.0.beta.11.2.0.beta.1
Diffstat (limited to 'external/cub-1.3.2')
| -rw-r--r-- | external/cub-1.3.2/cub/warp/specializations/warp_scan_smem.cuh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/external/cub-1.3.2/cub/warp/specializations/warp_scan_smem.cuh b/external/cub-1.3.2/cub/warp/specializations/warp_scan_smem.cuh index 3bc21e0..75e06d9 100644 --- a/external/cub-1.3.2/cub/warp/specializations/warp_scan_smem.cuh +++ b/external/cub-1.3.2/cub/warp/specializations/warp_scan_smem.cuh @@ -219,7 +219,8 @@ struct WarpScanSmem T &output, ///< [out] Calling thread's output item. May be aliased with \p input.
ScanOp scan_op) ///< [in] Binary scan operator
{
- InclusiveScan(input, output, scan_op, Int2Type<Traits<T>::PRIMITIVE>());
}
+ InclusiveScan(input, output, scan_op, Int2Type<Traits<T>::PRIMITIVE>());
+ }
/// Inclusive scan with aggregate
|