Skip to content

Commit a83a7ca

Browse files
kirklandsignfacebook-github-bot
authored andcommitted
Fix build warnings from the concepts.md section
Differential Revision: D50145410
1 parent a32431e commit a83a7ca

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/source/concepts.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This page provides an overview of key concepts and terms used throughout the Exe
55

66
AOT generally refers to the program preparation that occurs before execution. On a high level, ExecuTorch workflow is split into an AOT compilation and a runtime. The AOT steps involve compilation into an Intermediate Representation (IR), along with optional transformations and optimizations.
77

8-
[**ATen**]((https://pytorch.org/cppdocs/#aten))
8+
[**ATen**](https://pytorch.org/cppdocs/#aten)
99

1010
Fundamentally, it is a tensor library on top of which almost all other Python and C++ interfaces in PyTorch are built. It provides a core Tensor class, on which many hundreds of operations are defined.
1111

@@ -148,8 +148,7 @@ An implementation of an operator. There can be multiple implementations of an op
148148

149149
The process of transforming a model to run on various backends. It is called 'lowering' as it is moving code closer to the hardware. In ExecuTorch, lowering is performed as part of backend delegation.
150150

151-
[**Memory planning**](./tutorials/export-to-executorch-tutorial#running-user-defined-passes-and-memory-planning)
152-
151+
[**Memory planning**](./tutorials_source/export-to-executorch-tutorial.py#running-user-defined-passes-and-memory-planning)
153152
The process of allocating and managing memory for a model. In ExecuTorch, a memory planning pass is run before the graph is saved to flatbuffer. This assigns a memory ID to each tensor and an offset in the buffer, marking where storage for the tensor starts.
154153

155154
[**Node**](./ir-exir.md)
@@ -228,7 +227,7 @@ The ExecuTorch runtime executes models on edge devices. It is responsible for pr
228227

229228
Software Development Kit. The tooling users need to profile, debug and visualize programs that are running with ExecuTorch.
230229

231-
[**Selective build**](./selective_build.md)
230+
[**Selective build**](./kernel-library-selective_build.md.md)
232231

233232
An API used to build a leaner runtime by linking only to kernels used by the program. This provides significant binary size savings.
234233

0 commit comments

Comments
 (0)