[Mlir-commits] [mlir] [mlir][vector][nfc] rename vector.strided_slice in docs (PR #186644)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sun Mar 15 00:39:28 PDT 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir

Author: Vito Secona (secona)

<details>
<summary>Changes</summary>

I was reading https://mlir.llvm.org/docs/Dialects/Vector/ and noticed outdated information where it used `vector.strided_slice`. The Op was renamed to `vector.extract_strided_slice` in https://reviews.llvm.org/D79734. This PR updates the docs accordingly.

---
Full diff: https://github.com/llvm/llvm-project/pull/186644.diff


1 Files Affected:

- (modified) mlir/docs/Dialects/Vector.md (+1-1) 


``````````diff
diff --git a/mlir/docs/Dialects/Vector.md b/mlir/docs/Dialects/Vector.md
index 839dc75ff0214..377c1efb32de9 100644
--- a/mlir/docs/Dialects/Vector.md
+++ b/mlir/docs/Dialects/Vector.md
@@ -133,7 +133,7 @@ Some existing Arith and Vector Dialect on `n-D` `vector` types comprise:
 %g = vector.outerproduct %0, %1, %2: vector<4xf32>, vector<8xf32>  // fma when adding %2
 
 // Returns a slice of type vector<2x2x16xf32>
-%h = vector.strided_slice %0
+%h = vector.extract_strided_slice %0
     {offsets = [2, 2], sizes = [2, 2], strides = [1, 1]}:
   vector<4x8x16xf32>
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/186644


More information about the Mlir-commits mailing list