Skip to content

Commit 6ca2075

Browse files
author
Diptorup Deb
authored
Merge pull request #262 from Hardcode84/add-numba-mlir
Add back numba-mlir workloads
2 parents 7d809cd + 9d73845 commit 6ca2075

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/build_and_run.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
push:
1010
branches: [main]
1111

12+
env:
13+
WORKLOADS: python,numpy,dpnp,sycl,numba_n,numba_np,numba_npr,numba_dpex_k,numba_dpex_n,numba_dpex_p,numba_mlir_k,numba_mlir_n,numba_mlir_p
14+
1215
jobs:
1316
build_linux:
1417
name: Builds dpbench and runs the benchmarks
@@ -69,13 +72,9 @@ jobs:
6972
ls $(dirname $(dirname `which icx`))/bin-llvm || exit 1
7073
export NUMBA_DPEX_LLVM_SPIRV_ROOT=$(dirname $(dirname `which icx`))/bin-llvm
7174
72-
dpbench \
73-
-i python,numpy,dpnp,sycl,numba_n,numba_np,numba_npr,numba_dpex_k,numba_dpex_n,numba_dpex_p \
74-
run -r2 --no-print-results
75+
dpbench -i ${WORKLOADS} run -r2 --no-print-results || exit 1
7576
7677
- name: Generate report
7778
shell: bash -l {0}
7879
run: |
79-
dpbench \
80-
-i python,numpy,dpnp,sycl,numba_n,numba_np,numba_npr,numba_dpex_k,numba_dpex_n,numba_dpex_p \
81-
report || exit 1
80+
dpbench -i ${WORKLOADS} report || exit 1

0 commit comments

Comments
 (0)