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

Commit 798e5bf

Browse files
committed
clang-format
Signed-off-by: Sergey V Maslov <[email protected]>
1 parent 54fec35 commit 798e5bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SYCL/Plugin/level_zero_device_free_mem.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// RUN: %clangxx -fsycl -fsycl-targets=%sycl_triple %level_zero_options %s -o %t.out
44
// RUN: %GPU_RUN_PLACEHOLDER %t.out 2>&1 %GPU_CHECK_PLACEHOLDER
55
//
6-
// The test is to check that the free device memory is reported be Level Zero backend
6+
// The test is to check that the free device memory is reported be Level Zero
7+
// backend
78
//
89
// CHECK: Free device memory
910

@@ -18,8 +19,7 @@ int main() {
1819
std::cout << "Device: " << dev.get_info<info::device::name>() << std::endl;
1920

2021
if (!dev.is_host() && dev.has(aspect::ext_intel_free_memory)) {
21-
auto FreeMemory =
22-
dev.get_info<info::device::ext_intel_free_memory>();
22+
auto FreeMemory = dev.get_info<info::device::ext_intel_free_memory>();
2323
std::cout << "Free device memory: " << FreeMemory << std::endl;
2424
} else {
2525
std::cout

0 commit comments

Comments
 (0)