[Mlir-commits] [mlir] 8399f37 - [mlir][doc] fix document link in Builtin Dialect document

Aart Bik llvmlistbot at llvm.org
Thu Aug 31 14:12:26 PDT 2023


Author: Avimitin
Date: 2023-08-31T14:12:17-07:00
New Revision: 8399f3735a8f443fc0a3b828345eaccd8db969b8

URL: https://github.com/llvm/llvm-project/commit/8399f3735a8f443fc0a3b828345eaccd8db969b8
DIFF: https://github.com/llvm/llvm-project/commit/8399f3735a8f443fc0a3b828345eaccd8db969b8.diff

LOG: [mlir][doc] fix document link in Builtin Dialect document

The inline link to RankedTensorType in UnrankedTensorType section
and the inline link to MemRefType in UnrankedMemrefType section
are all invalid. This patch update these link.

Reviewed By: aartbik

Differential Revision: https://reviews.llvm.org/D152682

Added: 
    

Modified: 
    mlir/include/mlir/IR/BuiltinTypes.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/IR/BuiltinTypes.td b/mlir/include/mlir/IR/BuiltinTypes.td
index 75e85f9887f2f1..5ec986ac26de06 100644
--- a/mlir/include/mlir/IR/BuiltinTypes.td
+++ b/mlir/include/mlir/IR/BuiltinTypes.td
@@ -913,7 +913,7 @@ def Builtin_UnrankedMemRef : Builtin_Type<"UnrankedMemRef", [
     arguments of any rank without versioning the functions based on the rank.
     Other uses of this type are disallowed or will have undefined behavior.
 
-    See [MemRefType](#builtin_memref-memreftype) for more information on
+    See [MemRefType](#memreftype) for more information on
     memref types.
 
     Examples:
@@ -986,7 +986,7 @@ def Builtin_UnrankedTensor : Builtin_Type<"UnrankedTensor", [
     ```
 
     An unranked tensor is a type of tensor in which the set of dimensions have
-    unknown rank. See [RankedTensorType](#builtin_rankedtensor-rankedtensortype)
+    unknown rank. See [RankedTensorType](#rankedtensortype)
     for more information on tensor types.
 
     Examples:


        


More information about the Mlir-commits mailing list