Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 106dd60

Browse files
[SYCL][L0] Fix has_aspect_atomic64 test and reenable it (#1253)
Fix has_aspect_atomic64 test and reenable it Signed-off-by: Tikhomirova, Kseniya <[email protected]>
1 parent 57f9755 commit 106dd60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SYCL/AtomicRef/device_has_aspect_atomic64_level_zero.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// REQUIRES: level_zero, level_zero_dev_kit, TEMPORARY_DISABLED
1+
// REQUIRES: level_zero, level_zero_dev_kit
22
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %s -o %t.out %level_zero_options
33
// RUN: %GPU_RUN_PLACEHOLDER %t.out
44

@@ -11,7 +11,7 @@ int main() {
1111
queue Queue;
1212
device Dev = Queue.get_device();
1313
bool Result;
14-
ze_device_module_properties_t Properties;
14+
ze_device_module_properties_t Properties{};
1515
zeDeviceGetModuleProperties(get_native<backend::ext_oneapi_level_zero>(Dev),
1616
&Properties);
1717
if (Properties.flags & ZE_DEVICE_MODULE_FLAG_INT64_ATOMICS)

0 commit comments

Comments
 (0)