Skip to content

Commit

Permalink
fix Thrust Arch::ver
Browse files Browse the repository at this point in the history
  • Loading branch information
fbusato committed Jan 29, 2025
1 parent d3b66a6 commit b9096c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thrust/thrust/system/cuda/detail/set_operations.h
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,9 @@ struct SetOpAgent
using BlockLoadValues1 = typename core::BlockLoad<PtxPlan, ValuesLoadIt1>::type;
using BlockLoadValues2 = typename core::BlockLoad<PtxPlan, ValuesLoadIt2>::type;

using TilePrefixCallback = cub::TilePrefixCallbackOp<Size, ::cuda::std::plus<>, ScanTileState, Arch::ver>;
using TilePrefixCallback = cub::TilePrefixCallbackOp<Size, ::cuda::std::plus<>, ScanTileState>;

using BlockScan = cub::BlockScan<Size, PtxPlan::BLOCK_THREADS, PtxPlan::SCAN_ALGORITHM, 1, 1, Arch::ver>;
using BlockScan = cub::BlockScan<Size, PtxPlan::BLOCK_THREADS, PtxPlan::SCAN_ALGORITHM, 1, 1>;

// gather required temporary storage in a union
//
Expand Down

0 comments on commit b9096c6

Please sign in to comment.