[mlir][vector][nfc] rename vector.strided_slice in docs#186644
Open
[mlir][vector][nfc] rename vector.strided_slice in docs#186644
Conversation
Member
|
@llvm/pr-subscribers-mlir Author: Vito Secona (secona) ChangesI was reading https://mlir.llvm.org/docs/Dialects/Vector/ and noticed outdated information where it used Full diff: https://github.com/llvm/llvm-project/pull/186644.diff 1 Files Affected:
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>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I was reading https://mlir.llvm.org/docs/Dialects/Vector/ and noticed outdated information where it used
vector.strided_slice. The Op was renamed tovector.extract_strided_slicein https://reviews.llvm.org/D79734. This PR updates the docs accordingly.