Skip to content

Commit 5034705

Browse files
[SYCL] Remove use of host device in CI device filters (#7160)
With the removal of the host device, the use of `host` should be removed from the device filter in the CI configurations. This commit removes this. Signed-off-by: Larsen, Steffen <[email protected]>
1 parent b0c3404 commit 5034705

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

devops/test_configs.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"image": "${{ inputs.intel_drivers_image }}",
1111
"container_options": "-u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN",
12-
"check_sycl_all": "level_zero:gpu,host",
12+
"check_sycl_all": "level_zero:gpu",
1313
"cmake_args": ""
1414
},
1515
{
@@ -21,7 +21,7 @@
2121
],
2222
"image": "${{ inputs.intel_drivers_image }}",
2323
"container_options": "-u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN",
24-
"check_sycl_all": "opencl:gpu,host",
24+
"check_sycl_all": "opencl:gpu",
2525
"cmake_args": ""
2626
},
2727
{
@@ -33,7 +33,7 @@
3333
],
3434
"image": "${{ inputs.intel_drivers_image }}",
3535
"container_options": "-u 1001",
36-
"check_sycl_all": "opencl:cpu,host",
36+
"check_sycl_all": "opencl:cpu",
3737
"cmake_args": ""
3838
},
3939
{
@@ -57,7 +57,7 @@
5757
],
5858
"image": "${{ inputs.amdgpu_image }}",
5959
"container_options": "--device=/dev/dri --device=/dev/kfd",
60-
"check_sycl_all": "hip:gpu,host",
60+
"check_sycl_all": "hip:gpu",
6161
"cmake_args": "-DHIP_PLATFORM=\"AMD\" -DAMD_ARCH=\"gfx1031\""
6262
},
6363
{
@@ -69,7 +69,7 @@
6969
],
7070
"image": "${{ inputs.cuda_image }}",
7171
"container_options": "--gpus all",
72-
"check_sycl_all": "cuda:gpu,host",
72+
"check_sycl_all": "cuda:gpu",
7373
"cmake_args": ""
7474
}
7575
],
@@ -83,7 +83,7 @@
8383
],
8484
"image": "${{ inputs.cuda_image }}",
8585
"container_options": "--gpus all",
86-
"sycl_device_filter": "ext_oneapi_cuda:gpu,host",
86+
"sycl_device_filter": "ext_oneapi_cuda:gpu",
8787
"cmake_args": "-DDPCPP_TARGET_TRIPLES=nvptx64-nvidia-cuda"
8888
}
8989
]

0 commit comments

Comments
 (0)