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

Cullen Rhodes via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 8 02:04:13 PST 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG99d95025e125: [mlir][Affine][Vector] NFC: fix examples in comments (authored by c-rhodes).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118892/new/

https://reviews.llvm.org/D118892

Files:
  mlir/lib/Dialect/Affine/Transforms/SuperVectorize.cpp


Index: mlir/lib/Dialect/Affine/Transforms/SuperVectorize.cpp
===================================================================
--- mlir/lib/Dialect/Affine/Transforms/SuperVectorize.cpp
+++ mlir/lib/Dialect/Affine/Transforms/SuperVectorize.cpp
@@ -380,9 +380,9 @@
 /// }
 /// ```
 ///
-/// 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:
@@ -434,9 +434,10 @@
 /// }
 /// ```
 ///
-/// 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:
@@ -523,10 +524,10 @@
 /// }
 /// ```
 ///
-/// 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 \
-///                    vectorize-reductions=true"
+/// -affine-super-vectorize="virtual-vector-size=128 test-fastest-varying=0 \
+///                          vectorize-reductions=true"
 /// ```
 /// produces the following output:
 /// ```mlir


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D118892.406735.patch
Type: text/x-patch
Size: 1616 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220208/3284153a/attachment.bin>


More information about the llvm-commits mailing list