Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,7 @@ __global__ void append_speculate_cache_fp8_rope_qk_norm_dynamic_kernel(
const int token_id = blockIdx.x;

const int bid = batch_id_per_token[token_id];
if (bid == -1) return; // NOTE(gongshaotian): For CUDAGraph padding

const int start_token_idx = cu_seqlens_q[bid];
const int head_idx = blockIdx.y * NUM_WARPS + wid;
Expand Down
Loading