Skip to content

Commit

Permalink
[CI][UR] Use custom runner names - UR_*
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszstolarczuk committed Feb 12, 2025
1 parent ecf84a4 commit 4ac5046
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/ur-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,23 +68,23 @@ jobs:
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: L0
runner_name: L0
runner_name: UR_L0

level_zero_v2:
name: Level Zero V2
needs: [source_checks]
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: L0_V2
runner_name: L0
runner_name: UR_L0

level_zero_static:
name: Level Zero static
needs: [source_checks]
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: L0
runner_name: L0
runner_name: UR_L0
static_loader: ON
static_adapter: ON

Expand All @@ -94,32 +94,33 @@ jobs:
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: OPENCL
runner_name: OPENCL
runner_name: UR_OPENCL
platform: "Intel(R) OpenCL"

# TODO: temporarily change runner name to UR_CUDA, as there's already CUDA runner here
cuda:
name: CUDA
needs: [source_checks]
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: CUDA
runner_name: CUDA
runner_name: UR_CUDA

hip:
name: HIP
needs: [source_checks]
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: HIP
runner_name: HIP
runner_name: UR_HIP

native_cpu:
name: Native CPU
needs: [source_checks]
uses: ./.github/workflows/ur-build-hw.yml
with:
adapter_name: NATIVE_CPU
runner_name: NATIVE_CPU
runner_name: UR_NATIVE_CPU

# Native CPU jobs are here to force the loader to be used (UR will not use the loader if there is only one target)
combined_opencl_native_cpu:
Expand All @@ -129,7 +130,7 @@ jobs:
with:
adapter_name: OPENCL
other_adapter_name: NATIVE_CPU
runner_name: OPENCL
runner_name: UR_OPENCL
platform: "OPENCL:Intel(R) OpenCL"

combined_level_zero_native_cpu:
Expand All @@ -139,7 +140,7 @@ jobs:
with:
adapter_name: L0
other_adapter_name: NATIVE_CPU
runner_name: L0
runner_name: UR_L0

macos:
name: MacOS build only
Expand Down

0 comments on commit 4ac5046

Please sign in to comment.