Skip to content

Commit

Permalink
[BYOC] [ACL] Update ACL to 21.08 (#9396)
Browse files Browse the repository at this point in the history
This PR changes ACL version to v21.08

*ACL stands for "Compute Library for the Arm® Architecture"
  • Loading branch information
Mousius authored Nov 1, 2021
1 parent 0f8781c commit 1f8ef2a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docker/install/ubuntu_download_arm_compute_lib_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1f8ef2a

Please sign in to comment.