Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ permissions: read-all
jobs:
build:
name: Build + LIT
runs-on: [Linux, build]
runs-on: [Linux, build-test]
container:
image: ${{ inputs.build_image }}
options: -u 1001:1001
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/sycl-linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
# build all the e2e tests
build_run_native_cpu_e2e_tests:
if: ${{ !cancelled() && needs.build.outputs.build_conclusion == 'success' }}
runs-on: [Linux, build]
runs-on: [Linux, build-test]
needs: [build]
container:
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
Expand Down Expand Up @@ -173,10 +173,10 @@ jobs:
use_igc_dev: true
env: '{"LIT_FILTER":"Matrix/"}'
- name: Intel / Ponte Vecchio GPU
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
target_devices: level_zero:gpu;opencl:gpu;level_zero_v2:gpu
- name: Intel Dev IGC / Ponte Vecchio GPU
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:devigc
target_devices: level_zero:gpu
use_igc_dev: true
Expand All @@ -192,14 +192,14 @@ jobs:

# We're in an ABI-breaking window, so these don't make sense for now.
- name: ABI compatibility / sycl-rel-6_2
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_2
target_devices: level_zero:gpu
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_2 }}"'
binaries_artifact: 'in-container'
skip_run: true
- name: ABI compatibility / sycl-rel-6_3
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_3
target_devices: level_zero:gpu
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_3 }}"'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ on:
- '["Linux", "gen12"]'
- '["amdgpu"]'
- '["Linux", "arc"]'
- '["Linux", "pvc"]'
- '["Linux", "pvc-test"]'
- '["cts-cpu"]'
- '["Linux", "build"]'
- '["cuda"]'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
target_devices: level_zero:gpu

- name: Intel L0 Ponte Vecchio GPU
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
target_devices: level_zero:gpu

- name: Intel L0 Battlemage GPU
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
target_devices: opencl:cpu

- name: Preview mode on SPR/PVC
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
target_devices: level_zero:gpu
extra_lit_opts: --param test-preview-mode=True

Expand All @@ -190,7 +190,7 @@ jobs:
uses: ./.github/workflows/sycl-linux-run-tests.yml
with:
name: Intel PVC L0 oneAPI
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
target_devices: level_zero:gpu
extra_lit_opts: -j 50
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-prebuilt-e2e-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
# I'll start with just a single configuration, but this might be extended
# with a matrix in future (e.g., to run on cpu/CUDA/AMDGPU).
name: Run E2E tests with SYCL RT they were built with
runs-on: [Linux, pvc]
runs-on: [Linux, pvc-test]
needs: [docker, build]
if: ${{ !cancelled() && needs.build.outputs.build_conclusion == 'success' }}
container:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sycl-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
matrix:
include:
- name: SYCL-CTS on OCL CPU PVC w/ LLVM SPIR-V Backend
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
target_devices: opencl:cpu

- name: SYCL-CTS on L0 GPU PVC w/ LLVM SPIR-V Backend
runner: '["Linux", "pvc"]'
runner: '["Linux", "pvc-test"]'
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
target_devices: level_zero:gpu
uses: ./.github/workflows/sycl-linux-run-tests.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ur-build-offload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build_type: [Release]
compiler: [{c: gcc, cxx: g++}]

runs-on: [ "Linux", "build" ]
runs-on: [ "Linux", "build-test" ]
container:
image: 'ghcr.io/intel/llvm/ubuntu2404_base'

Expand Down
Loading