Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juuso-oskari committed Jan 29, 2025
1 parent e80594a commit 1cbec84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/perf-kernels/MLA_decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def _fwd_kernel_stage2(
mask_out = offs_n + n * BLOCK_SIZE_N < Lv
w_vc = tl.load(w_kv_prts, mask=mask_v, other=0.0) # dc, head is parallelized (128, 512)

result += tl.sum(w_vc * acc[None, :], 1)
result = tl.sum(w_vc * acc[None, :], 1)

w_kv_prts += BLOCK_SIZE_N * stride_w_vcd

Expand Down

0 comments on commit 1cbec84

Please sign in to comment.