Skip to content

Commit a0aefe5

Browse files
committed
[SYCL] clang format
Signed-off-by: Sergey V Maslov <[email protected]>
1 parent b1a594f commit a0aefe5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

sycl/test/plugins/sycl-ls-gpu-level-zero.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// CHECK-GPU-BUILTIN: gpu_selector(){{.*}}GPU : {{.*}}Level-Zero
77
// CHECK-GPU-CUSTOM: custom_selector(gpu){{.*}}GPU : {{.*}}Level-Zero
88

9-
//==-- sycl-ls-gpu-default.cpp - SYCL test for Level-Zero selected gpu device -==//
9+
//==-- sycl-ls-gpu-level-zero.cpp - Test Level-Zero selected gpu device ----==//
1010
//
1111
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
1212
// See https://llvm.org/LICENSE.txt for license information.

sycl/tools/sycl-ls/sycl-ls.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ static void printDeviceInfo(const device &Device, const std::string &Prepend) {
7373
} else {
7474
auto DevicePlatform = Device.get_info<info::device::platform>();
7575
auto DevicePlatformName = DevicePlatform.get_info<info::platform::name>();
76-
std::cout << Prepend << DeviceTypeName << ": " << DevicePlatformName << " " << DeviceVersion << " ["
77-
<< DeviceDriverVersion << "]" << std::endl;
76+
std::cout << Prepend << DeviceTypeName << ": " << DevicePlatformName << " "
77+
<< DeviceVersion << " [" << DeviceDriverVersion << "]"
78+
<< std::endl;
7879
}
7980
}
8081

0 commit comments

Comments
 (0)