Skip to content

Commit

Permalink
test (nn/sdpa): bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
nickfraser committed Nov 29, 2024
1 parent 3a422f2 commit 198a648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/brevitas/nn/quant_sdpa.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def forward(
kwargs = {}
if scale is not None:
kwargs["scale"] = scale
if not enable_gqa:
if enable_gqa:
kwargs["enable_gqa"] = enable_gqa
return F.scaled_dot_product_attention(
query=query,
Expand Down

0 comments on commit 198a648

Please sign in to comment.