[PATCH] D72664: [mlir] [VectorOps] fixed typo in verifier of slice op

Aart Bik via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 13 18:59:59 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG3818101f7f8a: [mlir] [VectorOps] fixed typo in verifier of slice op (authored by aartbik).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D72664

Files:
  mlir/lib/Dialect/VectorOps/VectorOps.cpp


Index: mlir/lib/Dialect/VectorOps/VectorOps.cpp
===================================================================
--- mlir/lib/Dialect/VectorOps/VectorOps.cpp
+++ mlir/lib/Dialect/VectorOps/VectorOps.cpp
@@ -537,7 +537,7 @@
     sliceStrides[i] = sliceStrides[i + 1] * dimSliceCounts[i + 1];
 
   // Generate each slice shape based on 'sizes', 'strides' and 'vectorType',
-  // and varify that the same matches the corresponding tuple element 'i'.
+  // and verify that the same matches the corresponding tuple element 'i'.
   for (int64_t i = 0, e = tupleType.size(); i < e; ++i) {
     // De-linearize w.r.t. 'sliceStrides'.
     SmallVector<int64_t, 4> vectorOffsets(rank);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72664.237831.patch
Type: text/x-patch
Size: 679 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200114/ee3ba375/attachment-0001.bin>


More information about the llvm-commits mailing list