Skip to content

Commit

Permalink
Linalg test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanda Tang committed Oct 1, 2024
1 parent a6ad50b commit ea148bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def test_matvec():
def test_transpose():
assert_roundtrip_equivalence("""module {
func.func @transpose(%arg0: memref<?x?xf16>, %arg1: memref<?x?xf16>) {
%transpose = linalg.transpose ins( %arg0 : memref<?x?xf16> ) outs( %arg1 : memref<?x?xf16> ) permutation = [ 1, 0 ]
%transpose = linalg.transpose ins ( %arg0 : memref<?x?xf16> ) outs ( %arg1 : memref<?x?xf16> ) permutation = [ 1, 0 ]
return
}
}""")
Expand Down

0 comments on commit ea148bc

Please sign in to comment.