Skip to content

Commit

Permalink
Fix linalg matmul op
Browse files Browse the repository at this point in the history
  • Loading branch information
oluwatimilehin committed Feb 13, 2025
1 parent 816c689 commit 856b9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xdsl/dialects/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ def __init__(
add, mul = (
(arith.AddfOp, arith.MulfOp)
if isinstance(arg_types[-1], AnyFloat)
else (arith.AddiOp, arith.MulfOp)
else (arith.AddiOp, arith.MuliOp)
)

@Builder.implicit_region(arg_types)
Expand Down

0 comments on commit 856b9c3

Please sign in to comment.