summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKshitij Sisodia <kshitij.sisodia@arm.com>2022-08-12 15:56:40 +0100
committerKshitij Sisodia <kshitij.sisodia@arm.com>2022-08-16 15:08:08 +0100
commit6fecec1113d2b50d6ce2381683b6c4fb1217a12c (patch)
tree5cfed21b6234ac3fb3b87542fcc730f996906c7b /scripts
parent01334f974f75d5ce405571095fc888c8ed7846d4 (diff)
downloadml-embedded-evaluation-kit-6fecec1113d2b50d6ce2381683b6c4fb1217a12c.tar.gz
MLECO-3321: Updated TensorFlow Lite Micro.
Updated to latest version of TensorFlow Lite Micro and removed forcing TENSORFLOW_LITE_MICRO_TARGET_ARCH to Arm Cortex-M55 for SSE-310 (now it is correctly set to Cortex-M85 instead). Change-Id: Ib1e8680a8d2ea803e0e003032119a10b1d71754e Signed-off-by: Kshitij Sisodia <kshitij.sisodia@arm.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/tensorflow.cmake5
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/cmake/tensorflow.cmake b/scripts/cmake/tensorflow.cmake
index ac11542..24227d9 100644
--- a/scripts/cmake/tensorflow.cmake
+++ b/scripts/cmake/tensorflow.cmake
@@ -51,10 +51,7 @@ if (TARGET_PLATFORM STREQUAL native)
else()
set(TENSORFLOW_LITE_MICRO_TARGET "cortex_m_generic")
- if ("${CMAKE_SYSTEM_ARCH}" STREQUAL "armv8.1-m.main" OR "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "cortex-m85")
- # TensorFlow's generic makefile doesn't currently have a flow for Cortex-M85.
- # We build for Arm Cortex-M55 instead.
- # @TODO: check with latest TensorFlow package.
+ if ("${CMAKE_SYSTEM_ARCH}" STREQUAL "armv8.1-m.main")
set(TENSORFLOW_LITE_MICRO_TARGET_ARCH "cortex-m55")
else()
set(TENSORFLOW_LITE_MICRO_TARGET_ARCH "${CMAKE_SYSTEM_PROCESSOR}")