From 41b18fe1c68852b28ab6342317745308490d3f36 Mon Sep 17 00:00:00 2001 From: Amanda Tang Date: Fri, 10 Nov 2023 17:29:42 -0500 Subject: [PATCH] Update linalg fill syntax --- tests/test_linalg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_linalg.py b/tests/test_linalg.py index 1b4f61b..ef5694f 100644 --- a/tests/test_linalg.py +++ b/tests/test_linalg.py @@ -68,8 +68,8 @@ def test_dot(): def test_fill(): assert_roundtrip_equivalence("""module { - func.func @fill_view(%arg0: memref>, %arg1: f32) { - linalg.fill( %arg0 , %arg1 ) : memref> , f32 + func.func @fill_view(%arg0: f32, %arg1: tensor) { + linalg.fill ins( %arg0 : f32 ) outs( %arg1 : tensor ) -> tensor return } }""")