Skip to content

[Tartan CI]: Add separate actions to nightly Tartan build to build portBLAS and portDNN #18

[Tartan CI]: Add separate actions to nightly Tartan build to build portBLAS and portDNN

[Tartan CI]: Add separate actions to nightly Tartan build to build portBLAS and portDNN #18

Workflow file for this run

# Simple workflow for running non-documentation PR testing
name: Build portBLAS
on:
pull_request:
paths:
- '.github/workflows/build_portBLAS.yml'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# build and run host x86_64, execute UnitCL and lit tests and build and run offline
build_portBLAS:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v3
# installs tools, ninja, installs llvm and sets up sccahe
- name: setup ubuntu
uses: ./.github/actions/setup_ubuntu_build
with:
llvm_version: 17
llvm_build_type: RelAssert
- name: Setup APT Repository
run: sudo add-apt-repository universe
- name: Update APT Cache
run: sudo apt-get update
- name: Install BLAS Library
run: sudo apt-get install -y libblas-dev libopenblas64-dev libopenblas-dev libpthread-stubs0-dev libboost-all-dev
- name: Find threads
run: |
cd cmake_threads_tr
cmake .
cd ..
find /usr/lib/x86_64-linux-gnu/ -name "*libopenblas.so*"
- name: Download Daily Release
run: |
wget "https://github.com/intel/llvm/releases/download/nightly-2023-10-17/sycl_linux.tar.gz"
- name: Untar Tar File
run: |
mkdir linux_nightly_release
tar -xzf sycl_linux.tar.gz -C linux_nightly_release
ls
- name: Clone portBLAS
run: |
git clone --recursive -b marya/try https://github.com/MaryaSharf/portBLAS
- name: Set up Environment
run: |
ls
export LD_LIBRARY_PATH=$(pwd)/linux_nightly_release/compiler/linux/lib:$(pwd)/linux_nightly_release/compiler/linux/compiler/lib/intel64_lin:$LD_LIBRARY_PATH
export CMAKE_PREFIX_PATH=/usr/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu/openblas64-pthread
export CMAKE_INSTALL_PREFIX=/usr/lib/x86_64-linux-gnu/openblas64-pthread
export CXX=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang++
export CC=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang
export CMAKE_CXX_COMPILER=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang++
export CMAKE_C_COMPILER=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang
- name: Build portBLAS
run: |
export CXX=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang++
export CC=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang
export CMAKE_CXX_COMPILER=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang++
export CMAKE_C_COMPILER=$(pwd)/linux_nightly_release/compiler/linux/bin-llvm/clang
rm -rf portBLAS_build_dir
cmake -B portBlAS_build_dir portBLAS -GNinja -DSYCL_COMPILER=dpcpp -DOPENBLAS_INCLUDE_DIRS="/usr/include/x86_64-linux-gnu/openblas64-pthread" -DOPENBLAS_LIBRARIES="/usr/lib/x86_64-linux-gnu/openblas64-pthread/libopenblas.so"
ninja -C portBLAS_build_dir