[mlir][Affine][Vector] NFC: fix examples in comments

s/-affine-vectorize/-affine-super-vectorize/g

Reviewed By: aartbik

Differential Revision: https://reviews.llvm.org/D118892
This commit is contained in:
Cullen Rhodes 2022-02-08 10:03:32 +00:00
parent b896334834
commit 99d95025e1
1 changed files with 8 additions and 7 deletions

View File

@ -380,9 +380,9 @@ using namespace vector;
/// } /// }
/// ``` /// ```
/// ///
/// The -affine-vectorize pass with the following arguments: /// The -affine-super-vectorize pass with the following arguments:
/// ``` /// ```
/// -affine-vectorize="virtual-vector-size=256 test-fastest-varying=0" /// -affine-super-vectorize="virtual-vector-size=256 test-fastest-varying=0"
/// ``` /// ```
/// ///
/// produces this standard innermost-loop vectorized code: /// produces this standard innermost-loop vectorized code:
@ -434,9 +434,10 @@ using namespace vector;
/// } /// }
/// ``` /// ```
/// ///
/// The -affine-vectorize pass with the following arguments: /// The -affine-super-vectorize pass with the following arguments:
/// ``` /// ```
/// -affine-vectorize="virtual-vector-size=32,256 test-fastest-varying=1,0" /// -affine-super-vectorize="virtual-vector-size=32,256 \
/// test-fastest-varying=1,0"
/// ``` /// ```
/// ///
/// produces this more interesting mixed outer-innermost-loop vectorized code: /// produces this more interesting mixed outer-innermost-loop vectorized code:
@ -523,10 +524,10 @@ using namespace vector;
/// } /// }
/// ``` /// ```
/// ///
/// The -affine-vectorize pass with the following arguments: /// The -affine-super-vectorize pass with the following arguments:
/// ``` /// ```
/// -affine-vectorize="virtual-vector-size=128 test-fastest-varying=0 \ /// -affine-super-vectorize="virtual-vector-size=128 test-fastest-varying=0 \
/// vectorize-reductions=true" /// vectorize-reductions=true"
/// ``` /// ```
/// produces the following output: /// produces the following output:
/// ```mlir /// ```mlir