summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Galvez <dt.galvez@gmail.com>2020-01-14 07:13:42 +0000
committerMehdi Amini <aminim@google.com>2020-01-14 07:15:02 +0000
commita7cac2bd4b6812ea6b59b5fa0298eadf3815a3b0 (patch)
treeaeff6325fb61ecaeb145080efa93f1ed8d3feb9e
parentb1dcd84c7ea3c97ddd73f629441be24791f23624 (diff)
downloadbcm5719-llvm-a7cac2bd4b6812ea6b59b5fa0298eadf3815a3b0.tar.gz
bcm5719-llvm-a7cac2bd4b6812ea6b59b5fa0298eadf3815a3b0.zip
[MLIR] Fix broken link locations after move to monorepo
I used the codemod python tool to do this with the following commands: codemod 'tensorflow/mlir/blob/master/include' 'llvm/llvm-project/blob/master/mlir/include' codemod 'tensorflow/mlir/blob/master' 'llvm/llvm-project/blob/master/mlir' codemod 'tensorflow/mlir' 'llvm-project/llvm' Differential Revision: https://reviews.llvm.org/D72244
-rw-r--r--mlir/docs/Dialects/Vector.md8
-rw-r--r--mlir/docs/Tutorials/Toy/Ch-7.md2
-rw-r--r--mlir/examples/toy/Ch2/include/toy/Dialect.h2
-rw-r--r--mlir/examples/toy/Ch3/include/toy/Dialect.h2
-rw-r--r--mlir/examples/toy/Ch4/include/toy/Dialect.h2
-rw-r--r--mlir/examples/toy/Ch5/include/toy/Dialect.h2
-rw-r--r--mlir/examples/toy/Ch6/include/toy/Dialect.h2
-rw-r--r--mlir/examples/toy/Ch7/include/toy/Dialect.h2
-rw-r--r--mlir/examples/toy/README.md4
9 files changed, 13 insertions, 13 deletions
diff --git a/mlir/docs/Dialects/Vector.md b/mlir/docs/Dialects/Vector.md
index 79f7d6d7a1e..404f9ccca3e 100644
--- a/mlir/docs/Dialects/Vector.md
+++ b/mlir/docs/Dialects/Vector.md
@@ -114,10 +114,10 @@ vector.transfer_write %f1, %A[%i0, %i1, %i2, %i3]
The list of VectorOps is currently undergoing evolutions and is best kept
track of by following the evolution of the
-[VectorOps.td](https://github.com/tensorflow/mlir/blob/master/include/mlir/Dialect/VectorOps/VectorOps.td)
+[VectorOps.td](https://github.com/llvm/llvm-project/blob/master/mlir/include/mlir/Dialect/VectorOps/VectorOps.td)
ODS file (markdown documentation is automatically generated locally when
building and populates the [Vector
-doc](https://github.com/tensorflow/mlir/blob/master/g3doc/Dialects/Vector.md)). Recent
+doc](https://github.com/llvm/llvm-project/blob/master/mlir/docs/Dialects/Vector.md)). Recent
extensions are driven by concrete use cases of interest. A notable such use
case is the `vector.contract` op which applies principles of the StructuredOps
abstraction to `vector` types.
@@ -147,7 +147,7 @@ or the [VectorOuterProductOp
lowering](https://github.com/tensorflow/mlir/commit/957b1ca9680b4aacabb3a480fbc4ebd2506334b8)).
Simple [conversion
-tests](https://github.com/tensorflow/mlir/blob/master/test/Conversion/VectorToLLVM/vector-to-llvm.mlir)
+tests](https://github.com/llvm/llvm-project/blob/master/mlir/test/Conversion/VectorToLLVM/vector-to-llvm.mlir)
are available for the `LLVM` target starting from the Virtual Vector Level.
# Rationale
@@ -223,7 +223,7 @@ granularity.
Irrespective of the existence of an auto-vectorizer, one can build a notional
vector language based on the VectorOps dialect and build end-to-end models
with expressing `vector`s in the IR directly and simple
-pattern-rewrites. [EDSC](https://github.com/tensorflow/mlir/blob/master/g3doc/EDSC.md)s
+pattern-rewrites. [EDSC](https://github.com/llvm/llvm-project/blob/master/mlir/docs/EDSC.md)s
provide a simple way of driving such a notional language directly in C++.
# Bikeshed Naming Discussion
diff --git a/mlir/docs/Tutorials/Toy/Ch-7.md b/mlir/docs/Tutorials/Toy/Ch-7.md
index 6298e8253e9..b1872d5accf 100644
--- a/mlir/docs/Tutorials/Toy/Ch-7.md
+++ b/mlir/docs/Tutorials/Toy/Ch-7.md
@@ -67,7 +67,7 @@ remain extremely efficient
([rationale](../../Rationale.md#reserving-dialect-type-kinds)). For `toy`, this
means we need to explicitly reserve a static range of type `kind` values in the
symbol registry file
-[DialectSymbolRegistry](https://github.com/tensorflow/mlir/blob/master/include/mlir/IR/DialectSymbolRegistry.def).
+[DialectSymbolRegistry](https://github.com/llvm/llvm-project/blob/master/mlir/include/mlir/IR/DialectSymbolRegistry.def).
```c++
DEFINE_SYM_KIND_RANGE(LINALG) // Linear Algebra Dialect
diff --git a/mlir/examples/toy/Ch2/include/toy/Dialect.h b/mlir/examples/toy/Ch2/include/toy/Dialect.h
index 385d6ddb95a..7a8bbb1a03a 100644
--- a/mlir/examples/toy/Ch2/include/toy/Dialect.h
+++ b/mlir/examples/toy/Ch2/include/toy/Dialect.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file implements the IR Dialect for the Toy language.
-// See g3doc/Tutorials/Toy/Ch-2.md for more information.
+// See docs/Tutorials/Toy/Ch-2.md for more information.
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/examples/toy/Ch3/include/toy/Dialect.h b/mlir/examples/toy/Ch3/include/toy/Dialect.h
index 385d6ddb95a..7a8bbb1a03a 100644
--- a/mlir/examples/toy/Ch3/include/toy/Dialect.h
+++ b/mlir/examples/toy/Ch3/include/toy/Dialect.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file implements the IR Dialect for the Toy language.
-// See g3doc/Tutorials/Toy/Ch-2.md for more information.
+// See docs/Tutorials/Toy/Ch-2.md for more information.
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/examples/toy/Ch4/include/toy/Dialect.h b/mlir/examples/toy/Ch4/include/toy/Dialect.h
index 5e8b91dcf48..03752231f1d 100644
--- a/mlir/examples/toy/Ch4/include/toy/Dialect.h
+++ b/mlir/examples/toy/Ch4/include/toy/Dialect.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file implements the IR Dialect for the Toy language.
-// See g3doc/Tutorials/Toy/Ch-2.md for more information.
+// See docs/Tutorials/Toy/Ch-2.md for more information.
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/examples/toy/Ch5/include/toy/Dialect.h b/mlir/examples/toy/Ch5/include/toy/Dialect.h
index 5e8b91dcf48..03752231f1d 100644
--- a/mlir/examples/toy/Ch5/include/toy/Dialect.h
+++ b/mlir/examples/toy/Ch5/include/toy/Dialect.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file implements the IR Dialect for the Toy language.
-// See g3doc/Tutorials/Toy/Ch-2.md for more information.
+// See docs/Tutorials/Toy/Ch-2.md for more information.
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/examples/toy/Ch6/include/toy/Dialect.h b/mlir/examples/toy/Ch6/include/toy/Dialect.h
index 5e8b91dcf48..03752231f1d 100644
--- a/mlir/examples/toy/Ch6/include/toy/Dialect.h
+++ b/mlir/examples/toy/Ch6/include/toy/Dialect.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file implements the IR Dialect for the Toy language.
-// See g3doc/Tutorials/Toy/Ch-2.md for more information.
+// See docs/Tutorials/Toy/Ch-2.md for more information.
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/examples/toy/Ch7/include/toy/Dialect.h b/mlir/examples/toy/Ch7/include/toy/Dialect.h
index 77481b1884f..a48712c3c53 100644
--- a/mlir/examples/toy/Ch7/include/toy/Dialect.h
+++ b/mlir/examples/toy/Ch7/include/toy/Dialect.h
@@ -7,7 +7,7 @@
//===----------------------------------------------------------------------===//
//
// This file implements the IR Dialect for the Toy language.
-// See g3doc/Tutorials/Toy/Ch-2.md for more information.
+// See docs/Tutorials/Toy/Ch-2.md for more information.
//
//===----------------------------------------------------------------------===//
diff --git a/mlir/examples/toy/README.md b/mlir/examples/toy/README.md
index 53912c83abf..3946a5d406d 100644
--- a/mlir/examples/toy/README.md
+++ b/mlir/examples/toy/README.md
@@ -3,5 +3,5 @@
This contains sample code to support the tutorial on using MLIR for
building a compiler for a simple Toy language.
-See [g3doc/Tutorials/Toy](../../g3doc/Tutorials/Toy) at the root of
-the repository for more informations.
+See [docs/Tutorials/Toy](../../docs/Tutorials/Toy) at the root of
+the project for more informations.
OpenPOWER on IntegriCloud