Skip to content

Commit d37785d

Browse files
authored
FIx links in docs (#10184)
Some links didn't work
1 parent 901529b commit d37785d

File tree

20 files changed

+30
-29
lines changed

20 files changed

+30
-29
lines changed

backends/cadence/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Tutorial
88

9-
Please follow the [tutorial](https://pytorch.org/executorch/main/build-run-xtensa.html) for more information on how to run models on Cadence/Xtensa DSPs.
9+
Please follow the [tutorial](https://pytorch.org/executorch/main/backends-cadence) for more information on how to run models on Cadence/Xtensa DSPs.
1010

1111
## Directory Structure
1212

backends/qualcomm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ we reserve the right to modify interfaces and implementations.
66

77
This backend is implemented on the top of
88
[Qualcomm AI Engine Direct SDK](https://developer.qualcomm.com/software/qualcomm-ai-engine-direct-sdk).
9-
Please follow [tutorial](../../docs/source/build-run-qualcomm-ai-engine-direct-backend.md) to setup environment, build, and run executorch models by this backend (Qualcomm AI Engine Direct is also referred to as QNN in the source and documentation).
9+
Please follow [tutorial](../../docs/source/backends-qualcomm.md) to setup environment, build, and run executorch models by this backend (Qualcomm AI Engine Direct is also referred to as QNN in the source and documentation).
1010

11-
A website version of the tutorial is [here](https://pytorch.org/executorch/main/build-run-qualcomm-ai-engine-direct-backend).
11+
A website version of the tutorial is [here](https://pytorch.org/executorch/main/backends-qualcomm).
1212

1313
## Delegate Options
1414

backends/qualcomm/setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Setting up QNN Backend
22

3-
Please refer to [Building and Running ExecuTorch with Qualcomm AI Engine Direct Backend](../../docs/source/build-run-qualcomm-ai-engine-direct-backend.md).
3+
Please refer to [Building and Running ExecuTorch with Qualcomm AI Engine Direct Backend](../../docs/source/backends-qualcomm.md).
44

55
That is a tutorial for building and running Qualcomm AI Engine Direct backend,
66
including compiling a model on a x64 host and running the inference

backends/xnnpack/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,5 @@ create an issue on [github](https://www.github.com/pytorch/executorch/issues).
132132

133133
## See Also
134134
For more information about the XNNPACK Backend, please check out the following resources:
135-
- [XNNPACK Backend](https://pytorch.org/executorch/main/backends-xnnpack.html)
136-
- [XNNPACK Backend Internals](https://pytorch.org/executorch/main/backend-delegates-xnnpack-reference.html)
135+
- [XNNPACK Backend](https://pytorch.org/executorch/main/backends-xnnpack)
136+
- [XNNPACK Backend Internals](https://pytorch.org/executorch/main/backend-delegates-xnnpack-reference)

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Use the
130130
to contribute to the documentation.
131131

132132
In addition to that, see
133-
[Markdown in Sphinx Tips and Tricks](https://pytorch.org/executorch/markdown-sphinx-tips-tricks.html)
133+
[Markdown in Sphinx Tips and Tricks](source/markdown-sphinx-tips-tricks.md)
134134
for tips on how to author high-quality markdown pages with Myst Parser.
135135

136136
## Adding Tutorials

docs/source/llm/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ The delegated model should be noticeably faster compared to the non-delegated mo
588588

589589
For more information regarding backend delegation, see the ExecuTorch guides
590590
for the [XNNPACK Backend](../backends-xnnpack.md), [Core ML
591-
Backend](../backends-coreml.md) and [Qualcomm AI Engine Direct Backend](build-run-llama3-qualcomm-ai-engine-direct-backend.md).
591+
Backend](../backends-coreml.md) and [Qualcomm AI Engine Direct Backend](../backends-qualcomm.md).
592592

593593
## Quantization
594594

docs/source/tutorials_source/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Tutorials
33

44
1. tutorials/*
55
Getting Started Tutorials
6-
https://pytorch.org/executorch/tutorials/template_tutorial.html
6+
https://github.com/pytorch/executorch/blob/main/docs/source/tutorials_source/template_tutorial.py

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ You will find demos of [ExecuTorch QNN Backend](./qualcomm) in the [`qualcomm/`]
7171

7272
### Cadence HiFi4 DSP
7373

74-
The [`Cadence/`](./cadence) directory hosts a demo that showcases the process of exporting and executing a model on Xtensa Hifi4 DSP. You can utilize [this tutorial](../docs/source/build-run-xtensa.md) to guide you in configuring the demo and running it.
74+
The [`Cadence/`](./cadence) directory hosts a demo that showcases the process of exporting and executing a model on Xtensa Hifi4 DSP. You can utilize [this tutorial](../docs/source/backends-cadence.md) to guide you in configuring the demo and running it.
7575

7676
## Dependencies
7777

examples/arm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ jupyter notebook ethos_u_minimal_example.ipynb
4444

4545
### Online Tutorial
4646

47-
We also have a [tutorial](https://pytorch.org/executorch/main/executorch-arm-delegate-tutorial) explaining the steps performed in these
47+
We also have a [tutorial](https://pytorch.org/executorch/main/backends-arm-ethos-u) explaining the steps performed in these
4848
scripts, expected results, possible problems and more. It is a step-by-step guide
4949
you can follow to better understand this delegate.

examples/models/efficient_sam/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Follow the [tutorial](https://pytorch.org/executorch/main/getting-started-setup#
1212

1313
### Exporting to Core ML
1414

15-
Make sure to install the [required dependencies](https://pytorch.org/executorch/main/build-run-coreml.html#setting-up-your-developer-environment) for Core ML export.
15+
Make sure to install the [required dependencies](https://pytorch.org/executorch/main/backends-coreml#development-requirements) for Core ML export.
1616

1717
To export the model to Core ML, run the following command:
1818

@@ -32,7 +32,7 @@ python -m examples.xnnpack.aot_compiler -m efficient_sam
3232

3333
# Performance
3434

35-
Tests were conducted on an Apple M1 Pro chip using the instructions for building and running Executorch with [Core ML](https://pytorch.org/executorch/main/build-run-coreml.html#runtime) and [XNNPACK](https://pytorch.org/executorch/main/tutorial-xnnpack-delegate-lowering.html#running-the-xnnpack-model-with-cmake) backends.
35+
Tests were conducted on an Apple M1 Pro chip using the instructions for building and running Executorch with [Core ML](https://pytorch.org/executorch/main/https://pytorch.org/executorch/main/backends-coreml#runtime-integration) and [XNNPACK](https://pytorch.org/executorch/main/tutorial-xnnpack-delegate-lowering#running-the-xnnpack-model-with-cmake) backends.
3636

3737
| Backend Configuration | Average Inference Time (seconds) |
3838
| ---------------------- | -------------------------------- |

0 commit comments

Comments
 (0)