Skip to content

Commit

Permalink
Fix conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Dec 12, 2024
1 parent aabc7f6 commit b716e9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ struct sm90_tuning<LengthT, __uint128_t, primitive_length::yes, primitive_key::n
template <class LengthT, class KeyT>
struct policy_hub
{
static constexpr int max_input_bytes = ::cuda::std::max(sizeof(KeyT), sizeof(LengthT));
static constexpr int max_input_bytes = static_cast<int>(::cuda::std::max(sizeof(KeyT), sizeof(LengthT)));
static constexpr int combined_input_bytes = sizeof(KeyT) + sizeof(LengthT);

struct DefaultPolicy
Expand Down

0 comments on commit b716e9f

Please sign in to comment.