Skip to content

Commit f891d5f

Browse files
Add options to test on L0v2
1 parent 1aa9202 commit f891d5f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/sycl-linux-precommit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,7 @@ jobs:
193193
runner: '["Linux", "bmg"]'
194194
# runner: '["Linux", "L0v2"]'
195195
target_devices: level_zero_v2:arch-intel_gpu_mtl_u
196+
extra_lit_opts: -j 12
196197

197198
# We're in an ABI-breaking window, so these don't make sense for now.
198199
- name: ABI compatibility / sycl-rel-6_2

devops/actions/run-tests/e2e/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ runs:
6262
if [ -n "$CMAKE_EXTRA_ARGS" ]; then
6363
echo "opts=$CMAKE_EXTRA_ARGS" >> $GITHUB_OUTPUT
6464
fi
65+
- name: Check cpu
66+
run: |
67+
lscpu
68+
lscpu | grep "Model name"
6569
- name: Configure E2E tests
6670
if: inputs.testing_mode != 'run-only'
6771
shell: bash
@@ -73,7 +77,9 @@ runs:
7377
shell: bash
7478
env:
7579
LIT_OPTS: -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests --param print_features=True --param test-mode=${{ inputs.testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
80+
# LIT_OPTS: -j 12 -v --param "sycl_devices=level_zero_v2:arch-intel_gpu_mtl_u" sycl/test-e2e/
7681
run: |
82+
echo "LIT_OPTS: $LIT_OPTS"
7783
ninja -C build-e2e check-sycl-e2e > e2e.log 2>&1
7884
# Two steps below are duplicated between Lin/Win actions, updates must change both
7985
- name: E2E logs

0 commit comments

Comments
 (0)