gpu ci 2 #9
Workflow file for this run
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: CI kernels (CPU) | |
on: [push, pull_request] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
name: Run all kernels (CPU) | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: rscohn2/setup-oneapi@v0 | |
with: | |
list: true | |
components: | | |
icx | |
ifx | |
ccl | |
dnn | |
dpl | |
ippcp | |
mkl | |
tbb | |
- name: Setup variables | |
run: | | |
source /opt/intel/oneapi/setvars.sh | |
printenv >> $GITHUB_ENV | |
- name: Build kernels | |
run: | | |
cd dev/sycl | |
make CC=icx | |
- name: Run kernels | |
run: | | |
cd dev/sycl | |
make run_all CC=icx |