oneapi root #14
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
name: Build XPU extensions | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v2 | |
# make sure tags are fetched so we can get a version | |
- run: | | |
git fetch --prune --unshallow --tags | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Setup OneAPI | |
run: | | |
wget -nv https://registrationcenter-download.intel.com/akdlm/IRC_NAS/bb99984f-370f-413d-bbec-38928d2458f2/l_dpcpp-cpp-compiler_p_2024.0.2.29_offline.sh -P $HOME/basekit | |
chmod +x $HOME/basekit/l_dpcpp-cpp-compiler_p_2024.0.2.29_offline.sh | |
bash $HOME/basekit/l_dpcpp-cpp-compiler_p_2024.0.2.29_offline.sh -f "$HOME/basekit" -a --install-dir "$HOME/basekit" --eula=accept --silent | |
source $HOME/basekit/setvars.sh | |
export ONEAPI_ROOT=$HOME/basekit | |
- name: Setup MPI (mpich) | |
uses: mpi4py/setup-mpi@v1 | |
with: | |
mpi: mpich | |
- name: Install dependencies | |
run: | | |
echo $ONEAPI_ROOT | |
python -m pip install --upgrade pip | |
pip install setuptools wheel mpi4py cython | |
- name: Build XPU extensions | |
run: | | |
python setup.py build_ext --inplace |