Skip to content

Commit 3f59a59

Browse files
committed
fix
1 parent 29c7e05 commit 3f59a59

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

sycl/test-e2e/Plugin/level_zero_device_free_mem.cpp

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
// https://github.com/intel/llvm/issues/14244
2-
// sycl-ls --verbose shows the "ext_intel_free_memory" aspect if
3-
// ZES_ENABLE_SYSMAN=1 is set, but also is sysman init is supported,
4-
// so this test is missed if it requires aspect-ext_intel_free_memory.
5-
6-
// Since gen9 and get12 don't support this query,
7-
// so requiring DG2. There may be more devices in our CI supporting this aspect.
8-
// REQUIRES: gpu-intel-dg2
9-
// REQUIRES: level_zero, level_zero_dev_kit
10-
// UNSUPPORTED: gpu-intel-gen12
11-
// UNSUPPORTED-INTENDED: The query of free memory is not supported on integrated
12-
// devices
1+
// REQUIRES: aspect-ext_intel_free_memory
132
//
143
// RUN: %{build} %level_zero_options -o %t.out
154
// RUN: env ZES_ENABLE_SYSMAN=1 %{run} %t.out 2>&1 | FileCheck %s
@@ -25,7 +14,8 @@
2514
using namespace sycl;
2615

2716
int main() {
28-
return 1;
17+
assert(false && "Check for failure");
18+
2919
queue Queue;
3020
auto dev = Queue.get_device();
3121
std::cout << "Device: " << dev.get_info<info::device::name>() << std::endl;

0 commit comments

Comments
 (0)