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

Vito Secona llvmlistbot at llvm.org
Sun Mar 15 00:43:56 PDT 2026


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

>From 7178b426fb76ea20e1024d2298d8b5a5526443f0 Mon Sep 17 00:00:00 2001
From: Vito Secona <secona00 at gmail.com>
Date: Sun, 15 Mar 2026 14:35:01 +0700
Subject: [PATCH] fix vector.strided_slice in docs

---
 mlir/docs/Dialects/Vector.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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>
 



More information about the Mlir-commits mailing list