Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backends/nxp/requirements-eiq.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
--index-url https://eiq.nxp.com/repository
eiq-neutron-sdk==3.1.0
eiq-neutron-sdk==3.1.1
eiq_nsys
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def forward(self, x):
pytest.param((1, 8, 3, 3), 12, id="4x upscale, 8 channels, scalar size"),
],
)
@pytest.mark.xfail(strict=True, reason="EIEX-881")
def test_convert_upsample_nearest2d__size(mocker, input_shape, size):
model = UpsampleNearestModule(size=size)

Expand Down Expand Up @@ -92,6 +93,7 @@ def test_convert_upsample_nearest2d__size(mocker, input_shape, size):
pytest.param((1, 8, 2, 3), (4, 4), id="4x upscale, 8 channels, tuple scale"),
],
)
@pytest.mark.xfail(strict=True, reason="EIEX-881")
def test_convert_upsample_nearest2d__scale_factor(mocker, input_shape, scale_factor):
model = UpsampleNearestModule(scale=scale_factor)

Expand Down
4 changes: 2 additions & 2 deletions docs/source/backends/nxp/nxp-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Among currently supported machine learning models are:

- [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 SDK version 3.1.0, what you can download from eIQ PyPI:
- eIQ Neutron SDK version 3.1.1, what you can download from eIQ PyPI:

```commandline
$ pip install --index-url https://eiq.nxp.com/repository eiq-neutron-sdk==3.1.0
$ pip install --index-url https://eiq.nxp.com/repository eiq-neutron-sdk==3.1.1
```

Instead of manually installing requirements, except MCUXpresso IDE and SDK, you can use the setup script:
Expand Down
2 changes: 1 addition & 1 deletion examples/nxp/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -u
EIQ_PYPI_URL="${EIQ_PYPI_URL:-https://eiq.nxp.com/repository}"

# Install eIQ Neutron dependencies - SDK and simulator
pip install --index-url ${EIQ_PYPI_URL} eiq-neutron-sdk==3.1.0 eiq_nsys
pip install --index-url ${EIQ_PYPI_URL} eiq-neutron-sdk==3.1.1 eiq_nsys

# Get the directory of the current script
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
Expand Down
Loading