-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[infra/onert] Disable ACL build as default (#14453)
This commit disables ACL build as default. It will be enabled when target is aarch32/64 and OS is android or linux. ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <[email protected]>
- Loading branch information
Showing
12 changed files
with
11 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# aarch64 android cmake options | ||
# | ||
option(BUILD_ARMCOMPUTE "Build ARM Compute from the downloaded source" ON) | ||
option(DOWNLOAD_ARMCOMPUTE "Download ARM Compute source" ON) | ||
|
||
option(BUILD_ANDROID_BENCHMARK_APP "Enable Android Benchmark App" ON) | ||
option(DOWNLOAD_NEON2SSE "Download NEON2SSE library source" OFF) |
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
# | ||
# aarch64 linux cmake options | ||
# | ||
option(BUILD_ARMCOMPUTE "Build ARM Compute from the downloaded source" ON) | ||
option(DOWNLOAD_ARMCOMPUTE "Download ARM Compute source" ON) | ||
|
||
option(DOWNLOAD_NEON2SSE "Download NEON2SSE library source" OFF) | ||
option(DOWNLOAD_PYBIND11 "Download Pybind11 source" ON) | ||
option(BUILD_PYTHON_BINDING "Build python binding" ON) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# | ||
# x86_64 linux cmake options | ||
# | ||
option(BUILD_ARMCOMPUTE "Build ARM Compute from the downloaded source" OFF) | ||
option(DOWNLOAD_ARMCOMPUTE "Download ARM Compute source" OFF) | ||
option(BUILD_XNNPACK "Build XNNPACK" OFF) |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
# | ||
# x86_64 linux cmake options | ||
# | ||
option(BUILD_ARMCOMPUTE "Build ARM Compute from the downloaded source" OFF) | ||
option(BUILD_XNNPACK "Build XNNPACK" OFF) | ||
option(DOWNLOAD_ARMCOMPUTE "Download ARM Compute source" OFF) | ||
option(DOWNLOAD_PYBIND11 "Download Pybind11 source" ON) | ||
option(BUILD_PYTHON_BINDING "Build python binding" ON) |
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