Skip to content

Commit f4635f0

Browse files
annwojmiha-nordic
authored andcommitted
doc: release notes v200
Release notes PR for the upcoming release Signed-off-by: Anna Wojdylo <anna.wojdylo@nordicsemi.no>
1 parent 5b3d6dc commit f4635f0

11 files changed

Lines changed: 161 additions & 40 deletions

File tree

applications/ww_kws/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can easily replace the bundled wakeword with a custom one using the Text to
2525

2626
.. note::
2727
The current implementation in this application performs wakeword detection.
28-
A separate keyword classification stage is will be added soon.
28+
A separate keyword classification stage will be added in future releases.
2929

3030
Requirements
3131
************

doc/axon_compiler.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _axon_compiler:
22

3-
Axon compiler
4-
#############
3+
Axon NPU compiler
4+
#################
55

66
The following pages describes the :ref:`TinyML sample models <axon_compiler_tiny_models>` provided with the :ref:`Axon TFLite compiler <axon_npu_tflite_compiler>`.
77
They cover instructions on how the compiler is used to compile and run machine learning models on the Axon NPU.
@@ -11,5 +11,7 @@ Each model includes an overview and a dedicated subpage with model‑specific de
1111
.. toctree::
1212
:maxdepth: 2
1313

14+
/axon_compiler/supported_operators.rst
1415
/axon_compiler/Axon_npu_tflite_compiler.rst
1516
/axon_compiler/mlperf_tiny_models.rst
17+
/axon_compiler/axon_npu_changelog

doc/axon_compiler/Axon_npu_tflite_compiler.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Axon NPU TFLITE compiler
88
:depth: 2
99

1010
The following guide provides an overview of the Axon NPU TFLite compiler, including how it works, its input parameters, and instructions for setting up and running the compiler.
11+
See the :ref:`glossary` for definitions of key terms used in this documentation.
1112

1213
Overview
1314
********
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
.. _axon_npu_changelog:
2+
3+
Axon NPU changelog
4+
##################
5+
6+
.. contents::
7+
:local:
8+
:depth: 2
9+
10+
This page tracks changes and updates as compared to the latest official release.
11+
For more information refer to the following section.
12+
13+
For the list of Edge AI Add-on changelog information, see :ref:`edgeai_release_notes`.
14+
15+
Changelog
16+
*********
17+
18+
See the list of changes for a specific release of the Axon NPU software.
19+
20+
Release 1.0.1 05 Mar 2026
21+
==========================
22+
23+
* Added:
24+
25+
* Compiler release 1.0.1
26+
27+
.. note::
28+
The compiler was tested and built with SDK toolchain version v3.2.0.
29+
You should use this version for stable builds.
30+
31+
* Fixed:
32+
33+
* Compiler now correctly handles a fully-connected layer followed by softmax when the fully-connected layer uses per-channel weight quantization (TensorFlow v2.19).
34+
35+
Known issues
36+
------------
37+
38+
There are no reported known issues for this release.
39+
40+
Release 1.0.0 03 Mar 2026
41+
==========================
42+
43+
This is the first public release of the Axon NPU software.
44+
45+
* Added:
46+
47+
* Compiler release v1.0.0.
48+
* Support for v3.3.0-preview tag of the ``sdk-nrf`` (``SHA-1 ede152ec21``).
49+
50+
.. note::
51+
The compiler was tested and built with SDK toolchain version v3.2.0.
52+
You should use this version for stable builds.
53+
54+
* Arbitrary reshape operation.
55+
56+
* Updated:
57+
58+
* Licenses to public Nordic license ``SPDX-License-Identifier: LicenseRef-Nordic-5-Clause``
59+
60+
* Fixed:
61+
62+
* Softmax no longer specifies unpacked output.
63+
Affects a small number of models.
64+
65+
Known issues
66+
------------
67+
68+
There are no reported known issues for this release.
69+
70+
Release 0.7.0 17 Feb 2026
71+
==========================
72+
73+
* Added:
74+
75+
* Compiler release v0.2.0.
76+
* Support for the ``main`` branch of ``sdk-nrf`` (tested with ``SHA-1 860c808db9``).
77+
78+
.. note::
79+
The compiler was tested and built with SDK toolchain version v3.2.0.
80+
You should use this version for stable builds.
81+
82+
* Updated:
83+
84+
* Modified the source tree to match ``sdk-edge-ai`` repository.
85+
* Improved performance in compiler and simulator when performing inference.
86+
87+
* Fixed:
88+
89+
* Compiler now checks for dilation on depthwise convolution and returns errors.
90+
91+
Known issues
92+
------------
93+
94+
Current release has the following known issues:
95+
96+
* ADD operation with broadcast on both height and width axes is not supported when both inputs are dynamic (outputs from previous layers).
97+
* Per-layer testing in unit tests is not supported due to compilation errors caused by incompatible types.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ Tensor manipulation operators
229229
| See :ref:`supported_operators_reshape` for details.
230230
- CPU
231231
- 1.0.0
232+
232233
Model design recommendations
233234
****************************
234235

doc/glossary.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Glossary
44
*********
55

6+
The glossary defines the key terms used throughout the documentation.
7+
68
command_buffer
79
--------------
810

doc/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ See the following documentation:
4444

4545
overview.rst
4646
quick_start.rst
47-
supported_operators.rst
4847
setting_up_environment.rst
4948
applications.rst
5049
samples.rst

doc/known_issues.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Known issues
88
:depth: 2
99

1010
Known issues listed on this page are valid for the current state of development.
11+
For the list of potential issues found regarding Axon NPU, see the :ref:`axon_npu_changelog` page.
1112
A known issue can list one or both of the following entries:
1213

1314
* **Affected platforms:**
@@ -19,7 +20,15 @@ A known issue can list one or both of the following entries:
1920
Some known issues have a workaround.
2021
Sometimes, they are discovered later and added over time.
2122

22-
List of known issues for v1.0.0 release
23+
List of known issues for v2.0.0 release
2324
***************************************
2425

25-
There are no reported known issues for this release.
26+
DRGN-27788: Bluetooth LE disables RRAM low-latency mode when using AXON NPU and Bluetooth LE simultaneously on the nRF54LM20B SoC
27+
When running AXON and Bluetooth LE together on nRF54LM20B, Bluetooth LE might disable RRAM low-latency mode during radio activity, which may slow or corrupt an ongoing inference.
28+
MPSL sets STANDBY mode in ``NRF_RRAMC->POWER.LOWPOWERCONFIG`` at the start of each radio slot and restores the application init value at the end.
29+
In a power-optimized application, if the radio slot ends while an inference is running on Axon, the low-power (``NRF_RRAMC_LP_POWER_OFF``) value will be forced by MPSL, slowing down the rest of the inference.
30+
31+
**Workaround:** Use ``CONFIG_MPSL_FORCE_RRAM_ON_ALL_THE_TIME`` to keep RRAM permanently in STANDBY mode.
32+
This setting increases power consumption but ensures reliable performance.
33+
34+
**Affected platforms:** nRF54LM20B SoC

doc/links.txt

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -44,39 +44,40 @@
4444

4545
.. ### Source: docs.nordicsemi.com (update for each release)
4646

47-
.. _`nRF54H20 DK`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/device_guides/nrf54h/ug_nrf54h20_gs.html#ug-nrf54h20-gs
48-
.. _`nrf54h20dk`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf54h20dk/doc/index.html#nrf54h20dk
47+
.. _`nRF54H20 DK`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/device_guides/nrf54h/ug_nrf54h20_gs.html#ug-nrf54h20-gs
48+
.. _`nrf54h20dk`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf54h20dk/doc/index.html#nrf54h20dk
4949

50-
.. _`nRF54L15 DK`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/device_guides/nrf54l/index.html#ug-nrf54l
51-
.. _`nrf54l15dk`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf54l15dk/doc/index.html#nrf54l15dk
52-
.. _`nRF54L10 emulation`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf54l15dk/doc/index.html#nrf54l15dk-nrf54l10
53-
.. _`nRF54L05 emulation`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf54l15dk/doc/index.html#nrf54l15dk-nrf54l05
50+
.. _`nRF54L15 DK`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/device_guides/nrf54l/index.html#ug-nrf54l
51+
.. _`nrf54l15dk`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf54l15dk/doc/index.html#nrf54l15dk
52+
.. _`nRF54L10 emulation`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2page/zephyr/boards/nordic/nrf54l15dk/doc/index.html#nrf54l15dk-nrf54l10
53+
.. _`nRF54L05 emulation`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf54l15dk/doc/index.html#nrf54l15dk-nrf54l05
5454

55-
.. _`nrf54lm20dk`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf54lm20dk/doc/index.html#nrf54lm20dk
55+
.. _`nrf54lm20dk`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf54lm20dk/doc/index.html#nrf54lm20dk
5656

57-
.. _`nRF5340 DK`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/device_guides/nrf53/index.html#ug-nrf5340
58-
.. _`nrf5340dk`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf5340dk/doc/index.html#nrf5340dk
57+
.. _`nRF5340 DK`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/device_guides/nrf53/index.html#ug-nrf5340
58+
.. _`nrf5340dk`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf5340dk/doc/index.html#nrf5340dk
5959

60-
.. _`Thingy:53`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/device_guides/thingy53/index.html#ug-thingy53
61-
.. _`thingy53`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/thingy53/doc/index.html#thingy53
60+
.. _`Thingy:53`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/device_guides/thingy53/index.html#ug-thingy53
61+
.. _`thingy53`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/thingy53/doc/index.html#thingy53
6262

63-
.. _`nRF52 DK`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/device_guides/nrf52/index.html#ug-nrf52
64-
.. _`nrf52dk`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf52dk/doc/index.html#nrf52dk
65-
.. _`nrf52840dk`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/boards/nordic/nrf52840dk/doc/index.html#nrf52840dk
63+
.. _`nRF52 DK`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/device_guides/nrf52/index.html#ug-nrf52
64+
.. _`nrf52dk`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf52dk/doc/index.html#nrf52dk
65+
.. _`nrf52840dk`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/boards/nordic/nrf52840dk/doc/index.html#nrf52840dk
6666

67-
.. _`Configuring and building`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/config_and_build/index.html#configure-application
68-
.. _`Building an application`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/config_and_build/building.html#building
69-
.. _`Programming`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/programming.html#programming
70-
.. _`Testing and optimization`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/test_and_optimize.html#testing
71-
.. _`Providing CMake options`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/config_and_build/cmake/index.html#providing_cmake_options
72-
.. _`Custom build types`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/app_dev/config_and_build/config_and_build_system.html#app-build-additions-build-types
67+
.. _`Configuring and building`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/config_and_build/index.html#configure-application
68+
.. _`Building an application`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/config_and_build/building.html#building
69+
.. _`Programming`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/programming.html#programming
70+
.. _`Testing and optimization`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/test_and_optimize.html#testing
71+
.. _`Providing CMake options`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/config_and_build/cmake/index.html#providing_cmake_options
72+
.. _`Custom build types`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/app_dev/config_and_build/config_and_build_system.html#app-build-additions-build-types
73+
.. _`software maturity`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/releases_and_maturity/software_maturity.html
7374

74-
.. _`Simulated sensor driver`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/drivers/sensor_sim.html
75+
.. _`Simulated sensor driver`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/drivers/sensor_sim.html
7576

76-
.. _`Logging`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/services/logging/index.html#logging-api
77-
.. _`Sensor`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/hardware/peripherals/sensor/index.html#sensor
78-
.. _`Nordic UART Service (NUS)`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/nrf/libraries/bluetooth/services/nus.html
79-
.. _`TensorFlow Lite for Microcontrollers: Hello World`: https://docs.nordicsemi.com/bundle/ncs-3.2.0/page/zephyr/samples/modules/tflite-micro/hello_world/README.html#tflite-hello-world
77+
.. _`Logging`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/services/logging/index.html#logging-api
78+
.. _`Sensor`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/hardware/peripherals/sensor/index.html#sensor
79+
.. _`Nordic UART Service (NUS)`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/nrf/libraries/bluetooth/services/nus.html
80+
.. _`TensorFlow Lite for Microcontrollers: Hello World`: https://docs.nordicsemi.com/bundle/ncs-3.3.0-preview2/page/zephyr/samples/modules/tflite-micro/hello_world/README.html#tflite-hello-world
8081

8182
.. ### Source: edgeimpulse.com
8283

doc/release_notes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ For detailed list on new features for a specific |EAI| release, refer to the fol
1010
:glob:
1111
:caption: Release notes:
1212

13-
release_notes_and_migration/release_notes_latest.rst
13+
release_notes_and_migration/release_notes_v200.rst
1414
release_notes_and_migration/release_notes_v100.rst

0 commit comments

Comments
 (0)