Skip to content

Commit b61d5a7

Browse files
test
1 parent 88642a3 commit b61d5a7

3 files changed

Lines changed: 45 additions & 31 deletions

File tree

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

Lines changed: 40 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -156,32 +156,37 @@ jobs:
156156
fail-fast: false
157157
matrix:
158158
include:
159-
- name: Intel / GEN 12 Integrated
160-
runner: '["Linux", "gen12"]'
161-
target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
162-
- name: NVIDIA/CUDA
159+
# - name: Intel / GEN 12 Integrated
160+
# runner: '["Linux", "gen12"]'
161+
# target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
162+
- name: NVIDIA/CUDA 13.1
163163
runner: '["Linux", "cuda"]'
164164
image_options: -u 1001 --gpus all --cap-add SYS_ADMIN
165165
target_devices: cuda:gpu
166-
- name: Intel / Arc A-Series Graphics
167-
runner: '["Linux", "arc"]'
168-
target_devices: level_zero:gpu;opencl:gpu;level_zero_v2:gpu
169-
env: '{"LIT_FILTER":"Matrix/"}'
170-
- name: Intel / Ponte Vecchio GPU
171-
runner: '["Linux", "pvc"]'
172-
target_devices: level_zero:gpu;opencl:gpu;level_zero_v2:gpu
173-
- name: Intel / Battlemage Graphics
174-
runner: '["Linux", "bmg"]'
175-
target_devices: level_zero_v1:gpu;level_zero_v2:gpu
176-
- name: Preview Mode
177-
runner: '["Linux", "gen12"]'
178-
target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
179-
extra_lit_opts: --param test-preview-mode=True
180-
binaries_artifact: e2e_bin_preview
181-
- name: Intel / ARL with L0 v2
182-
runner: '["Linux", "arl"]'
183-
target_devices: level_zero_v2:arch-intel_gpu_mtl_u
184-
extra_lit_opts: --param test-preview-mode=True
166+
- name: NVIDIA/CUDA 12.6.3
167+
runner: '["Linux", "cuda"]'
168+
image: "ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest"
169+
image_options: -u 1001 --gpus all --cap-add SYS_ADMIN
170+
target_devices: cuda:gpu
171+
# - name: Intel / Arc A-Series Graphics
172+
# runner: '["Linux", "arc"]'
173+
# target_devices: level_zero:gpu;opencl:gpu;level_zero_v2:gpu
174+
# env: '{"LIT_FILTER":"Matrix/"}'
175+
# - name: Intel / Ponte Vecchio GPU
176+
# runner: '["Linux", "pvc"]'
177+
# target_devices: level_zero:gpu;opencl:gpu;level_zero_v2:gpu
178+
# - name: Intel / Battlemage Graphics
179+
# runner: '["Linux", "bmg"]'
180+
# target_devices: level_zero_v1:gpu;level_zero_v2:gpu
181+
# - name: Preview Mode
182+
# runner: '["Linux", "gen12"]'
183+
# target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
184+
# extra_lit_opts: --param test-preview-mode=True
185+
# binaries_artifact: e2e_bin_preview
186+
# - name: Intel / ARL with L0 v2
187+
# runner: '["Linux", "arl"]'
188+
# target_devices: level_zero_v2:arch-intel_gpu_mtl_u
189+
# extra_lit_opts: --param test-preview-mode=True
185190

186191
# We're in an ABI-breaking window, so these don't make sense for now.
187192
- name: ABI compatibility / sycl-rel-6_2
@@ -282,15 +287,20 @@ jobs:
282287
fail-fast: false
283288
matrix:
284289
include:
285-
- name: Intel GEN12 Graphics system
286-
runner: '["Linux", "gen12"]'
287-
image_extra_opts: --device=/dev/dri
288-
- name: Intel Arc A-Series Graphics system
289-
runner: '["Linux", "arc"]'
290-
image_extra_opts: --device=/dev/dri
291-
- name: CUDA system
290+
# - name: Intel GEN12 Graphics system
291+
# runner: '["Linux", "gen12"]'
292+
# image_extra_opts: --device=/dev/dri
293+
# - name: Intel Arc A-Series Graphics system
294+
# runner: '["Linux", "arc"]'
295+
# image_extra_opts: --device=/dev/dri
296+
- name: CUDA system with CUDA 13.1
292297
runner: '["Linux", "cuda"]'
293298
image_extra_opts: --gpus all
299+
- name: NVIDIA/CUDA 12.6.3
300+
runner: '["Linux", "cuda"]'
301+
image: "ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest"
302+
image_options: --gpus all
303+
target_devices: cuda:gpu
294304
uses: ./.github/workflows/sycl-linux-run-tests.yml
295305
with:
296306
name: Perf tests on ${{ matrix.name }}

.github/workflows/sycl-linux-run-tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,10 @@ jobs:
321321
tar xf sycl_linux.tar.gz -C toolchain
322322
echo PATH=$PWD/toolchain/bin/:$PATH >> $GITHUB_ENV
323323
echo LD_LIBRARY_PATH=$PWD/toolchain/lib/:$LD_LIBRARY_PATH >> $GITHUB_ENV
324+
- name: Check nvcc
325+
shell: bash
326+
run: nvcc --version
327+
324328
- run: which clang++ sycl-ls
325329
- run: sycl-ls --verbose
326330
- run: SYCL_UR_TRACE=1 sycl-ls

devops/containers/ubuntu2404_build.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nvidia/cuda:12.6.3-devel-ubuntu24.04
1+
FROM nvidia/cuda:13.1.0-devel-ubuntu24.04
22

33
ENV DEBIAN_FRONTEND=noninteractive
44

0 commit comments

Comments
 (0)