Skip to content

Commit a7e44bf

Browse files
authored
docs: Fix inconsistent link paths in backends overview table (#19244)
### Summary Fix backend table links in `docs/source/backends-overview.md` to use relative paths consistently. Several entries in the backends overview table used absolute paths starting with `/` (e.g., `/backends/cuda/cuda-overview.md`) while others used relative paths (e.g., `backends/xnnpack/xnnpack-overview.md`). Absolute paths can break when the documentation is served from a non-root URL. This change standardizes all links to use relative paths, consistent with the `toctree` directives in the same file. Also removes a trailing space in the Vulkan link text. cc @GregoryComer ### Test plan Verified all target files exist at their relative paths under `docs/source/`: - `backends/cuda/cuda-overview.md` - `backends/coreml/coreml-overview.md` - `backends/mps/mps-overview.md` - `backends/vulkan/vulkan-overview.md` - `backends/arm-ethos-u/arm-ethos-u-overview.md` - `backends/arm-cortex-m/arm-cortex-m-overview.md` - `backends/arm-vgf/arm-vgf-overview.md` - `backends/samsung/samsung-overview.md`
1 parent 7110a20 commit a7e44bf

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/source/backends-overview.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ Backends are the bridge between your exported model and the hardware it runs on.
2121
| Backend | Platform(s) | Hardware Type | Typical Use Case |
2222
|--------------------------------------------------------------|---------------|---------------|---------------------------------|
2323
| [XNNPACK](backends/xnnpack/xnnpack-overview.md) | All | CPU | General-purpose, fallback |
24-
| [CUDA](/backends/cuda/cuda-overview.md) | Linux/Windows | GPU | NVIDIA GPU acceleration |
25-
| [Core ML](/backends/coreml/coreml-overview.md) | iOS, macOS | NPU/GPU/CPU | Apple devices, high performance |
26-
| [Metal Performance Shaders](/backends/mps/mps-overview.md) | iOS, macOS | GPU | Apple GPU acceleration |
27-
| [Vulkan ](/backends/vulkan/vulkan-overview.md) | Android | GPU | Android GPU acceleration |
24+
| [CUDA](backends/cuda/cuda-overview.md) | Linux/Windows | GPU | NVIDIA GPU acceleration |
25+
| [Core ML](backends/coreml/coreml-overview.md) | iOS, macOS | NPU/GPU/CPU | Apple devices, high performance |
26+
| [Metal Performance Shaders](backends/mps/mps-overview.md) | iOS, macOS | GPU | Apple GPU acceleration |
27+
| [Vulkan](backends/vulkan/vulkan-overview.md) | Android | GPU | Android GPU acceleration |
2828
| [Qualcomm](backends-qualcomm) | Android | NPU | Qualcomm SoCs |
2929
| [MediaTek](backends-mediatek) | Android | NPU | MediaTek SoCs |
30-
| [Arm Ethos-U](/backends/arm-ethos-u/arm-ethos-u-overview.md) | Embedded | NPU | Arm MCUs |
31-
| [Arm Cortex-M](/backends/arm-cortex-m/arm-cortex-m-overview.md) | Embedded | CPU | Arm Cortex-M MCUs |
32-
| [Arm VGF](/backends/arm-vgf/arm-vgf-overview.md) | Android | GPU | Arm platforms |
30+
| [Arm Ethos-U](backends/arm-ethos-u/arm-ethos-u-overview.md) | Embedded | NPU | Arm MCUs |
31+
| [Arm Cortex-M](backends/arm-cortex-m/arm-cortex-m-overview.md) | Embedded | CPU | Arm Cortex-M MCUs |
32+
| [Arm VGF](backends/arm-vgf/arm-vgf-overview.md) | Android | GPU | Arm platforms |
3333
| [OpenVINO](build-run-openvino) | Embedded | CPU/GPU/NPU | Intel SoCs |
3434
| [NXP](backends/nxp/nxp-overview.md) | Embedded | NPU | NXP SoCs |
3535
| [Cadence](backends-cadence) | Embedded | DSP | DSP-optimized workloads |
36-
| [Samsung Exynos](/backends/samsung/samsung-overview.md) | Android | NPU | Samsung SoCs |
36+
| [Samsung Exynos](backends/samsung/samsung-overview.md) | Android | NPU | Samsung SoCs |
3737

3838
**Tip:** For best performance, export a `.pte` file for each backend you plan to support.
3939

0 commit comments

Comments
 (0)