diff options
author | J. Ryan Stinnett <jryans@gmail.com> | 2021-11-17 23:37:29 +0000 |
---|---|---|
committer | J. Ryan Stinnett <jryans@gmail.com> | 2021-11-17 23:38:19 +0000 |
commit | 1f7827e6aa15ff457089bca9351ed452b46474f8 (patch) | |
tree | 03155e4276cf2c7c77b49095be9b669fcb6558c7 | |
parent | d78fdf111dda26307e88d16f5f5d1411f3bd7e61 (diff) | |
download | llvm-1f7827e6aa15ff457089bca9351ed452b46474f8.tar.gz |
[MLIR][Docs] Fix link syntax in Rationale.md
-rw-r--r-- | mlir/docs/Rationale/Rationale.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/docs/Rationale/Rationale.md b/mlir/docs/Rationale/Rationale.md index 192ec7ef7e2e..32f5ea3abfcf 100644 --- a/mlir/docs/Rationale/Rationale.md +++ b/mlir/docs/Rationale/Rationale.md @@ -113,7 +113,7 @@ n-ranked tensor. This disallows the equivalent of pointer arithmetic or the ability to index into the same memref in other ways (something which C arrays allow for example). Furthermore, for the affine constructs, the compiler can follow use-def chains (e.g. through -[affine.apply operations](../Dialects/Affine.md/#affineapply-affineapplyop)) or +[affine.apply operations](../Dialects/Affine.md/#affineapply-affineapplyop) or through the map attributes of [affine operations](../Dialects/Affine.md/#operations)) to precisely analyze references at compile-time using polyhedral techniques. This is possible because |