[Mlir-commits] [mlir] [mlir][spirv] Clarify SPIR-V TOSA op examples (PR #192952)
Igor Wodiany
llvmlistbot at llvm.org
Mon Apr 20 06:24:26 PDT 2026
================
@@ -1939,7 +1956,7 @@ def SPIRV_TosaReduceAllOp : SPIRV_TosaReductionOp<"ReduceAll", 48, [Pure]> {
#### Example:
```mlir
- %1 = spirv.Tosa.ReduceAll axis = 2, %arg0 : !spirv.arm.tensor<18x22x23x12xi1> -> !spirv.arm.tensor<18x22x1x12xi1>
+ %1 = spirv.Tosa.ReduceAll axis = 2, %input : !spirv.arm.tensor<18x22x23x12xi1> -> !spirv.arm.tensor<18x22x1x12xi1>
----------------
IgWod wrote:
Until now single `%input` is always called `%input1` but starting here it's just `%input` for few ops.
https://github.com/llvm/llvm-project/pull/192952
More information about the Mlir-commits
mailing list