forked from neo-ai/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RUNTIME] Initial implementation of Hexagon runtime support (apache#5252
) * [RUNTIME] Initial implementation of Hexagon runtime support This is only the TVM runtime. The FastRPC libraries, simulator driver, etc. will be provided in subsequent commits. * Fix pylint complaints * Fix some more pylint complaints * Add link to the Hexagon SDK website * Extract VTCM marker into a common variable * Implement device->device memory copy * Disable unsigned PDs by default * Ensure that --hvx_length is present in sim_args if HVX is enabled * Remove the line about clang from README.md Apparently things work with libstdc++. * Mention to set USE_RPC=OFF when building libtvm_runtime.so for Hexagon * Remember to use codegen_hvx in validate_hvx_length * Add a line about minimum version of LLVM
- Loading branch information
Krzysztof Parzyszek
authored and
Trevor Morris
committed
Apr 16, 2020
1 parent
e7d4a77
commit 730af76
Showing
29 changed files
with
4,341 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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 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 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,96 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
set(PICK_SIM "sim") | ||
set(PICK_HW "target") | ||
set(PICK_NONE "OFF") | ||
|
||
function(find_hexagon_toolchain) | ||
if (NOT "${USE_HEXAGON_TOOLCHAIN}" STREQUAL "") | ||
set(TRY_PATH "${USE_HEXAGON_TOOLCHAIN}") | ||
else() | ||
set(TRY_PATH "${USE_HEXAGON_SDK}") | ||
endif() | ||
message(STATUS "Looking for Hexagon toolchain in ${TRY_PATH}") | ||
file(GLOB_RECURSE HEXAGON_CLANG "${TRY_PATH}/*/hexagon-clang++") | ||
if(HEXAGON_CLANG) | ||
# The path is ${HEXAGON_TOOLCHAIN}/bin/hexagon-clang++. | ||
get_filename_component(HEXAGON_TMP0 "${HEXAGON_CLANG}" DIRECTORY) | ||
get_filename_component(HEXAGON_TMP1 "${HEXAGON_TMP0}" DIRECTORY) | ||
set(HEXAGON_TOOLCHAIN "${HEXAGON_TMP1}" CACHE PATH | ||
"Path to the Hexagon toolchain") | ||
else(HEXAGON_CLANG) | ||
message(SEND_ERROR "Cannot find Hexagon toolchain in ${TRY_PATH}") | ||
endif() | ||
endfunction() | ||
|
||
function(find_hexagon_sdk_root) | ||
message(STATUS "Checking Hexagon SDK root: ${USE_HEXAGON_SDK}") | ||
file(GLOB_RECURSE HEXAGON_AEESTDDEF "${USE_HEXAGON_SDK}/*/AEEStdDef.h") | ||
if(HEXAGON_AEESTDDEF) | ||
# The path is ${HEXAGON_SDK_ROOT}/incs/stddef/AEEStdDef.h. | ||
get_filename_component(HEXAGON_TMP0 "${HEXAGON_AEESTDDEF}" DIRECTORY) | ||
get_filename_component(HEXAGON_TMP1 "${HEXAGON_TMP0}" DIRECTORY) | ||
get_filename_component(HEXAGON_TMP2 "${HEXAGON_TMP1}" DIRECTORY) | ||
set(HEXAGON_SDK_ROOT "${HEXAGON_TMP2}" CACHE PATH | ||
"Root directory of Hexagon SDK") | ||
else(HEXAGON_AEESTDDEF) | ||
message(SEND_ERROR "Cannot validate Hexagon SDK in ${USE_HEXAGON_SDK}") | ||
endif() | ||
endfunction() | ||
|
||
if(USE_HEXAGON_DEVICE STREQUAL "OFF") | ||
list(APPEND COMPILER_SRCS src/target/opt/build_hexagon_off.cc) | ||
return() | ||
elseif(NOT USE_HEXAGON_DEVICE STREQUAL "${PICK_SIM}" AND | ||
NOT USE_HEXAGON_DEVICE STREQUAL "${PICK_HW}") | ||
set(ERROR_MSG | ||
"USE_HEXAGON_DEVICE must be one of [${PICK_NONE}|${PICK_SIM}|${PICK_HW}]") | ||
message(SEND_ERROR "${ERROR_MSG}") | ||
return() | ||
endif() | ||
# If USE_HEXAGON_DEVICE is set to a valid value, make sure that USE_HEXAGON_SDK | ||
# is defined. | ||
if (NOT USE_HEXAGON_SDK) | ||
message(SEND_ERROR "Please set USE_HEXAGON_SDK to the Hexagon SDK root") | ||
return() | ||
endif() | ||
|
||
if(USE_HEXAGON_DEVICE STREQUAL "${PICK_SIM}") | ||
find_hexagon_toolchain() | ||
message(STATUS "Hexagon toolchain: ${HEXAGON_TOOLCHAIN}") | ||
file(GLOB RUNTIME_HEXAGON_SIM_SRCS src/runtime/hexagon/sim/*.cc) | ||
include_directories("${HEXAGON_TOOLCHAIN}/include/iss") | ||
link_directories("${HEXAGON_TOOLCHAIN}/lib/iss") | ||
list(APPEND TVM_RUNTIME_LINKER_LIBS "-lwrapper") | ||
elseif(USE_HEXAGON_DEVICE STREQUAL "${PICK_HW}") | ||
find_hexagon_sdk_root() | ||
find_hexagon_toolchain() | ||
message(STATUS "Hexagon SDK: ${HEXAGON_SDK_ROOT}") | ||
file(GLOB RUNTIME_HEXAGON_DEVICE_SRCS src/runtime/hexagon/target/*.cc) | ||
include_directories("${HEXAGON_SDK_ROOT}/incs/stddef") | ||
include_directories("${HEXAGON_SDK_ROOT}/libs/common/rpcmem/inc") | ||
include_directories( | ||
"${HEXAGON_SDK_ROOT}/libs/common/remote/ship/android_Release_aarch64") | ||
include_directories("${HEXAGON_TOOLCHAIN}/include/iss") | ||
list(APPEND TVM_RUNTIME_LINKER_LIBS "-ldl") | ||
endif() | ||
|
||
file(GLOB RUNTIME_HEXAGON_SRCS src/runtime/hexagon/*.cc) | ||
list(APPEND RUNTIME_SRCS ${RUNTIME_HEXAGON_SRCS} ${RUNTIME_HEXAGON_SIM_SRCS} | ||
${RUNTIME_HEXAGON_DEVICE_SRCS}) | ||
|
This file contains 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 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 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 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 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 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 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 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
Oops, something went wrong.