From 4a350fe06edae3fbc50037b170edc6560cbd95fa Mon Sep 17 00:00:00 2001 From: neuropilot-captain Date: Fri, 3 Oct 2025 21:15:50 +0800 Subject: [PATCH] Update MTK tool versions in documents (#14772) ### Summary NeuroPilot Express SDK is released for ExecuTorch 1.0. Update the document for the latest tool version Resolves discussion 14253 (cherry picked from commit 3557edf1dfab4fcc9732bfae30f61001a4f96d7f) --- backends/mediatek/README.md | 4 ++-- docs/source/backends-mediatek.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backends/mediatek/README.md b/backends/mediatek/README.md index e8a535b3fde..6ff751f8408 100644 --- a/backends/mediatek/README.md +++ b/backends/mediatek/README.md @@ -28,7 +28,7 @@ To get started with MediaTek's ExecuTorch libraries, download the [NeuroPilot Ex - **`mtk_converter-8.13.0+public-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl`**: This library preprocesses the model into a MediaTek representation. -- **`mtk_neuron-8.2.19-py3-none-linux_x86_64.whl`**: This library converts the model to binaries. +- **`mtk_neuron-8.2.23-py3-none-linux_x86_64`**: This library converts the model to binaries. Additionally, make sure to copy `NeuronAdapter.h` to the following directory: `backends/mediatek/runtime/include/api/`. @@ -45,7 +45,7 @@ Follow the steps below to setup your build environment: ``` - Install the two .whl downloaded from NeuroPilot Portal ```bash - pip3 install mtk_neuron-8.2.19-py3-none-linux_x86_64.whl + pip3 install mtk_neuron-8.2.23-py3-none-linux_x86_64.whl pip3 install mtk_converter-8.13.0+public-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl ``` diff --git a/docs/source/backends-mediatek.md b/docs/source/backends-mediatek.md index a562cea13bd..34cd56f971b 100644 --- a/docs/source/backends-mediatek.md +++ b/docs/source/backends-mediatek.md @@ -23,7 +23,7 @@ The MediaTek backend enables acceleration of PyTorch models on edge devices with ``` - NeuroPilot SDK Python wheels (download from [NeuroPilot Express SDK](https://neuropilot.mediatek.com/resources/public/npexpress/en/docs/npexpress)): ```bash - pip3 install mtk_neuron-8.2.19-py3-none-linux_x86_64.whl + pip3 install mtk_neuron-8.2.23-py3-none-linux_x86_64.whl pip3 install mtk_converter-8.13.0+public-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl ```