File tree 5 files changed +11
-12
lines changed
5 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 29
29
- export DEBIAN_FRONTEND=noninteractive
30
30
- apt-get update && apt-get install -y git build-essential cmake scons gcc-10 g++-10
31
31
- update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 1 && update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 1
32
- - .github/automation/build_acl.sh --version 21.11 --arch arm64-v8a --root-dir $(pwd)/ComputeLibrary
32
+ - .github/automation/build_acl.sh --version 22.02 --arch arm64-v8a --root-dir $(pwd)/ComputeLibrary
33
33
- .github/automation/build.sh --threading omp --mode Release --source-dir $(pwd) --build-dir $(pwd)/build --acl-dir $(pwd)/ComputeLibrary
34
34
- .github/automation/test.sh --test-kind gtest --build-dir $(pwd)/build --report-dir $(pwd)/report
35
35
83
83
- .github/automation/env/clang.sh
84
84
- export CC=clang
85
85
- export CXX=clang++
86
- - .github/automation/build_acl.sh --version 21.11 --arch arm64-v8a --root-dir $(pwd)/ComputeLibrary
86
+ - .github/automation/build_acl.sh --version 22.02 --arch arm64-v8a --root-dir $(pwd)/ComputeLibrary
87
87
- .github/automation/build.sh --threading omp --mode Release --source-dir $(pwd) --build-dir $(pwd)/build --acl-dir $(pwd)/ComputeLibrary
88
88
- .github/automation/test.sh --test-kind gtest --build-dir $(pwd)/build --report-dir $(pwd)/report
89
89
@@ -114,7 +114,7 @@ steps:
114
114
image : ubuntu:18.04
115
115
commands :
116
116
- apt-get update && apt-get install -y git build-essential cmake scons
117
- - .github/automation/build_acl.sh --version 21.11 --arch arm64-v8a --root-dir $(pwd)/ComputeLibrary
117
+ - .github/automation/build_acl.sh --version 22.02 --arch arm64-v8a --root-dir $(pwd)/ComputeLibrary
118
118
- .github/automation/build.sh --threading omp --mode Release --source-dir $(pwd) --build-dir $(pwd)/build --acl-dir $(pwd)/ComputeLibrary
119
119
- .github/automation/test.sh --test-kind gtest --build-dir $(pwd)/build --report-dir $(pwd)/report
120
120
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
# *******************************************************************************
4
- # Copyright 2020-2021 Arm Limited and affiliates.
4
+ # Copyright 2020-2022 Arm Limited and affiliates.
5
5
# SPDX-License-Identifier: Apache-2.0
6
6
#
7
7
# Licensed under the Apache License, Version 2.0 (the "License");
18
18
# *******************************************************************************
19
19
20
20
# Compute Library build defaults
21
- ACL_VERSION=" v21.11 "
21
+ ACL_VERSION=" v22.02 "
22
22
ACL_DIR=" ${PWD} /ComputeLibrary"
23
23
ACL_ARCH=" arm64-v8a"
24
24
47
47
readonly ACL_REPO=" https://github.com/ARM-software/ComputeLibrary.git"
48
48
MAKE_NP=" -j$( grep -c processor /proc/cpuinfo) "
49
49
50
- git clone $ACL_REPO $ACL_DIR
50
+ git clone --branch $ACL_VERSION --depth 1 $ACL_REPO $ACL_DIR
51
51
cd $ACL_DIR
52
- git checkout $ACL_VERSION
53
52
54
- scons $MAKE_NP Werror=0 debug=0 neon=1 gles_compute =0 embed_kernels=0 \
53
+ scons --silent $MAKE_NP Werror=0 debug=0 neon=1 opencl =0 embed_kernels=0 \
55
54
os=linux arch=$ACL_ARCH build=native
56
55
57
56
exit $?
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ integration. Compute Library is an open-source library for machine learning appl
92
92
and provides AArch64 optimized implementations of core functions. This functionality currently
93
93
requires that Compute Library is downloaded and built separately, see
94
94
[ Build from Source] ( https://oneapi-src.github.io/oneDNN/dev_guide_build.html ) . oneDNN is only
95
- compatible with Compute Library versions 21.11 or later.
95
+ compatible with Compute Library versions 22.02 or later.
96
96
97
97
> ** WARNING**
98
98
>
Original file line number Diff line number Diff line change 1
1
# ******************************************************************************
2
- # Copyright 2020-2021 Arm Limited and affiliates.
2
+ # Copyright 2020-2022 Arm Limited and affiliates.
3
3
# SPDX-License-Identifier: Apache-2.0
4
4
#
5
5
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -31,7 +31,7 @@ endif()
31
31
32
32
find_package (ACL REQUIRED)
33
33
34
- set (ACL_MINIMUM_VERSION "21.11 " )
34
+ set (ACL_MINIMUM_VERSION "22.02 " )
35
35
36
36
if (ACL_FOUND)
37
37
file (GLOB_RECURSE ACL_VERSION_FILE $ENV{ACL_ROOT_DIR} /*/arm_compute_version.embed)
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ For a debug build of oneDNN it is advisable to specify a Compute Library build
240
240
which has also been built with debug enabled.
241
241
242
242
@warning
243
- oneDNN is only compatible with Compute Library builds v21.11 or later.
243
+ oneDNN is only compatible with Compute Library builds v22.02 or later.
244
244
245
245
#### Vendor BLAS libraries
246
246
oneDNN can use a standard BLAS library for GEMM operations.
You can’t perform that action at this time.
0 commit comments