summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authoralexander <alexander.efremov@arm.com>2021-05-04 21:24:22 +0100
committerKshitij Sisodia <kshitij.sisodia@arm.com>2021-05-06 14:08:55 +0100
commitd580eee180be219e118152cedabc9637da8574d6 (patch)
treefd99566c552996fe1f494a2224cc2f4a5194dabf /docs
parent27b62d9dec86b76422c6c8be7615c1f712518570 (diff)
downloadml-embedded-evaluation-kit-d580eee180be219e118152cedabc9637da8574d6.tar.gz
MLECO-1898: removing support of legacy sse-200 platform
Signed-off-by: alexander <alexander.efremov@arm.com> Change-Id: Ie462e786af1d429bcb815f2c10656ed82862715a
Diffstat (limited to 'docs')
-rw-r--r--docs/documentation.md1
-rw-r--r--docs/sections/building.md12
-rw-r--r--docs/sections/deployment.md17
-rw-r--r--docs/use_cases/ad.md30
4 files changed, 23 insertions, 37 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index 566feab..ece2f56 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -231,7 +231,6 @@ See:
- [Preparing build environment](./sections/building.md#preparing-build-environment)
- [Create a build directory](./sections/building.md#create-a-build-directory)
- [Configuring the build for `MPS3: SSE-300`](./sections/building.md#configuring-the-build-for-mps3-sse-300)
- - [Configuring the build for `MPS3: SSE-200`](./sections/building.md#configuring-the-build-for-mps3-sse-200)
- [Configuring native unit-test build](./sections/building.md#configuring-native-unit-test-build)
- [Configuring the build for `simple_platform`](./sections/building.md#configuring-the-build-for-simple_platform)
- [Building the configured project](./sections/building.md#building-the-configured-project)
diff --git a/docs/sections/building.md b/docs/sections/building.md
index c53b1f5..c8eef7c 100644
--- a/docs/sections/building.md
+++ b/docs/sections/building.md
@@ -10,7 +10,6 @@
- [Preparing build environment](#preparing-build-environment)
- [Create a build directory](#create-a-build-directory)
- [Configuring the build for MPS3: SSE-300](#configuring-the-build-for-mps3-sse-300)
- - [Configuring the build for MPS3: SSE-200](#configuring-the-build-for-mps3-sse-200)
- [Configuring native unit-test build](#configuring-native-unit-test-build)
- [Configuring the build for simple_platform](#configuring-the-build-for-simple_platform)
- [Building the configured project](#building-the-configured-project)
@@ -122,7 +121,6 @@ The build parameters are:
FVP and the MPS3 FPGA, this should be left to the default value of
SSE-300:
- `sse-300` (default - [Arm® Corstone™-300](https://developer.arm.com/ip-products/subsystem/corstone/corstone-300))
- - `sse-200`
- `TENSORFLOW_SRC_PATH`: Path to the root of the TensorFlow directory.
The default value points to the TensorFlow submodule in the
@@ -331,15 +329,6 @@ cmake \
> **Note:** If re-building with changed parameters values, it is
highly advised to clean the build directory and re-run the CMake command.
-### Configuring the build for MPS3: SSE-200
-
-```commandline
-cmake \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-200 \
- -DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake ..
-```
-
### Configuring native unit-test build
```commandline
@@ -771,7 +760,6 @@ scripts/
├── cmake
│ ├── ...
│ ├── subsystem-profiles
-│ │ ├── corstone-sse-200.cmake
│ │ └── corstone-sse-300.cmake
│ ├── templates
│ │ ├── mem_regions.h.template
diff --git a/docs/sections/deployment.md b/docs/sections/deployment.md
index 4c9101c..a6e9c3c 100644
--- a/docs/sections/deployment.md
+++ b/docs/sections/deployment.md
@@ -2,11 +2,13 @@
## Contents
-- [Fixed Virtual Platform](#fixed-virtual-platform)
- - [Setting up the MPS3 Arm Corstone-300 FVP](#setting-up-the-mps3-arm-corstone-300-fvp)
- - [Deploying on an FVP emulating MPS3](#deploying-on-an-fvp-emulating-mps3)
-- [MPS3 board](#mps3-board)
- - [Deployment on MPS3 board](#deployment-on-mps3-board)
+- [Deployment](#deployment)
+ - [Contents](#contents)
+ - [Fixed Virtual Platform](#fixed-virtual-platform)
+ - [Setting up the MPS3 Arm Corstone-300 FVP](#setting-up-the-mps3-arm-corstone-300-fvp)
+ - [Deploying on an FVP emulating MPS3](#deploying-on-an-fvp-emulating-mps3)
+ - [MPS3 board](#mps3-board)
+ - [Deployment on MPS3 board](#deployment-on-mps3-board)
The sample application for Arm® Ethos™-U55 can be deployed on two
target platforms, both of which implement the Arm® Corstone™-300 design (see
@@ -25,9 +27,6 @@ Download the correct archive from the list under `Arm Corstone-300`. We need the
- Emulates MPS3 board (not for MPS2 FPGA board)
- Contains support for Arm® Ethos™-U55
-> **Note:** Currently, the FVP only has a Linux OS version. Also, there are no FVPs available for `SSE-200`
-> which satisfy the above conditions.
-
For FVP, the elf or the axf file can be run using the Fast Model
executable as outlined under the [Starting Fast Model simulation](./setup.md/#starting-fast-model-simulation)
except for the binary being pointed at here
@@ -142,7 +141,7 @@ For more information on getting started with an MPS3 board, please refer to
### Deployment on MPS3 board
> **NOTE**: These instructions are valid only if the evaluation is being
- done using the MPS3 FPGA platform using either `SSE-200` or `SSE-300`.
+ done using the MPS3 FPGA platform using `SSE-300`.
To run the application on MPS3 platform, firstly it's necessary to make sure
that the platform has been set up using the correct configuration.
diff --git a/docs/use_cases/ad.md b/docs/use_cases/ad.md
index 82da9e5..5a37a0a 100644
--- a/docs/use_cases/ad.md
+++ b/docs/use_cases/ad.md
@@ -1,19 +1,19 @@
# Anomaly Detection Code Sample
-- [Introduction](#introduction)
- - [Prerequisites](#prerequisites)
-- [Building the code sample application from sources](#building-the-code-sample-application-from-sources)
- - [Build options](#build-options)
- - [Build process](#build-process)
- - [Add custom input](#add-custom-input)
- - [Add custom model](#add-custom-model)
-- [Setting-up and running Ethos-U55 Code Sample](#setting-up-and-running-ethos-u55-code-sample)
- - [Setting up the Ethos-U55 Fast Model](#setting-up-the-ethos-u55-fast-model)
- - [Starting Fast Model simulation](#starting-fast-model-simulation)
- - [Running Anomaly Detection](#running-anomaly-detection)
-- [Anomaly Detection processing information](#anomaly-detection-processing-information)
- - [Preprocessing and feature extraction](#preprocessing-and-feature-extraction)
- - [Postprocessing](#postprocessing)
+- [Anomaly Detection Code Sample](#anomaly-detection-code-sample)
+ - [Introduction](#introduction)
+ - [Preprocessing and feature extraction](#preprocessing-and-feature-extraction)
+ - [Postprocessing](#postprocessing)
+ - [Prerequisites](#prerequisites)
+ - [Building the code sample application from sources](#building-the-code-sample-application-from-sources)
+ - [Build options](#build-options)
+ - [Build process](#build-process)
+ - [Add custom input](#add-custom-input)
+ - [Add custom model](#add-custom-model)
+ - [Setting-up and running Ethos-U55 Code Sample](#setting-up-and-running-ethos-u55-code-sample)
+ - [Setting up the Ethos-U55 Fast Model](#setting-up-the-ethos-u55-fast-model)
+ - [Starting Fast Model simulation](#starting-fast-model-simulation)
+ - [Running Anomaly Detection](#running-anomaly-detection)
## Introduction
@@ -296,7 +296,7 @@ The log from the configuration stage should tell you what model path has been us
After compiling, your custom model will have now replaced the default one in the application.
>**Note:** In order to successfully run the model, the NPU needs to be enabled and
- the platform `TARGET_PLATFORM` is set to mps3 and TARGET_SUBSYSTEM is SSE-200 or SSE-300.
+ the platform `TARGET_PLATFORM` is set to `mps3` and `TARGET_SUBSYSTEM` is `SSE-300`.
## Setting-up and running Ethos-U55 Code Sample