-
Notifications
You must be signed in to change notification settings - Fork 607
Initial framework of an ethos-u runtime backend #2 #595
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
521124b
[NOMERGE] stub out tests with codegen issues temporarily
robell 2a6dce5
Initial Ethos-U runtime backend
robell 2083a71
Fixed error messages on runtime init
robell f5cff0b
lintrunner cleanup
robell a1fbdb4
Enable logging in Release mode
digantdesai 918c798
Move arm example dir under backends
digantdesai b2a395a
Add option specify a list of ops
digantdesai 862e510
Add softmax as another toy model
digantdesai 69c132d
patches and utils for setting up baremetal stack for cs300
digantdesai e87db01
Add example script to run on cpu
digantdesai afd8080
Add ArmBackend to example scripts
robell a29523f
Add delegate test and FVP output
robell 8efd2e3
align builds on same cmake toolchain
robell 52c1c09
Fix delegate runner patch
robell 8ae524c
cmake compiler and log behaviour fixing
robell a64e835
Minimal example of AoT with ArmPartitioner+Vela
robell ec03f3c
Generate pte for delegate test on the fly
robell 1ba71d7
Added support for variable input output patterns
robell f29715e
Handle multiple delegate inputs with SRAM offsets
robell 3b35ff6
Add TOSA ref model and Vela dependencies
robell 94c598e
Cleanup from lintrunner and other bits of tidyup
robell 683d428
Removed ethos u driver build and cmsis dependency
robell 3292199
renamed lib ethos_u to executorch_delegate_ethos_u
robell e6ede01
lintfix
robell 76a393a
tidied delegate_runner output
robell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 2023 Arm Limited and/or its affiliates. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
cmake_minimum_required(VERSION 3.19) | ||
|
||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
|
||
# Source root directory for executorch. | ||
if(NOT EXECUTORCH_ROOT) | ||
set(EXECUTORCH_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../..) | ||
endif() | ||
|
||
include(${EXECUTORCH_ROOT}/build/Utils.cmake) | ||
|
||
set(_common_include_directories ${EXECUTORCH_ROOT}/..) | ||
set(_common_compile_options -Wno-deprecated-declarations) | ||
|
||
include(cmake/Dependencies.cmake) | ||
|
||
set(_arm_baremetal_sources backends/arm/runtime/ArmBackendEthosU.cpp) | ||
list(TRANSFORM _arm_baremetal_sources PREPEND "${EXECUTORCH_ROOT}/") | ||
|
||
add_library( | ||
executorch_delegate_ethos_u | ||
STATIC ${_arm_baremetal_sources} | ||
) | ||
target_include_directories( | ||
executorch_delegate_ethos_u | ||
PUBLIC | ||
${_common_include_directories} | ||
) | ||
target_include_directories( | ||
executorch_delegate_ethos_u | ||
PUBLIC | ||
${DRIVER_ETHOSU_INCLUDE_DIR} | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright 2023 Arm Limited and/or its affiliates. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
set(THIRD_PARTY_ROOT "${CMAKE_CURRENT_SOURCE_DIR}/third-party") | ||
|
||
# Ethos-U driver | ||
set(DRIVER_ETHOSU_INCLUDE_DIR "${THIRD_PARTY_ROOT}/ethos-u-core-driver/include") | ||
include_directories( ${DRIVER_ETHOSU_INCLUDE_DIR} ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Copyright 2023 Arm Limited and/or its affiliates. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
set(TARGET_CPU "cortex-m55" CACHE STRING "Target CPU") | ||
string(TOLOWER ${TARGET_CPU} CMAKE_SYSTEM_PROCESSOR) | ||
|
||
set(CMAKE_SYSTEM_NAME Generic) | ||
set(CMAKE_C_COMPILER "arm-none-eabi-gcc") | ||
set(CMAKE_CXX_COMPILER "arm-none-eabi-g++") | ||
set(CMAKE_ASM_COMPILER "arm-none-eabi-gcc") | ||
set(CMAKE_LINKER "arm-none-eabi-ld") | ||
|
||
set(CMAKE_EXECUTABLE_SUFFIX ".elf") | ||
set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) | ||
|
||
# Select C/C++ version | ||
set(CMAKE_C_STANDARD 11) | ||
set(CMAKE_CXX_STANDARD 14) | ||
|
||
set(GCC_CPU ${CMAKE_SYSTEM_PROCESSOR}) | ||
string(REPLACE "cortex-m85" "cortex-m55" GCC_CPU ${GCC_CPU}) | ||
|
||
# Compile options | ||
add_compile_options( | ||
-mcpu=${GCC_CPU} | ||
-mthumb | ||
"$<$<CONFIG:DEBUG>:-gdwarf-3>" | ||
"$<$<COMPILE_LANGUAGE:CXX>:-fno-unwind-tables;-fno-rtti;-fno-exceptions>" | ||
-fdata-sections | ||
-ffunction-sections) | ||
|
||
# Compile defines | ||
add_compile_definitions( | ||
"$<$<NOT:$<CONFIG:DEBUG>>:NDEBUG>") | ||
|
||
# Link options | ||
add_link_options( | ||
-mcpu=${GCC_CPU} | ||
-mthumb | ||
--specs=nosys.specs) | ||
|
||
# Set floating point unit | ||
if(CMAKE_SYSTEM_PROCESSOR MATCHES "\\+fp") | ||
set(FLOAT hard) | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "\\+nofp") | ||
set(FLOAT soft) | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "cortex-m33(\\+|$)" OR | ||
CMAKE_SYSTEM_PROCESSOR MATCHES "cortex-m55(\\+|$)" OR | ||
CMAKE_SYSTEM_PROCESSOR MATCHES "cortex-m85(\\+|$)") | ||
set(FLOAT hard) | ||
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "cortex-m4(\\+|$)" OR | ||
CMAKE_SYSTEM_PROCESSOR MATCHES "cortex-m7(\\+|$)") | ||
set(FLOAT hard) | ||
set(FPU_CONFIG "fpv4-sp-d16") | ||
add_compile_options(-mfpu=${FPU_CONFIG}) | ||
add_link_options(-mfpu=${FPU_CONFIG}) | ||
else() | ||
set(FLOAT soft) | ||
endif() | ||
|
||
if(FLOAT) | ||
add_compile_options(-mfloat-abi=${FLOAT}) | ||
add_link_options(-mfloat-abi=${FLOAT}) | ||
endif() | ||
|
||
add_link_options(LINKER:--nmagic,--gc-sections) | ||
|
||
# Compilation warnings | ||
add_compile_options( | ||
# -Wall | ||
# -Wextra | ||
|
||
# -Wcast-align | ||
# -Wdouble-promotion | ||
# -Wformat | ||
# -Wmissing-field-initializers | ||
# -Wnull-dereference | ||
# -Wredundant-decls | ||
# -Wshadow | ||
# -Wswitch | ||
# -Wswitch-default | ||
# -Wunused | ||
-Wno-redundant-decls | ||
-Wno-psabi | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
# Copyright 2023 Arm Limited and/or its affiliates. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
set -e | ||
|
||
# | ||
# Setup toolchain | ||
# | ||
BASEDIR=`realpath $(dirname "$0")` | ||
echo "building using build.sh in $BASEDIR" | ||
|
||
ARCH=$(uname -i) | ||
GCCPATH=${BASEDIR}/arm-gnu-toolchain-12.3.rel1-${ARCH}-arm-none-eabi/bin/ | ||
|
||
echo $GCCPATH | ||
if test -d "${GCCPATH}"; then | ||
echo Using exising compiler ${GCCPATH} | ||
else | ||
pushd ${BASEDIR}/ | ||
./toolchain.sh | ||
popd | ||
fi | ||
export PATH=${PATH}:${GCCPATH} | ||
|
||
echo building with `arm-none-eabi-gcc -v 2>&1 | grep "^gcc"` | ||
|
||
|
||
# | ||
# Prepare and run clean build | ||
# | ||
rm -rf buck-out/ build/lib/ cmake-out/ | ||
rm -rf cmake-corstone | ||
mkdir cmake-corstone | ||
cd cmake-corstone | ||
|
||
#cmake -DBUCK2=buck2 .. | ||
|
||
#cmake --toolchain backends/arm/cmake/arm-none-eabi-gcc.cmake .. | ||
cmake -DFLATC_EXECUTABLE=flatc \ | ||
-DEXECUTORCH_BUILD_XNNPACK=OFF \ | ||
-DEXECUTORCH_BUILD_HOST_TARGETS=OFF \ | ||
-DEXECUTORCH_BUILD_ARM_BAREMETAL=ON \ | ||
-DCMAKE_SYSTEM_PROCESSOR=cortex-m55+nodsp+nofp \ | ||
-DETHOSU_TARGET_NPU_CONFIG=ethos-u55-128 \ | ||
--toolchain backends/arm/cmake/arm-none-eabi-gcc.cmake \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DEXECUTORCH_ENABLE_LOGGING_RELEASE_MODE=ON \ | ||
.. | ||
|
||
cd .. | ||
cmake --build cmake-corstone -j9 --target ethos_u ethosu_core_driver executorch portable_ops_lib portable_kernels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
# Copyright 2023 Arm Limited and/or its affiliates. | ||
# | ||
# This source code is licensed under the BSD-style license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
set -e | ||
|
||
# Cross compiler for Arm baremetal (e.g. Corestone-300 FVP or silcon) | ||
ARCH=$(uname -i) | ||
curl -o gcc.tar.xz https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu/12.3.rel1/binrel/arm-gnu-toolchain-12.3.rel1-${ARCH}-arm-none-eabi.tar.xz | ||
tar xf gcc.tar.xz | ||
export PATH=${PATH}:`(cd arm-gnu-toolchain-12.3.rel1-aarch64-arm-none-eabi/bin/; pwd)` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this same as -
core_platform/cmake/toolchain/arm-none-eabi-gcc.cmake
? But will respect cmdline vars?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd anticipate further changes and cleaning but it was derived from there, yes.
It has a similar override but for m55 our only current supported target. The way the toolchain file is constructed, some of the general ./configure like step in cmake was invoking it without an appropriate value so the default prevents the -mfpu flag which was the default set on an m4 target messing things up.