Skip to content

Commit

Permalink
Fix int2type
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jan 30, 2025
1 parent df99e6d commit c2394d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cub/cub/warp/specializations/warp_scan_smem.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ struct WarpScanSmem
template <typename ScanOp>
_CCCL_DEVICE _CCCL_FORCEINLINE void InclusiveScan(T input, T& inclusive_output, ScanOp scan_op)
{
InclusiveScan(input, inclusive_output, scan_op, is_primitive<T>{});
InclusiveScan(input, inclusive_output, scan_op, Int2Type<is_primitive<T>::value>{});
}

/**
Expand Down

0 comments on commit c2394d1

Please sign in to comment.