Skip to content

Commit 8c4d6d6

Browse files
committed
fix lint
1 parent ba6b1fd commit 8c4d6d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jax/_src/cudnn/fused_attention_stablehlo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1789,7 +1789,7 @@ def dot_product_attention(
17891789
f"but got: bias={bias}, mask={mask}, q_seqlen={q_seqlen}, kv_seqlen={kv_seqlen}"
17901790
)
17911791
check_fp8_params(fp8_params)
1792-
check_layout(query, key, value, bias, q_seqlen, kv_seqlen, layout)
1792+
check_layout(query, key, value, bias, q_seqlen, kv_seqlen, q_offsets, kv_offsets, layout)
17931793
output, amax_s, amax_o = _dot_product_attention_fp8(
17941794
query, key, value, fp8_params,
17951795
scale, mask_type == MaskType.CAUSAL, layout.value, cudnn_version

0 commit comments

Comments
 (0)