Skip to content
Merged
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
1 change: 1 addition & 0 deletions sycl/test-e2e/E2EExpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class E2EExpr(BooleanExpression):
"xptifw",
"level_zero_dev_kit",
"cuda_dev_kit",
"hip_dev_kit",
"zstd",
"vulkan",
"true",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// REQUIRES: hip_dev_kit

// UNSUPPORTED: windows
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515
// There are no ROCm libs on win machines, so the compilation fails.
// ROCm libraries are not installed correctly.

// RUN: %clangxx -fsycl -fsycl-targets=amdgcn-amd-amdhsa -Xsycl-target-backend=amdgcn-amd-amdhsa --offload-arch=gfx1030 %S/Inputs/is_compatible_with_env.cpp -o %t.out

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// REQUIRES: cuda_dev_kit

// UNSUPPORTED: windows
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515
// There are no CUDA libs on win machines, so the compilation fails.
// CUDA libs are not installed correctly.

// RUN: %clangxx -fsycl -fsycl-targets=nvptx64-nvidia-cuda %S/Inputs/is_compatible_with_env.cpp -o %t.out

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
// REQUIRES: opencl-aot

// UNSUPPORTED: windows
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515
// There is no CPU device on win yet, so opencl-aot fails to compile the kernel.
// REQUIRES: opencl-aot, any-device-is-cpu

// RUN: %{run-aux} %clangxx -fsycl -fsycl-targets=spir64_x86_64 %S/Inputs/is_compatible_with_env.cpp -o %t.out

Expand Down