Skip to content

Commit 47dc7e2

Browse files
Revert "[SYCL][E2E] Reenable 2D memory operation tests in L0 Windows" (#14181)
Reverts #14158. Turns out #14128 tried the same and failed some tests.
1 parent 19fe31a commit 47dc7e2

32 files changed

+96
-8
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Device, Alloc::Device>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Device, Alloc::DirectHost>(); }

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// https://github.com/intel/llvm/issues/10157.
14-
// UNSUPPORTED: hip
13+
// Temporarily disabled until the failure is addressed.
14+
// For HIP see https://github.com/intel/llvm/issues/10157.
15+
// UNSUPPORTED: (level_zero && windows) || hip
1516

1617
#include "copy2d_common.hpp"
1718

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Device, Alloc::Shared>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::DirectHost, Alloc::Device>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// RUN: %{build} -o %t.out
1010
// RUN: %{run} %t.out
1111

12+
// Temporarily disabled until the failure is addressed.
13+
// UNSUPPORTED: (level_zero && windows)
14+
1215
#include "copy2d_common.hpp"
1316

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::DirectHost, Alloc::Host>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// https://github.com/intel/llvm/issues/10157.
14-
// UNSUPPORTED: hip
13+
// Temporarily disabled until the failure is addressed.
14+
// For HIP see https://github.com/intel/llvm/issues/10157.
15+
// UNSUPPORTED: (level_zero && windows) || hip
1516

1617
#include "copy2d_common.hpp"
1718

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Host, Alloc::DirectHost>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Shared, Alloc::Device>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

1518
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
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "copy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Device, Alloc::Device>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Device, Alloc::DirectHost>(); }

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// https://github.com/intel/llvm/issues/10157.
14-
// UNSUPPORTED: hip
13+
// Temporarily disabled until the failure is addressed.
14+
// For HIP see https://github.com/intel/llvm/issues/10157.
15+
// UNSUPPORTED: (level_zero && windows) || hip
1516

1617
#include "memcpy2d_common.hpp"
1718

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Device, Alloc::Shared>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::DirectHost, Alloc::Device>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
// RUN: %{build} -o %t.out
1010
// RUN: %{run} %t.out
1111

12+
// Temporarily disabled until the failure is addressed.
13+
// UNSUPPORTED: (level_zero && windows)
14+
1215
#include "memcpy2d_common.hpp"
1316

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::DirectHost, 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
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13-
// https://github.com/intel/llvm/issues/10157.
14-
// UNSUPPORTED: hip
13+
// Temporarily disabled until the failure is addressed.
14+
// For HIP see https://github.com/intel/llvm/issues/10157.
15+
// UNSUPPORTED: (level_zero && windows) || hip
1516

1617
#include "memcpy2d_common.hpp"
1718

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Host, Alloc::DirectHost>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

1518
int main() { return test<Alloc::Shared, Alloc::Device>(); }

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
// RUN: %{build} -o %t.out
1111
// RUN: %{run} %t.out
1212

13+
// Temporarily disabled until the failure is addressed.
14+
// UNSUPPORTED: (level_zero && windows)
15+
1316
#include "memcpy2d_common.hpp"
1417

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

0 commit comments

Comments
 (0)