Skip to content

Commit 6a305da

Browse files
committed
Use new runner with Arc
1 parent 7f5eb53 commit 6a305da

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.github/workflows/nightly.yml

+14
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,7 @@ jobs:
334334
os: "['ubuntu-22.04', 'ubuntu-24.04', 'ubuntu-24.10']"
335335

336336
Benchmarks:
337+
if: false
337338
uses: ./.github/workflows/reusable_benchmarks.yml
338339
permissions:
339340
contents: write
@@ -342,6 +343,19 @@ jobs:
342343
pr_no: '0'
343344
bench_script_params: '--save Baseline_PVC'
344345

346+
Benchmarks-sycl:
347+
uses: ./.github/workflows/reusable_benchmarks.yml
348+
permissions:
349+
contents: write
350+
pull-requests: write
351+
with:
352+
pr_no: '0'
353+
bench_script_params: '--sycl sycl
354+
--adapter level_zero
355+
--exit-on-failure
356+
--preset Minimal'
357+
runner: 'L0_PERF_GPU'
358+
345359
SYCL:
346360
if: false
347361
uses: ./.github/workflows/reusable_sycl.yml

.github/workflows/reusable_benchmarks.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
129129
- name: Install benchmarking scripts deps
130130
run: |
131-
python -m venv .venv
131+
python3 -m venv .venv
132132
source .venv/bin/activate
133133
pip install -r ${{github.workspace}}/sc/devops/scripts/benchmarks/requirements.txt
134134
@@ -172,7 +172,7 @@ jobs:
172172
env:
173173
LD_LIBRARY_PATH: ${{ env.SYCL_DIR }}/lib
174174
SYCL_UR_TRACE: 1
175-
SYCL_UR_USE_LEVEL_ZERO_V2: 1
175+
SYCL_UR_USE_LEVEL_ZERO_V2: 0
176176
run: ${{ env.SYCL_DIR }}/bin/sycl-ls
177177

178178
- name: Run benchmarks
@@ -188,10 +188,6 @@ jobs:
188188
--output-html remote
189189
--results-dir ${{ github.workspace }}/results-repo
190190
--output-markdown
191-
--sycl ${{ env.SYCL_DIR }}
192-
--adapter level_zero_v2
193-
--exit-on-failure
194-
--filter SYCL-Bench
195191
${{ env.bench_params }}
196192
197193
# In case it failed to add a comment, we can still print the results.

0 commit comments

Comments
 (0)