-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Hamza Butt <hamza.butt@arm.com>
- Loading branch information
1 parent
ded1195
commit c588413
Showing
3 changed files
with
191 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
#! /bin/bash | ||
|
||
# ******************************************************************************* | ||
# Copyright 2024 Arm Limited and affiliates. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ******************************************************************************* | ||
|
||
set -e | ||
# Get the script's filename | ||
|
||
WORKSPACE=${GITHUB_WORKSPACE:-$(pwd)} | ||
echo "github workspace $GITHUB_WORKSPACE" | ||
|
||
os_type=$(uname) | ||
|
||
ACL_WITH_ASSERTS=${ACL_WITH_ASSERTS:-0} | ||
ACL_VERSION=${ACL_VERSION:-v24.08.1} | ||
|
||
if [[ "$os_type" == "Linux" ]]; then | ||
echo "This machine is running Linux" | ||
ARCHIVE="arm_compute-${ACL_VERSION}-linux-aarch64-cpu-bin.tar.gz" | ||
elif [[ "$os_type" == "Darwin" ]]; then | ||
echo "This machine is running macOS" | ||
ARCHIVE="arm_compute-${ACL_VERSION}-macos-aarch64-cpu-bin.tar.gz" | ||
else | ||
echo "Unknown OS: $os_type" | ||
exit 1 | ||
fi | ||
|
||
# Set version and root directory | ||
export ACL_ROOT_DIR="${WORKSPACE}/ComputeLibrary" | ||
|
||
echo "ACL_VERSION: ${ACL_VERSION}" | ||
echo "ACL_DIR_NAME: ${ACL_DIR_NAME}" | ||
echo "ACL_ROOT_DIR: ${ACL_ROOT_DIR}" | ||
echo "ACL_WITH_ASSERTS: ${ACL_WITH_ASSERTS}" | ||
|
||
# Download the specified Compute Library version | ||
if [[ ! -f $ARCHIVE ]]; then | ||
ACL_URL="https://github.com/ARM-software/ComputeLibrary/releases/download/${ACL_VERSION}/${ARCHIVE}" | ||
echo "Downloading ACL from ${ACL_URL}" | ||
wget ${ACL_URL} | ||
else | ||
echo "$ARCHIVE already exists, skipping download." | ||
fi | ||
|
||
# Function to find the appropriate lib directory | ||
find_acl_lib_dir() { | ||
local dirs=("$ACL_ROOT_DIR"/lib/*/) | ||
local selected_dir="" | ||
|
||
# Select directory based on build type | ||
for dir in "${dirs[@]}"; do | ||
if [[ $ACL_WITH_ASSERTS == 1 ]]; then | ||
[[ "$dir" == *"-asserts/" ]] && selected_dir="$dir" && break | ||
else | ||
[[ "$dir" != *"-asserts/" ]] && selected_dir="$dir" && break | ||
fi | ||
done | ||
|
||
# Return result or exit if not found | ||
if [[ -z "$selected_dir" ]]; then | ||
echo "No matching ACL lib directory found." | ||
exit 1 | ||
else | ||
echo "$selected_dir" | ||
fi | ||
} | ||
|
||
# Extract the tarball if not already extracted | ||
if [[ ! -d $ACL_ROOT_DIR ]]; then | ||
mkdir -p $ACL_ROOT_DIR | ||
tar -xzvf "${ARCHIVE}" -C $ACL_ROOT_DIR --strip-components=1 >/dev/null 2>&1 | ||
else | ||
echo "$ACL_ROOT_DIR directory already exists, skipping extraction." | ||
fi | ||
|
||
# Find the ACL library directory | ||
ACL_LIB_DIR=$(find_acl_lib_dir) | ||
echo "Using ACL lib from ${ACL_LIB_DIR}" | ||
echo "cp contents from ${ACL_LIB_DIR} to ${ACL_ROOT_DIR}/lib" | ||
cp -rf "$ACL_LIB_DIR"* "$ACL_ROOT_DIR/lib/" | ||
|
||
echo "${ACL_VERSION}" >"${ACL_ROOT_DIR}/arm_compute/arm_compute_version.embed" |
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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
# ******************************************************************************* | ||
# Copyright 2024 Arm Limited and affiliates. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ******************************************************************************* | ||
|
||
#* To avoid duplicate jobs running when both push and PR is satisfied, we use this: | ||
#* https://github.com/orgs/community/discussions/26940#discussioncomment-5686753 | ||
on: | ||
push: | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
|
||
#* Stop stale workflows when pull requests are updated: https://stackoverflow.com/a/70972844 | ||
#* Does not apply to the main branch. | ||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-14 | ||
strategy: | ||
matrix: | ||
compiler: [ | ||
{CC: clang, CXX: clang++}, | ||
{CC: gcc-14, CXX: g++-14} | ||
] | ||
config: [ | ||
{CMAKE_BUILD_TYPE: Debug, ACL_WITH_ASSERTS: '1'}, | ||
{CMAKE_BUILD_TYPE: Release, ACL_WITH_ASSERTS: '0'} | ||
] | ||
steps: | ||
- name: Get number of CPU cores | ||
uses: SimenB/github-actions-cpu-cores@v2 | ||
id: cpu-cores | ||
- name: Checkout oneDNN | ||
uses: actions/checkout@v4 | ||
with: | ||
path: oneDNN | ||
# ACL is built with clang, so we can link with it directly if we are using | ||
# clang as well. | ||
- if: matrix.compiler.CC == 'clang' | ||
name: Download and Extract ACL | ||
run: ${{ github.workspace }}/oneDNN/.github/automation/get_acl.sh | ||
env: | ||
ACL_WITH_ASSERTS: ${{ matrix.config.ACL_WITH_ASSERTS }} | ||
ACL_VERSION: ${{ github.event.inputs.ACL_VERSION || 'v24.08.1' }} | ||
# If we are building with gcc, we need to clone and build ACL ourselves to | ||
# link properly. | ||
- if: contains( matrix.compiler.CC , 'gcc' ) | ||
name: Install Scons | ||
uses: threeal/pipx-install-action@v1.0.0 | ||
with: | ||
packages: scons | ||
- if: contains( matrix.compiler.CC , 'gcc' ) | ||
name: Checkout ACL | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ARM-software/ComputeLibrary | ||
ref: 'v24.08.1' | ||
path: ComputeLibrary | ||
- if: contains( matrix.compiler.CC , 'gcc' ) | ||
name: Build ACL | ||
working-directory: ${{ github.workspace }}/ComputeLibrary | ||
run: scons Werror=1 -j${{ steps.cpu-cores.outputs.count }} neon=1 opencl=0 os=macos arch=armv8.2-a build=native cppthreads=0 openmp=0 examples=0 validation_tests=0 | ||
env: | ||
CC: ${{ matrix.compiler.CC }} | ||
CXX: ${{ matrix.compiler.CXX }} | ||
- name: Configure oneDNN | ||
run: cmake -B${{ github.workspace }}/oneDNN/build -S${{ github.workspace }}/oneDNN -DDNNL_AARCH64_USE_ACL=ON -DONEDNN_BUILD_GRAPH=0 -DONEDNN_WERROR=OFF -DDNNL_BUILD_FOR_CI=ON -DCMAKE_BUILD_TYPE=${{ matrix.config.CMAKE_BUILD_TYPE }} | ||
working-directory: ${{ github.workspace }}/oneDNN | ||
env: | ||
DYLD_LIBRARY_PATH: ${{ github.workspace }}/ComputeLibrary/lib | ||
ACL_ROOT_DIR: ${{ github.workspace }}/ComputeLibrary | ||
CC: ${{ matrix.compiler.CC }} | ||
CXX: ${{ matrix.compiler.CXX }} | ||
- name: Build oneDNN | ||
run: cmake --build ${{ github.workspace }}/oneDNN/build -j${{ steps.cpu-cores.outputs.count }} | ||
working-directory: ${{ github.workspace }}/oneDNN | ||
env: | ||
DYLD_LIBRARY_PATH: ${{ github.workspace }}/ComputeLibrary/lib | ||
ACL_ROOT_DIR: ${{ github.workspace }}/ComputeLibrary |
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