Skip to content

Commit 376d3f4

Browse files
authored
1 parent 790bfd4 commit 376d3f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/using-executorch-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The `executor_runner` target is built by default when building with CMake. It ca
6464
./cmake-out/executor_runner --model_path path/to/model.pte
6565
```
6666
67-
The runner source code can be found in the ExecuTorch repo under [examples/portable/executor_runner.cpp](https://github.com/pytorch/executorch/blob/main/examples/portable/executor_runner/executor_runner.cpp). Some backends, such as CoreML, have dedicated runners to showcase backend and platform-specific functionality. See [examples/apple/coreml](https://github.com/pytorch/executorch/tree/main/examples/apple/coreml) and the [examples](https://github.com/pytorch/executorch/tree/main/examples) directory for more information.
67+
The runner source code can be found in the ExecuTorch repo under [examples/portable/executor_runner.cpp](https://github.com/pytorch/executorch/blob/release/0.6/examples/portable/executor_runner/executor_runner.cpp). Some backends, such as CoreML, have dedicated runners to showcase backend and platform-specific functionality. See [examples/apple/coreml](https://github.com/pytorch/executorch/tree/release/0.6/examples/apple/coreml) and the [examples](https://github.com/pytorch/executorch/tree/release/0.6/examples) directory for more information.
6868
6969
## Next Steps
7070

docs/source/using-executorch-runtime-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For non-POSIX-compliant systems, a minimal no-op PAL implementation is provided.
2727
Overriding the default PAL implementation is commonly done to route logs to a user-specified destination or to provide PAL functionality on embedded systems. To override one or more PAL methods, take the following steps:
2828

2929
- Include
30-
[`executorch/runtime/platform/platform.h`](https://github.com/pytorch/executorch/blob/main/runtime/platform/platform.h)
30+
[`executorch/runtime/platform/platform.h`](https://github.com/pytorch/executorch/blob/release/0.6/runtime/platform/platform.h)
3131
in one of your application's `.c` or `.cpp` files.
3232
- Define an implementation of one or more of the `et_pal_*()` functions.
3333

@@ -36,7 +36,7 @@ definition can override them at link time. To ensure that your definitions take
3636
precedence, you may need to ensure that the strong definitions precede the weak
3737
definitions in the link order.
3838

39-
See [runtime/platform/platform.h](https://github.com/pytorch/executorch/blob/main/runtime/platform/platform.h) for the PAL function signatures and [runtime/platform/default/posix.cpp](https://github.com/pytorch/executorch/blob/main/runtime/platform/default/posix.cpp) for the reference POSIX implementation.
39+
See [runtime/platform/platform.h](https://github.com/pytorch/executorch/blob/release/0.6/runtime/platform/platform.h) for the PAL function signatures and [runtime/platform/default/posix.cpp](https://github.com/pytorch/executorch/blob/release/0.6/runtime/platform/default/posix.cpp) for the reference POSIX implementation.
4040

4141
## Kernel Libraries
4242

0 commit comments

Comments
 (0)