summaryrefslogtreecommitdiff
path: root/docs/use_cases/kws_asr.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/use_cases/kws_asr.md')
-rw-r--r--docs/use_cases/kws_asr.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/use_cases/kws_asr.md b/docs/use_cases/kws_asr.md
index 52d66ab..51d1840 100644
--- a/docs/use_cases/kws_asr.md
+++ b/docs/use_cases/kws_asr.md
@@ -12,8 +12,8 @@
- [Build process](#build-process)
- [Add custom input](#add-custom-input)
- [Add custom model](#add-custom-model)
- - [Setting-up and running Ethos-U55 Code Samples](#setting-up-and-running-ethos-u55-code-samples)
- - [Setting up the Ethos-U55 Fast Model](#setting-up-the-ethos-u55-fast-model)
+ - [Setting up and running Ethos-U NPU code sample](#setting-up-and-running-ethos-u-npu-code-sample)
+ - [Setting up the Ethos-U Fast Model](#setting-up-the-ethos-u-fast-model)
- [Starting Fast Model simulation](#starting-fast-model-simulation)
- [Running Keyword Spotting and Automatic Speech Recognition](#running-keyword-spotting-and-automatic-speech-recognition)
@@ -166,11 +166,11 @@ Recognition use-case adds:
- `kws_asr_MODEL_TFLITE_PATH_ASR` and `kws_asr_MODEL_TFLITE_PATH_KWS`: The path to the NN model file in `TFLite` format.
The model is processed and then included into the application `axf` file. The default value points to one of the
delivered set of models. Note that the parameters `kws_asr_LABELS_TXT_FILE_KWS`,
- `kws_asr_LABELS_TXT_FILE_ASR`,`TARGET_PLATFORM`, and `ETHOS_U55_ENABLED` must be aligned with the chosen model. In
+ `kws_asr_LABELS_TXT_FILE_ASR`,`TARGET_PLATFORM`, and `ETHOS_U_NPU_ENABLED` must be aligned with the chosen model. In
other words:
- - If `ETHOS_U55_ENABLED` is set to `On` or `1`, then the NN model is assumed to be optimized. The model naturally
+ - If `ETHOS_U_NPU_ENABLED` is set to `On` or `1`, then the NN model is assumed to be optimized. The model naturally
falls back to the Arm® *Cortex®-M* CPU if an unoptimized model is supplied.
- - If `ETHOS_U55_ENABLED` is set to `Off` or `0`, then the NN model is assumed to be unoptimized. Supplying an
+ - If `ETHOS_U_NPU_ENABLED` is set to `Off` or `0`, then the NN model is assumed to be unoptimized. Supplying an
optimized model in this case results in a runtime error.
- `kws_asr_FILE_PATH`: The path to the directory containing audio files, or a path to single WAV file, to be used in the
@@ -242,6 +242,7 @@ For further information, please refer to:
- [Using Arm Compiler](../sections/building.md#using-arm-compiler)
- [Configuring the build for simple_platform](../sections/building.md#configuring-the-build-for-simple_platform)
- [Working with model debugger from Arm Fast Model Tools](../sections/building.md#working-with-model-debugger-from-arm-fast-model-tools)
+- [Building for different Ethos-U NPU variants](../sections/building.md#building-for-different-ethos-u-npu-variants)
> **Note:** If re-building with changed parameters values, we recommend that you clean the build directory and re-run
> the CMake command.
@@ -328,7 +329,7 @@ The application performs KWS inference using the model pointed to by the CMake p
This section assumes you want to change the existing ASR model to a custom one. If, instead, you want to change the KWS
model, then the instructions are the same. Except ASR changes to KWS.
-> **Note:** If you want to run the model using an *Ethos-U55*, ensure that your custom model has been successfully run
+> **Note:** If you want to run the model using an *Ethos-U*, ensure that your custom model has been successfully run
> through the Vela compiler *before* continuing.
For further information:
@@ -374,15 +375,14 @@ custom_asr_model_after_vela.tflite.cc
After compiling, your custom model has now replaced the default one in the application.
-## Setting-up and running Ethos-U55 Code Samples
+## Setting up and running Ethos-U NPU code sample
-### Setting up the Ethos-U55 Fast Model
+### Setting up the Ethos-U Fast Model
The FVP is available publicly from
[Arm Ecosystem FVP downloads](https://developer.arm.com/tools-and-software/open-source-software/arm-platforms-software/arm-ecosystem-fvps).
-For the *Ethos-U55* evaluation, please download the MPS3 version of the Arm® *Corstone™-300* model that contains both
-the *Ethos-U55* and *Cortex-M55*. The model is only supported on Linux-based machines.
+For the *Ethos-U* evaluation, please download the MPS3 based version of the Arm® *Corstone™-300* model that contains *Cortex-M55* and offers a choice of the *Ethos-U55* and *Ethos-U65* processors.
To install the FVP:
@@ -391,7 +391,7 @@ To install the FVP:
- Run the install script in the extracted package:
```commandline
-./FVP_Corstone_SSE-300_Ethos-U55.sh
+./FVP_Corstone_SSE-300.sh
```
- Follow the instructions to install the FVP to the required location.
@@ -566,7 +566,7 @@ words recognized from the input sample.
The profiling section of the log shows that for the ASR inference:
-- *Ethos-U55* PMU report:
+- *Ethos-U* PMU report:
- 28,910,172 total cycle: The number of NPU cycles.
@@ -575,7 +575,7 @@ The profiling section of the log shows that for the ASR inference:
- 863 idle cycles: The number of cycles for which the NPU was idle.
- 13,520,864 AXI0 read beats: The number of AXI beats with read transactions from the AXI0 bus. AXI0 is the bus where
- the *Ethos-U55* NPU reads and writes to the computation buffers, activation buf, or tensor arenas.
+ the *Ethos-U* NPU reads and writes to the computation buffers, activation buf, or tensor arenas.
- 2,841,970 AXI0 write beats: The number of AXI beats with write transactions to AXI0 bus.