[Mlir-commits] [mlir] [MLIR][TOSA] Enable strict property assembly format (PR #217291)
Mehdi Amini
llvmlistbot at llvm.org
Fri Aug 21 03:50:31 PDT 2026
================
@@ -2423,7 +2486,8 @@ def Tosa_CastOp: Tosa_Op<"cast", [Pure, SameOperandsAndResultShape,
Tosa_Tensor:$output
);
- let assemblyFormat = "operands attr-dict `:` functional-type(operands, results)";
+ let assemblyFormat =
+ "operands prop-dict attr-dict `:` functional-type(operands, results)";
----------------
joker-eph wrote:
Good catch. I replaced the prop-dict with an oilist binding for the optional input_unsigned property, so tosa.cast now uses direct property syntax as well.
https://github.com/llvm/llvm-project/pull/217291
More information about the Mlir-commits
mailing list