[PATCH] D76557: [MLIR][NFC] fix memref type doc comment on dynamic shape

Uday Bondhugula via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 21 17:40:22 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rGd477df59cf4c: [MLIR][NFC] fix memref type doc comment on dynamic shape (authored by bondhugula).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D76557

Files:
  mlir/include/mlir/IR/StandardTypes.h


Index: mlir/include/mlir/IR/StandardTypes.h
===================================================================
--- mlir/include/mlir/IR/StandardTypes.h
+++ mlir/include/mlir/IR/StandardTypes.h
@@ -416,8 +416,8 @@
 
 /// MemRef types represent a region of memory that have a shape with a fixed
 /// number of dimensions. Each shape element can be a non-negative integer or
-/// unknown (represented by any negative integer). MemRef types also have an
-/// affine map composition, represented as an array AffineMap pointers.
+/// unknown (represented by -1). MemRef types also have an affine map
+/// composition, represented as an array AffineMap pointers.
 class MemRefType : public Type::TypeBase<MemRefType, BaseMemRefType,
                                          detail::MemRefTypeStorage> {
 public:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76557.251869.patch
Type: text/x-patch
Size: 807 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200322/01c7b2d3/attachment.bin>


More information about the llvm-commits mailing list