summaryrefslogtreecommitdiff
path: root/docs/use_cases
diff options
context:
space:
mode:
authoralexander <alexander.efremov@arm.com>2021-04-15 19:05:03 +0100
committeralexander <alexander.efremov@arm.com>2021-04-15 19:05:03 +0100
commitc930ad9dc189d831ac77f716df288f70178d4c10 (patch)
treed59f8f6b94172c47e731b683efb4371b1a19fe5a /docs/use_cases
parentdc8f3c805126a64813663fd55e83f37c5324edb1 (diff)
downloadml-embedded-evaluation-kit-c930ad9dc189d831ac77f716df288f70178d4c10.tar.gz
Windows support was removed from documentation.
TensorFlow Lite micro build is not compatible with MinGW make. Signed-off-by: alexander <alexander.efremov@arm.com> Change-Id: I0980838f659431b18ebc54ec0a1e4371941c36b4
Diffstat (limited to 'docs/use_cases')
-rw-r--r--docs/use_cases/ad.md14
-rw-r--r--docs/use_cases/asr.md14
-rw-r--r--docs/use_cases/img_class.md13
-rw-r--r--docs/use_cases/inference_runner.md13
-rw-r--r--docs/use_cases/kws.md13
-rw-r--r--docs/use_cases/kws_asr.md13
6 files changed, 0 insertions, 80 deletions
diff --git a/docs/use_cases/ad.md b/docs/use_cases/ad.md
index 9014c96..93a9993 100644
--- a/docs/use_cases/ad.md
+++ b/docs/use_cases/ad.md
@@ -115,17 +115,6 @@ cmake \
-DUSE_CASE_BUILD=ad ..
```
-For Windows, add `-G "MinGW Makefiles"`:
-
-```commandline
-cmake \
- -G "MinGW Makefiles" \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-300 \
- -DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
- -DUSE_CASE_BUILD=ad ..
-```
-
Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific
parameters.
@@ -259,9 +248,6 @@ cmake \
-DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake \
-DUSE_CASE_BUILD=ad ..
```
-
-For Windows, add `-G "MinGW Makefiles"` to the CMake command.
-
The images found in the _DIR folder will be picked up and automatically converted to C++ files during the CMake
configuration stage and then compiled into the application during the build phase for performing inference with.
diff --git a/docs/use_cases/asr.md b/docs/use_cases/asr.md
index fa93d9a..6ae1fc1 100644
--- a/docs/use_cases/asr.md
+++ b/docs/use_cases/asr.md
@@ -154,18 +154,6 @@ cmake \
-DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
-DUSE_CASE_BUILD=asr ..
```
-
-For Windows, add `-G "MinGW Makefiles"`:
-
-```commandline
-cmake \
- -G "MinGW Makefiles" \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-300 \
- -DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
- -DUSE_CASE_BUILD=asr ..
-```
-
Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific
parameters.
@@ -293,8 +281,6 @@ cmake \
-DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake ..
```
-For Windows, add `-G "MinGW Makefiles"` to the CMake command.
-
The audio clips found in the `asr_FILE_PATH` folder will be picked up and automatically converted to C++ files during the
CMake configuration stage and then compiled into the application during the build phase for performing inference with.
diff --git a/docs/use_cases/img_class.md b/docs/use_cases/img_class.md
index 9ba6d8c..40d80b0 100644
--- a/docs/use_cases/img_class.md
+++ b/docs/use_cases/img_class.md
@@ -83,17 +83,6 @@ cmake \
-DUSE_CASE_BUILD=img_class ..
```
-For Windows, add `-G "MinGW Makefiles"`:
-
-```commandline
-cmake \
- -G "MinGW Makefiles" \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-300 \
- -DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
- -DUSE_CASE_BUILD=img_class ..
-```
-
Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific
parameters.
@@ -221,8 +210,6 @@ cmake \
-DUSE_CASE_BUILD=img_class ..
```
-For Windows, add `-G "MinGW Makefiles"` to the CMake command.
-
The images found in the `img_class_FILE_PATH` folder will be picked up and automatically converted to C++ files during
the CMake configuration stage and then compiled into the application during the build phase for performing inference
with.
diff --git a/docs/use_cases/inference_runner.md b/docs/use_cases/inference_runner.md
index 06f02a4..d090caa 100644
--- a/docs/use_cases/inference_runner.md
+++ b/docs/use_cases/inference_runner.md
@@ -75,17 +75,6 @@ cmake \
-DUSE_CASE_BUILD=inference_runner ..
```
-For Windows, add `-G "MinGW Makefiles"`:
-
-```commandline
-cmake \
- -G "MinGW Makefiles" \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-300 \
- -DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
- -DUSE_CASE_BUILD=inference_runner ..
-```
-
Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific
parameters.
@@ -208,8 +197,6 @@ cmake \
-DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake ..
```
-For Windows, add `-G "MinGW Makefiles"` to the CMake command.
-
> **Note:** Clean the build directory before re-running the CMake command.
The `.tflite` model file pointed to by `inference_runner_MODEL_TFLITE_PATH` will be converted to C++ files during the CMake
diff --git a/docs/use_cases/kws.md b/docs/use_cases/kws.md
index b1f0b26..0147e96 100644
--- a/docs/use_cases/kws.md
+++ b/docs/use_cases/kws.md
@@ -124,17 +124,6 @@ cmake \
-DUSE_CASE_BUILD=kws ..
```
-For Windows, add `-G "MinGW Makefiles"`:
-
-```commandline
-cmake \
- -G "MinGW Makefiles" \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-300 \
- -DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
- -DUSE_CASE_BUILD=kws ..
-```
-
Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific
parameters.
@@ -258,8 +247,6 @@ cmake \
-DCMAKE_TOOLCHAIN_FILE=scripts/cmake/bare-metal-toolchain.cmake..
```
-For Windows, add `-G "MinGW Makefiles"` to the CMake command.
-
The audio clips found in the `kws_FILE_PATH` folder will be picked up and automatically converted to C++ files during the
CMake configuration stage and then compiled into the application during the build phase for performing inference with.
diff --git a/docs/use_cases/kws_asr.md b/docs/use_cases/kws_asr.md
index bcb5ed1..55989c7 100644
--- a/docs/use_cases/kws_asr.md
+++ b/docs/use_cases/kws_asr.md
@@ -195,17 +195,6 @@ cmake \
-DUSE_CASE_BUILD=kws_asr ..
```
-For Windows, add `-G "MinGW Makefiles"`:
-
-```commandline
-cmake \
- -G "MinGW Makefiles" \
- -DTARGET_PLATFORM=mps3 \
- -DTARGET_SUBSYSTEM=sse-300 \
- -DCMAKE_TOOLCHAIN_FILE=./scripts/cmake/bare-metal-toolchain.cmake \
- -DUSE_CASE_BUILD=kws_asr ..
-```
-
Toolchain option `CMAKE_TOOLCHAIN_FILE` points to the toolchain specific file to set the compiler and platform specific
parameters.
@@ -330,8 +319,6 @@ cmake \
-DUSE_CASE_BUILD=kws_asr- ..
```
-For Windows, add `-G "MinGW Makefiles"` to the CMake command.
-
The files found in the `kws_asr_FILE_PATH` folder will be picked up and automatically converted to C++ files during the
CMake configuration stage and then compiled into the application during the build phase for performing inference with.