Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -3333,8 +3333,7 @@ def compute_group_1(

gate_handle = load_gate_consumer.wait_and_advance()

max_coord = tTR_tCcShared[cute.size(tTR_tCcShared) - 1]
cumprod_total = sCumprod[max_coord[1], 0, gate_handle.index]
cumprod_total = sCumprod[sCumprod.shape[0] - 1, 0, gate_handle.index]
Comment thread
Observer007 marked this conversation as resolved.

valid_state = not is_first_chunk or self.use_initial_state
if cutlass.const_expr(valid_state):
Expand Down
2 changes: 1 addition & 1 deletion tests/gdn/test_prefill_delta_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _test_prefill_kernel(
atol_kv = 5e-3
rtol_kv = 1e-3
else:
atol_o = 2e-3
atol_o = 1e-3
rtol_o = 1e-3
atol_kv = 1e-3
rtol_kv = 1e-4
Expand Down
Loading