[PATCH] D72664: [VectorOps] fixed typo in verifier of slice op
Aart Bik via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 13 16:03:49 PST 2020
aartbik created this revision.
Herald added subscribers: llvm-commits, liufengdb, lucyrfox, mgester, arpith-jacob, nicolasvasilache, antiagainst, shauheen, burmako, jpienaar, rriddle, mehdi_amini.
Herald added a reviewer: nicolasvasilache.
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
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.237806.patch
Type: text/x-patch
Size: 679 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200114/1507b616/attachment.bin>
More information about the llvm-commits
mailing list