Skip to content

Commit 35f9696

Browse files
[CI] Modify Nightly task to run opencl:cpu testing on different CPUs (#12548)
We have flakyness in nightly testing results. Having more variety would helpfully provide some insights on conditions when it happens. The task is only executed once a day, so extra resources needed shouldn't affect the load on the runners much.
1 parent 9b2e77a commit 35f9696

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/sycl-nightly.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,20 @@ jobs:
4848
target_devices: opencl:gpu
4949
reset_gpu: true
5050

51-
- name: OCL CPU
52-
runner: '["Linux", "x86-cpu"]'
51+
- name: OCL CPU (AMD)
52+
runner: '["Linux", "amdgpu"]'
53+
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
54+
image_options: -u 1001
55+
target_devices: opencl:cpu
56+
57+
- name: OCL CPU (Intel/GEN12)
58+
runner: '["Linux", "gen12"]'
59+
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
60+
image_options: -u 1001
61+
target_devices: opencl:cpu
62+
63+
- name: OCL CPU (Intel/Arc)
64+
runner: '["Linux", "arc"]'
5365
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
5466
image_options: -u 1001
5567
target_devices: opencl:cpu

0 commit comments

Comments
 (0)