Skip to content

Commit 34b8e40

Browse files
authored
[SYCL][E2E] Fix more Windows AOT tests (#14588)
Windows ocloc currently doesn't run in CI, and I'm trying to enable it. I hit failures here when trying to enable it. See run [here](https://github.com/intel/llvm/actions/runs/9960990637/job/27525889216?pr=14114). ``` ... # | Could not determine device target: cfl. # | Error: Cannot get HW Info for device cfl. ... ``` Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 3ae9361 commit 34b8e40

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

sycl/test-e2e/AOT/double.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
// REQUIRES: ocloc
55
// RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_tgllp -o %t.tgllp.out %s
6-
// RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_cfl -o %t.cfl.out %s
76

8-
// ocloc on windows does not have support for PVC, so this command will
7+
// ocloc on windows does not have support for PVC/CFL, so this command will
98
// result in an error when on windows. (In general, there is no support
10-
// for pvc on windows.)
9+
// for pvc/cfl on windows.)
10+
// RUN: %if !windows %{ %clangxx -fsycl -fsycl-targets=intel_gpu_cfl -o %t.cfl.out %s %}
1111
// RUN: %if !windows %{ %clangxx -fsycl -fsycl-targets=intel_gpu_pvc -o %t.pvc.out %s %}
1212

1313
#include <sycl/detail/core.hpp>

sycl/test-e2e/AOT/reqd-sg-size.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
// REQUIRES: ocloc
55
// RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_tgllp -o %t.tgllp.out %s
6-
// RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_cfl -o %t.cfl.out %s
76

8-
// ocloc on windows does not have support for PVC, so this command will
7+
// ocloc on windows does not have support for PVC/CFL, so this command will
98
// result in an error when on windows. (In general, there is no support
10-
// for pvc on windows.)
9+
// for pvc/cfl on windows.)
10+
// RUN: %if !windows %{ %clangxx -fsycl -fsycl-targets=intel_gpu_cfl -o %t.cfl.out %s %}
1111
// RUN: %if !windows %{ %clangxx -fsycl -fsycl-targets=intel_gpu_pvc -o %t.pvc.out %s %}
1212

1313
#include <cstdio>

0 commit comments

Comments
 (0)