Skip to content

Commit

Permalink
Remove type argument
Browse files Browse the repository at this point in the history
  • Loading branch information
poyenc committed Aug 18, 2024
1 parent f37cd41 commit 3fb77a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions example/ck_tile/01_fmha/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,7 @@ decode_seqlen(mode_enum mode,
if(use_kvcache)
{
std::vector<ck_tile::index_t> seqlen_ks(batch);
randints<ck_tile::index_t>(
seqlen_ks.begin(), seqlen_ks.end(), seqlen_k_min, seqlen_k_max, seed);
randints(seqlen_ks.begin(), seqlen_ks.end(), seqlen_k_min, seqlen_k_max, seed);
return seqlen_ks;
}
else
Expand Down

0 comments on commit 3fb77a0

Please sign in to comment.