Skip to content

Commit 4c5e722

Browse files
NXP Backend: Update eiQ Neutron SDK to 3.1.1 (pytorch#19668)
### Test plan Existing unit tests
1 parent 92b7411 commit 4c5e722

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

backends/nxp/requirements-eiq.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
--index-url https://eiq.nxp.com/repository
2-
eiq-neutron-sdk==3.1.0
2+
eiq-neutron-sdk==3.1.1
33
eiq_nsys

backends/nxp/tests/ir/converter/node_converter/test_convert_upsample_nearest2d.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def forward(self, x):
5050
pytest.param((1, 8, 3, 3), 12, id="4x upscale, 8 channels, scalar size"),
5151
],
5252
)
53+
@pytest.mark.xfail(strict=True, reason="EIEX-881")
5354
def test_convert_upsample_nearest2d__size(mocker, input_shape, size):
5455
model = UpsampleNearestModule(size=size)
5556

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

docs/source/backends/nxp/nxp-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ Among currently supported machine learning models are:
2424

2525
- [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)
2626
- [MCUXpresso SDK 25.12](https://mcuxpresso.nxp.com/mcuxsdk/25.12.00/html/index.html)
27-
- eIQ Neutron SDK version 3.1.0, what you can download from eIQ PyPI:
27+
- eIQ Neutron SDK version 3.1.1, what you can download from eIQ PyPI:
2828

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

3333
Instead of manually installing requirements, except MCUXpresso IDE and SDK, you can use the setup script:

examples/nxp/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -u
88
EIQ_PYPI_URL="${EIQ_PYPI_URL:-https://eiq.nxp.com/repository}"
99

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

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

0 commit comments

Comments
 (0)