[llvm] [LLVMOffload] Remove tests from running on Intel (PR #216187)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 13 14:56:15 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-offload
Author: Sophia Herrmann (jellytabby)
<details>
<summary>Changes</summary>
Offloading via LLVM currently does not support Intel GPUs, this disables running the tests for them.
Fixes the buildbot error from #<!-- -->212373
---
Full diff: https://github.com/llvm/llvm-project/pull/216187.diff
2 Files Affected:
- (modified) offload/test/offloading/CUDA/thread_and_block_id.cu (+1)
- (modified) offload/test/offloading/HIP/thread_and_block_id.hip (+1)
``````````diff
diff --git a/offload/test/offloading/CUDA/thread_and_block_id.cu b/offload/test/offloading/CUDA/thread_and_block_id.cu
index 30b87659d2eed..76c45a7992a46 100644
--- a/offload/test/offloading/CUDA/thread_and_block_id.cu
+++ b/offload/test/offloading/CUDA/thread_and_block_id.cu
@@ -12,6 +12,7 @@
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
// UNSUPPORTED: amdgcn-amd-amdhsa-LTO
// UNSUPPORTED: amdgpu-amd-amdhsa-LTO
+// UNSUPPORTED: intelgpu
#include <stdio.h>
#include <stdlib.h>
diff --git a/offload/test/offloading/HIP/thread_and_block_id.hip b/offload/test/offloading/HIP/thread_and_block_id.hip
index c9c33c55d72fb..5f9ff157d2a9c 100644
--- a/offload/test/offloading/HIP/thread_and_block_id.hip
+++ b/offload/test/offloading/HIP/thread_and_block_id.hip
@@ -12,6 +12,7 @@
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
// UNSUPPORTED: amdgcn-amd-amdhsa-LTO
// UNSUPPORTED: amdgpu-amd-amdhsa-LTO
+// UNSUPPORTED: intelgpu
#include <stdio.h>
#include <stdlib.h>
``````````
</details>
https://github.com/llvm/llvm-project/pull/216187
More information about the llvm-commits
mailing list