# NXP eIQ Neutron Backend This manual page is dedicated to introduction NXP eIQ Neutron backend. NXP offers accelerated machine learning models inference on edge devices. To learn more about NXP's machine learning acceleration platform, please refer to [the official NXP website](https://www.nxp.com/applications/technologies/ai-and-machine-learning:MACHINE-LEARNING).
For up-to-date status about running ExecuTorch on Neutron backend please visit the manual page.
## Features ExecuTorch v1.0 supports running machine learning models on selected NXP chips (for now only i.MXRT700). Among currently supported machine learning models are: - Convolution-based neutral networks - Full support for MobileNetV2 and CifarNet ## Target Requirements - Hardware with NXP's [i.MXRT700](https://www.nxp.com/products/i.MX-RT700) chip or a evaluation board like MIMXRT700-EVK. ## Development Requirements - [MCUXpresso IDE](https://www.nxp.com/design/design-center/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-integrated-development-environment-ide:MCUXpresso-IDE) or [MCUXpresso Visual Studio Code extension](https://www.nxp.com/design/design-center/software/development-software/mcuxpresso-software-and-tools-/mcuxpresso-for-visual-studio-code:MCUXPRESSO-VSC) - [MCUXpresso SDK 25.12](https://mcuxpresso.nxp.com/mcuxsdk/25.12.00/html/index.html) - eIQ Neutron Converter for MCUXPresso SDK 25.12, what you can download from eIQ PyPI: ```commandline $ pip install --index-url https://eiq.nxp.com/repository neutron_converter_SDK_25_12 ``` Instead of manually installing requirements, except MCUXpresso IDE and SDK, you can use the setup script: ```commandline $ ./examples/nxp/setup.sh ``` ## Using NXP eIQ Backend To test the eIQ Neutron Backend, both AoT flow for model preparation and Runtime for execution, refer to the [Getting started with eIQ Neutron NPU ExecuTorch backend](tutorials/nxp-basic-tutorial.md) For a quick overview how to convert a custom PyTorch model, take a look at our [example python script](https://github.com/pytorch/executorch/tree/release/1.0/examples/nxp/aot_neutron_compile.py). ## Runtime Integration An example runtime application using the eIQ NSYS (eIQ Neutron Simulator) is available [examples/nxp/executor_runner](https://github.com/pytorch/executorch/blob/main/examples/nxp/executor_runner/), described in the tutorial [Getting started with eIQ Neutron NPU ExecuTorch backend](tutorials/nxp-basic-tutorial.md) To learn how to run the converted model on the NXP hardware, use one of our example projects on using ExecuTorch runtime from MCUXpresso IDE example projects list. For more finegrained tutorial, visit [this manual page](https://mcuxpresso.nxp.com/mcuxsdk/latest/html/middleware/eiq/executorch/docs/nxp/topics/example_applications.html). ## Reference **→{doc}`nxp-partitioner` — Partitioner options.** **→{doc}`nxp-quantization` — Supported quantization schemes.** **→{doc}`tutorials/nxp-tutorials` — Tutorials.** **→{doc}`nxp-dim-order` — Dim order support (channels last inputs).** ```{toctree} :maxdepth: 2 :hidden: :caption: NXP Backend nxp-partitioner nxp-quantization tutorials/nxp-tutorials nxp-dim-order ```