aboutsummaryrefslogtreecommitdiff
path: root/build-tool
diff options
context:
space:
mode:
authorCiara Sookarry <ciara.sookarry@arm.com>2023-09-20 12:10:31 +0100
committerCiara Sookarry <ciara.sookarry@arm.com>2023-09-22 17:12:24 +0100
commit4a43c9403306d10cd7905c9cbd1f4962655db001 (patch)
tree6f7632059782517c2c0aeac032083bd87bcf7162 /build-tool
parent76d0c4c6ff4f2dc71f9d3a73ad6f051d2562135b (diff)
downloadarmnn-4a43c9403306d10cd7905c9cbd1f4962655db001.tar.gz
IVGCVSW-8054 Update BuildTool to use TF2.14
* Update TF to 2.14 * Update Flatbuffers to 23.5.26 * BuildTool now clones ArmNN main branch instead of latest release Signed-off-by: Ciara Sookarry <ciara.sookarry@arm.com> Change-Id: I9c4e19655dce14ee817fb670f4ee9b5174eb4dcc
Diffstat (limited to 'build-tool')
-rwxr-xr-xbuild-tool/scripts/build-armnn.sh4
-rwxr-xr-xbuild-tool/scripts/common.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/build-tool/scripts/build-armnn.sh b/build-tool/scripts/build-armnn.sh
index 147aedfd55..0075bbad31 100755
--- a/build-tool/scripts/build-armnn.sh
+++ b/build-tool/scripts/build-armnn.sh
@@ -190,8 +190,8 @@ download_armnn()
rm -rf "$ARMNN_SRC"
- # Latest release branch of Arm NN is checked out by default
- git clone https://github.com/ARM-software/armnn.git armnn
+ # Main branch of Arm NN is checked out
+ git clone --branch main https://github.com/ARM-software/armnn.git armnn
cd "$ARMNN_SRC"
local armnn_branch="$(git rev-parse --abbrev-ref HEAD)"
diff --git a/build-tool/scripts/common.sh b/build-tool/scripts/common.sh
index 421dc3d8c8..0622d7e8ed 100755
--- a/build-tool/scripts/common.sh
+++ b/build-tool/scripts/common.sh
@@ -50,14 +50,14 @@ ANDROID64_COMPILER_FLAGS+="CC="$ANDROID64_x86_TOOLCHAIN"/bin/aarch64-linux-andro
CXX="$ANDROID64_x86_TOOLCHAIN"/bin/aarch64-linux-android"$ANDROID_API_VERSION"-clang++ "
# Flatbuffers
-FLATBUFFERS_VERSION=2.0.6
+FLATBUFFERS_VERSION=23.5.26
FLATBUFFERS_SRC="$SOURCE_DIR"/flatbuffers-"$FLATBUFFERS_VERSION"
FLATBUFFERS_BUILD_ROOT="$BUILD_DIR"/flatbuffers
FLATBUFFERS_BUILD_TARGET="$FLATBUFFERS_BUILD_ROOT"/"$TARGET_ARCH"_build
FLATBUFFERS_BUILD_HOST="$FLATBUFFERS_BUILD_ROOT"/"$HOST_ARCH"_build # Location of flatc compiler
# Tensorflow
-TENSORFLOW_VERSION="6f692f73cb2043b4a0b0446539cd8c15b3dd9220" #2.12 RC1 + PR #60015 to fix Cmake build.
+TENSORFLOW_VERSION=v2.14.0-rc1 # r2.14
TENSORFLOW_SRC="$SOURCE_DIR"/tensorflow
TFLITE_SRC="$TENSORFLOW_SRC"/tensorflow/lite
SCHEMA_SRC="$TFLITE_SRC"/schema/schema.fbs