From e47a976079b13fb3cd24bb27e49d9dbb1b4a112a Mon Sep 17 00:00:00 2001 From: Chris Sidebottom Date: Thu, 28 Oct 2021 14:45:49 +0100 Subject: [PATCH] [BYOC] [ACL] Update ACL to 21.08 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR changes ACL version to v21.08 *ACL stands for "Compute Library for the ArmĀ® Architecture" --- .../ubuntu_download_arm_compute_lib_binaries.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docker/install/ubuntu_download_arm_compute_lib_binaries.sh b/docker/install/ubuntu_download_arm_compute_lib_binaries.sh index c68654c75392..5097fad3d0b6 100755 --- a/docker/install/ubuntu_download_arm_compute_lib_binaries.sh +++ b/docker/install/ubuntu_download_arm_compute_lib_binaries.sh @@ -27,17 +27,19 @@ if [ "$architecture_type" != "aarch64" ]; then gcc-aarch64-linux-gnu fi -compute_lib_version="v21.05" +compute_lib_version="v21.08" +compute_lib_variant="arm64-v8a-neon" +compute_lib_full_name="arm_compute-${compute_lib_version}-bin-linux-${compute_lib_variant}" compute_lib_base_url="https://github.com/ARM-software/ComputeLibrary/releases/download/${compute_lib_version}" -compute_lib_file_name="arm_compute-${compute_lib_version}-bin-linux.tar.gz" +compute_lib_file_name="${compute_lib_full_name}.tar.gz" compute_lib_download_url="${compute_lib_base_url}/${compute_lib_file_name}" -target_lib="linux-arm64-v8a-neon" +target_lib="${compute_lib_variant}" # uncomment line below if you need asserts/debug version of the library # target_lib="${target_lib}-asserts" -extract_dir="arm_compute-${compute_lib_version}-bin-linux" +extract_dir="${compute_lib_full_name}" install_path="/opt/acl" tmpdir=$(mktemp -d)