Skip to content

Commit fa1615e

Browse files
authored
[SYCL][E2E] XFAIL tests failing in new driver (#15649)
Failing on the new driver [here](https://github.com/intel/llvm/actions/runs/11259739126/job/31309872610?pr=15626). Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
1 parent 1e44eda commit fa1615e

8 files changed

+24
-0
lines changed

sycl/test-e2e/Plugin/level_zero_device_free_mem.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
// ZES_ENABLE_SYSMAN=1 is set, but also is sysman init is supported,
44
// so this test is missed if it requires aspect-ext_intel_free_memory.
55

6+
// https://github.com/intel/llvm/issues/15648
7+
// XFAIL: gpu-intel-dg2 && linux
8+
69
// Since gen9 and get12 don't support this query,
710
// so requiring DG2. There may be more devices in our CI supporting this aspect.
811
// REQUIRES: gpu-intel-dg2

sycl/test-e2e/USM/memops2d/copy2d_dhost_to_shared.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "copy2d_common.hpp"
1720

1821
int main() { return test<Alloc::DirectHost, Alloc::Shared>(); }

sycl/test-e2e/USM/memops2d/copy2d_host_to_shared.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "copy2d_common.hpp"
1720

1821
int main() { return test<Alloc::Host, Alloc::Shared>(); }

sycl/test-e2e/USM/memops2d/copy2d_shared_to_dhost.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "copy2d_common.hpp"
1720

1821
int main() { return test<Alloc::Shared, Alloc::DirectHost>(); }

sycl/test-e2e/USM/memops2d/copy2d_shared_to_host.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "copy2d_common.hpp"
1720

1821
int main() { return test<Alloc::Shared, Alloc::Host>(); }

sycl/test-e2e/USM/memops2d/memcpy2d_dhost_to_shared.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "memcpy2d_common.hpp"
1720

1821
int main() { return test<Alloc::DirectHost, Alloc::Shared>(); }

sycl/test-e2e/USM/memops2d/memcpy2d_host_to_shared.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "memcpy2d_common.hpp"
1720

1821
int main() { return test<Alloc::Host, Alloc::Shared>(); }

sycl/test-e2e/USM/memops2d/memcpy2d_shared_to_host.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
// Temporarily disabled until the failure is addressed.
1414
// UNSUPPORTED: (level_zero && windows)
1515

16+
// https://github.com/intel/llvm/issues/15648
17+
// XFAIL: gpu-intel-dg2 && linux
18+
1619
#include "memcpy2d_common.hpp"
1720

1821
int main() { return test<Alloc::Shared, Alloc::Host>(); }

0 commit comments

Comments
 (0)