Skip to content

Commit

Permalink
Fix tuning for keys only
Browse files Browse the repository at this point in the history
  • Loading branch information
gevtushenko committed May 7, 2023
1 parent d18fa6a commit 0a80e78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cub/device/dispatch/dispatch_radix_sort.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,8 @@ struct sm90_small_key_tuning
// clang-format off

// keys
template <> struct sm90_small_key_tuning<1, 0, 4> { static constexpr int threads = 512; static constexpr int items = 15; };
template <> struct sm90_small_key_tuning<2, 0, 4> { static constexpr int threads = 512; static constexpr int items = 15; };
template <> struct sm90_small_key_tuning<1, 0, 4> { static constexpr int threads = 512; static constexpr int items = 19; };
template <> struct sm90_small_key_tuning<2, 0, 4> { static constexpr int threads = 512; static constexpr int items = 19; };

// pairs 8:xx
template <> struct sm90_small_key_tuning<1, 1, 4> { static constexpr int threads = 512; static constexpr int items = 15; };
Expand Down

0 comments on commit 0a80e78

Please sign in to comment.