Skip to content

Commit

Permalink
gpu ci 5
Browse files Browse the repository at this point in the history
  • Loading branch information
mspronesti committed Jul 29, 2024
1 parent 50b4e17 commit 245a9c7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 34 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/ci-dev-gpu.yml

This file was deleted.

36 changes: 22 additions & 14 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,33 @@
name: CI kernels (CPU)
name: CI kernels

on: [push, pull_request]

jobs:
setup:
runs-on: ubuntu-latest
name: Run all kernels (CPU)
strategy:
matrix:
os: [ubuntu-latest, devcloud] # self-hosted CPU runner on Intel devcloud

runs-on: ${{ matrix.os }}
# name should be "Run all kernels (CPU)" or "Run all kernels (GPU)" depending on matrix.os
name: Run all kernels ( if matrix.os == 'devcloud' then "GPU" else "CPU")
steps:
- uses: actions/checkout@v3
- uses: rscohn2/setup-oneapi@v0
# run this only if we are NOT on devcloud
- name: Install oneAPI
if: matrix.os == 'ubuntu-latest'
uses: rscohn2/setup-oneapi@v0
with:
list: true
components: |
icx
ifx
ccl
dnn
dpl
ippcp
mkl
tbb
list: true
components: |
icx
ifx
ccl
dnn
dpl
ippcp
mkl
tbb
- name: Setup variables
run: |
Expand Down

0 comments on commit 245a9c7

Please sign in to comment.