[Mlir-commits] [mlir] [mlir][tosa] Align Variable ops to match with TOSA v1.0 spec (PR #130680)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Mar 11 13:30:34 PDT 2025
================
@@ -140,11 +141,11 @@ def Tosa_VariableReadOp : Tosa_Op<"variable.read", []> {
let summary = "read_buffer operator";
let description = [{
- Reads the value from a pseudo-buffer resource holding a mutable tensor.
+ Reads the value from a pseudo-buffer resource holding a persistent mutable tensor.
}];
let arguments = (ins
- SymbolNameAttr:$name
+ I32Attr:$uid
);
let results = (outs
----------------
Jerry-Ge wrote:
Updated to align with spec.
https://github.com/llvm/llvm-project/pull/130680
More information about the Mlir-commits
mailing list