-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ock artefact building, icd building and tornado run for planned t…
…esting Added planned testing which is intended to run long running scheduled tests. Added a base which they can all use which allows all jobs to follow a similar method of using a matrix, a named target and a flag which dictates what tests are enabled. icd, ock artefacts and tornado are done as part of this. Fixed github action ninja to be a set hash
- Loading branch information
Showing
12 changed files
with
461 additions
and
23 deletions.
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
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,46 @@ | ||
name: calc vars | ||
description: calculate variables based off the target name that may be useful in other steps | ||
|
||
inputs: | ||
target: | ||
description: 'target architecture' | ||
|
||
outputs: | ||
arch: | ||
description: "base architecture - one of x86, x86_64, arm, aarch64 or riscv64" | ||
value: ${{ steps.calc_vars_action.outputs.arch }} | ||
toolchain: | ||
description: "path to toolchain file for architecture" | ||
value: ${{ steps.calc_vars_action.outputs.toolchain }} | ||
cmake_toolchain: | ||
description: "cmake argument to pass to CMAKE_TOOLCHAIN_FILE" | ||
value: ${{ steps.calc_vars_action.outputs.cmake_toolchain }} | ||
runs: | ||
using: "composite" | ||
steps: | ||
- shell: bash | ||
id: calc_vars_action | ||
run: | | ||
ARCH= | ||
TOOLCHAIN= | ||
CMAKE_TOOLCHAIN= | ||
if [[ "${{inputs.target}}" = "host_x86_64_linux" ]]; then | ||
ARCH=x86_64 >> $GITHUB_OUTPUT | ||
elif [[ "${{inputs.target}}" = "host_x86_64_windows" ]]; then | ||
ARCH=x86_64 >> $GITHUB_OUTPUT | ||
elif [[ "${{inputs.target}}" = "host_aarch64_linux" ]]; then | ||
ARCH=aarch64 >> $GITHUB_OUTPUT | ||
TOOLCHAIN=$GITHUB_WORKSPACE/platform/arm-linux/aarch64-toolchain.cmake | ||
CMAKE_TOOLCHAIN="--toolchain $TOOLCHAIN" | ||
elif [[ "${{inputs.target}}" = "host_riscv64_linux" ]]; then | ||
ARCH=riscv64 >> $GITHUB_OUTPUT | ||
TOOLCHAIN=$GITHUB_WORKSPACE/platform/riscv64-linux/riscv64-toolchain.cmake | ||
CMAKE_TOOLCHAIN="--toolchain $TOOLCHAIN" | ||
else | ||
echo Unknown target ${{inputs.target}} | ||
exit 1 | ||
fi | ||
echo "arch=$ARCH" >> $GITHUB_OUTPUT | ||
echo "toolchain=$TOOLCHAIN" >> $GITHUB_OUTPUT | ||
echo "cmake_toolchain=$CMAKE_TOOLCHAIN" >> $GITHUB_OUTPUT | ||
cat $GITHUB_OUTPUT |
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,72 @@ | ||
name: pull and build opencl icd loader | ||
description: pull icd loader and build with a particular toolchain, uploading opencl header and icd artefacts | ||
|
||
inputs: | ||
target: | ||
description: 'target architecture' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: calc vars | ||
id: calc_vars | ||
uses: ./.github/actions/calc_vars | ||
with: | ||
target: ${{ inputs.target }} | ||
|
||
- name: Install Ninja | ||
uses: llvm/actions/install-ninja@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch | ||
|
||
- name: clone headers | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: KhronosGroup/OpenCL-Headers | ||
path: headers | ||
|
||
- name: cmake headers | ||
shell: bash | ||
run: | ||
cmake headers -Bheaders/build_${{steps.calc_vars.outputs.arch}} | ||
-DCMAKE_TOOLCHAIN_FILE=${{ steps.calc_vars.outputs.toolchain }} | ||
-DCMAKE_INSTALL_PREFIX=$PWD/headers_install_${{steps.calc_vars.outputs.arch}} | ||
-GNinja | ||
- name: ninja install headers | ||
shell: bash | ||
run: | ||
ninja -v -C headers/build_${{steps.calc_vars.outputs.arch}} install | ||
|
||
- name: upload header artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: header_${{inputs.target}} | ||
path: headers_install_${{steps.calc_vars.outputs.arch}} | ||
retention-days: 1 | ||
|
||
- name: clone icd | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: KhronosGroup/OpenCL-ICD-Loader | ||
path: icd | ||
|
||
- name: icd cmake | ||
shell: bash | ||
run: | ||
cmake icd -B icd/build_${{steps.calc_vars.outputs.arch}} | ||
-DCMAKE_TOOLCHAIN_FILE=${{ steps.calc_vars.outputs.toolchain }} | ||
-DCMAKE_BUILD_TYPE=${{ inputs.build_type }} | ||
-DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/install_icd_${{steps.calc_vars.outputs.arch}} | ||
-DOpenCLHeaders_DIR=$GITHUB_WORKSPACE/headers_install_${{steps.calc_vars.outputs.arch}}/share/cmake/OpenCLHeaders | ||
-GNinja | ||
|
||
- name: icd build | ||
shell: bash | ||
run: | ||
ninja -v -C icd/build_${{steps.calc_vars.outputs.arch}} install | ||
|
||
- name: upload icd artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: icd_${{inputs.target}} | ||
path: install_icd_${{steps.calc_vars.outputs.arch}} | ||
retention-days: 1 | ||
|
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,71 @@ | ||
name: build-ock-artefacts | ||
description: Action to build the oneapi-construction-kit as an artefact | ||
|
||
# Note we need to support llvm tip at some point | ||
|
||
inputs: | ||
llvm_version: | ||
description: 'llvm version we want to use (18-19)' | ||
default: '19' | ||
target: | ||
description: 'target architecture' | ||
|
||
# TODO: This has not been tested yet on windows so would likely need some updating. | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: calc vars | ||
id: calc_vars | ||
uses: ./.github/actions/calc_vars | ||
with: | ||
target: ${{ inputs.target }} | ||
|
||
- name: print vars | ||
shell: bash | ||
run: | | ||
echo arch = ${{steps.calc_vars.outputs.arch}} | ||
echo toolchain = ${{steps.calc_vars.outputs.toolchain}} | ||
# installs tools, ninja, installs llvm and sets up sccache | ||
- name: setup | ||
uses: ./.github/actions/setup_build | ||
with: | ||
llvm_version: ${{ inputs.llvm_version }} | ||
llvm_build_type: RelAssert | ||
cross_arch: ${{ steps.calc_vars.outputs.arch == 'x86_64' && 'none' || steps.calc_vars.outputs.arch }} | ||
|
||
- name: build ock x86 | ||
if: steps.calc_vars.outputs.arch == 'x86_64' | ||
uses: ./.github/actions/do_build_ock | ||
with: | ||
build_targets: install | ||
offline_kernel_tests: OFF | ||
extra_flags: -DCA_ENABLE_TESTS=OFF -DCA_ENABLE_EXAMPLES=OFF -DCA_ENABLE_DOCUMENTATION=OFF | ||
|
||
- name: build ock other ${{ matrix.target }} | ||
if: steps.calc_vars.outputs.arch != 'x86_64' | ||
uses: ./.github/actions/do_build_ock | ||
with: | ||
build_targets: install | ||
toolchain_file: ${{ steps.calc_vars.outputs.toolchain }} | ||
extra_flags: -DCA_BUILTINS_TOOLS_DIR=${{ github.workspace }}/llvm_install_native/bin -DCA_ENABLE_TESTS=OFF -DCA_ENABLE_EXAMPLES=OFF -DCA_ENABLE_DOCUMENTATION=OFF | ||
# Do we need the offline kernel as an artefact? If so currently this requires an external clc or qemu to be installed. | ||
offline_kernel_tests: OFF | ||
host_fp16: ON | ||
|
||
# Prune it as there is too much things in there we don't want to use | ||
# Todo: move this logic to cmake settings so that we build only what we | ||
# want to install. As time goes on we may want to install more. | ||
- name: prune ock artefact | ||
shell: bash | ||
run: | | ||
# delete all but city runner and the python associated file under bin | ||
find install/bin -maxdepth 1 -type f ! -name "*.py" -delete | ||
rm -rf install/share | ||
- name: upload ock artefact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ock_${{ inputs.target }} | ||
path: install | ||
retention-days: 1 |
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,69 @@ | ||
name: build tornado | ||
description: build tornado | ||
|
||
inputs: | ||
target: | ||
description: 'target architecture' | ||
|
||
runs: | ||
# We don't want a new docker just a list of steps, so mark as composite | ||
using: "composite" | ||
steps: | ||
- name: calc vars | ||
id: calc_vars | ||
uses: ./.github/actions/calc_vars | ||
with: | ||
target: ${{ inputs.target }} | ||
|
||
- name: Install Ninja | ||
uses: llvm/actions/install-ninja@a1ea791b03c8e61f53a0e66f2f73db283aa0f01e # main branch | ||
|
||
- name: download icd artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: icd_${{inputs.target}} | ||
path: install_icd | ||
|
||
# Get maven | ||
- name: fetch maven | ||
shell: bash | ||
run: | | ||
wget https://archive.apache.org/dist/maven/maven-3/3.9.3/binaries/apache-maven-3.9.3-bin.tar.gz | ||
tar xf apache-maven-3.9.3-bin.tar.gz | ||
# TODO: setup correctly for our aarch64 runner | ||
- name: select jdk21 | ||
if: steps.calc_vars.outputs.arch == 'x86_64' | ||
shell: bash | ||
run: | | ||
sudo update-java-alternatives -s temurin-21-jdk-amd64 | ||
pip install tqdm | ||
- name: clone TornadoVM | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: beehive-lab/TornadoVM | ||
path: TornadoVM_build | ||
ref: develop | ||
|
||
- name: build tornadovm | ||
shell: bash | ||
run: | | ||
export JAVA_HOME=`readlink -f $(command -v java) | sed 's/\/bin\/java//'` | ||
export TORNADO_SDK=$GITHUB_WORKSPACE/TornadoVM_build/bin/sdk | ||
export PATH=$PWD/apache-maven-3.9.3/bin:$PATH | ||
mvn -v | ||
java --version | ||
cd TornadoVM_build | ||
# The tornado build system links in OpenCL assuming it's in a known place. This gets around | ||
# this by pass CXX as an environment variable as it's difficult to change the build system | ||
# even if we don't use this script. | ||
CXX="g++ -L$GITHUB_WORKSPACE/install_icd/lib" make -j8 jdk21 BACKEND=opencl | ||
cp -r -L $TORNADO_SDK $GITHUB_WORKSPACE/TornadoVM_SDK | ||
- name: upload tornado artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: tornado_${{inputs.target}} | ||
path: TornadoVM_SDK | ||
retention-days: 1 |
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,34 @@ | ||
name: run tornado | ||
description: run tornado | ||
|
||
# This action is not standalone and assumes it has been run after the build_tornado action | ||
# and that the icd is already installed at install_icd | ||
inputs: | ||
target: | ||
description: 'target architecture' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Download ock artefact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ock_${{inputs.target}} | ||
path: install_ock | ||
|
||
- name: Run tornado example | ||
shell: bash | ||
run: | | ||
export ARTEFACT_CHECKOUT_PATH=$GITHUB_WORKSPACE/install_ock | ||
export ICD_LOADER_INSTALL_PATH=$GITHUB_WORKSPACE/install_icd | ||
export LD_LIBRARY_PATH=$ICD_LOADER_INSTALL_PATH/lib:$LD_LIBRARY_PATH | ||
echo $LD_LIBRARY_PATH | ||
export OCL_ICD_FILENAMES=$ARTEFACT_CHECKOUT_PATH/lib/libCL.so | ||
export JAVA_HOME=`readlink -f $(command -v java) | sed 's/\/bin\/java//'` | ||
export TORNADO_SDK=$GITHUB_WORKSPACE/TornadoVM_build/bin/sdk | ||
export PATH=$TORNADO_SDK/bin:$PATH | ||
git clone https://github.com/beehive-lab/TornadoVM.git -b develop --depth 1 | ||
cd TornadoVM | ||
CA_HOST_DUMP_ASM=1 tornado --printKernel --threadInfo -m tornado.examples/uk.ac.manchester.tornado.examples.compute.MatrixMultiplication2D 256 |
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
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
Oops, something went wrong.