[Mlir-commits] [mlir] [mlir][python] simplify extensions (PR #69642)
Maksim Levental
llvmlistbot at llvm.org
Thu Oct 19 14:33:58 PDT 2023
================
@@ -37,7 +37,7 @@ def affine_store_test(arg0):
a1 = arith.ConstantOp(f32, 2.1)
# CHECK: affine.store %[[A1]], %alloc[symbol(%[[ARG0]]) * 3, %[[ARG0]] + symbol(%[[ARG0]]) + 1] : memref<12x12xf32>
- affine.AffineStoreOp(a1, mem, map, map_operands=[arg0, arg0])
+ affine.AffineStoreOp(a1, mem, indices=[arg0, arg0], map=map)
----------------
makslevental wrote:
cc @kaitingwang
https://github.com/llvm/llvm-project/pull/69642
More information about the Mlir-commits
mailing list