[Mlir-commits] [mlir] [mlir][docs] Update documentation for `vector.multi_reduction`. NFC (PR #99668)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Jul 19 10:09:43 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir-vector
@llvm/pr-subscribers-mlir
Author: Angel Zhang (angelz913)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/99668.diff
1 Files Affected:
- (modified) mlir/include/mlir/Dialect/Vector/IR/VectorOps.td (+2-2)
``````````diff
diff --git a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
index 2019eb5a9fd7f..39ad03c801140 100644
--- a/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
+++ b/mlir/include/mlir/Dialect/Vector/IR/VectorOps.td
@@ -300,9 +300,9 @@ def Vector_MultiDimReductionOp :
```mlir
%1 = vector.multi_reduction <add>, %0, %acc0 [1, 3] :
- vector<4x8x16x32xf32> into vector<4x16xf32>
+ vector<4x8x16x32xf32> to vector<4x16xf32>
%2 = vector.multi_reduction <add>, %1, %acc1 [0, 1] :
- vector<4x16xf32> into f32
+ vector<4x16xf32> to f32
```
}];
let builders = [
``````````
</details>
https://github.com/llvm/llvm-project/pull/99668
More information about the Mlir-commits
mailing list