Fix a few broken links (#87098)

References to headings need to be preceded with a slash. Also,
references to headings on the same page do not need to contain the name
of the document (omitting the document name means if the name changes
the links will still be valid).

I double checked the links by building [the
website](https://github.com/llvm/mlir-www):

```shell
./mlir-www-helper.sh --install-docs ../llvm-project website
cd website && hugo serve
```
This commit is contained in:
mlevesquedion
2024-04-05 00:52:53 -07:00
committed by GitHub
parent cfb86ae749
commit 73fa6685c4
9 changed files with 21 additions and 21 deletions

View File

@@ -383,7 +383,7 @@ void MulOp::inferShapes() { getResult().setType(getLhs().getType()); }
At this point, each of the necessary Toy operations provide a mechanism by which
to infer their output shapes. The ShapeInferencePass will operate on functions:
it will run on each function in isolation. MLIR also supports general
[OperationPasses](../../PassManagement.md#operation-pass) that run on any
[OperationPasses](../../PassManagement.md/#operation-pass) that run on any
isolated operation, but here our module only contains functions, so there is no
need to generalize to all operations.

View File

@@ -27,7 +27,7 @@ directly within the transform dialect.
## Simple match
Let us reconsider the “fully connected layer” example from [Chapter
1](Ch1.md#chaining-transformations-with-handles), reproduced below for
1](Ch1.md/#chaining-transformations-with-handles), reproduced below for
convenience.