Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions cub/cub/device/dispatch/dispatch_select_if.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -346,16 +346,16 @@ __launch_bounds__(int(
OffsetT,
StreamingContextT>::type::agent_policy_t::BLOCK_THREADS))
_CCCL_KERNEL_ATTRIBUTES void DeviceSelectSweepKernel(
_CCCL_GRID_CONSTANT const InputIteratorT d_in,
_CCCL_GRID_CONSTANT const FlagsInputIteratorT d_flags,
_CCCL_GRID_CONSTANT const SelectedOutputIteratorT d_selected_out,
_CCCL_GRID_CONSTANT const NumSelectedIteratorT d_num_selected_out,
const InputIteratorT d_in,
const FlagsInputIteratorT d_flags,
const SelectedOutputIteratorT d_selected_out,
const NumSelectedIteratorT d_num_selected_out,
ScanTileStateT tile_status,
SelectOpT select_op,
EqualityOpT equality_op,
_CCCL_GRID_CONSTANT const OffsetT num_items,
_CCCL_GRID_CONSTANT const int num_tiles,
_CCCL_GRID_CONSTANT const StreamingContextT streaming_context,
const OffsetT num_items,
const int num_tiles,
const StreamingContextT streaming_context,
vsmem_t vsmem)
{
using VsmemHelperT = typename make_vsmem_helper<
Expand Down
Loading