Skip to content

attemp 5

attemp 5 #6

Workflow file for this run

name: oneAPI-build
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-latest
name: Install OneAPI tools
steps:
- uses: actions/checkout@v3
- uses: rscohn2/setup-oneapi@v0
with:
list: true
components: |
icx
ifx
ccl
dnn
dpl
ippcp
mkl
tbb
- name: Setup vars
run: |
source /opt/intel/oneapi/setvars.sh
- name: Build kernels
run: |
cd dev/sycl
# Use the Intel DPC++ compiler (icpx) and run make
make CC=icx
- name: Run kernels
run: |
cd dev/sycl
make run_all CC=icx