Skip to content

Commit bd26c21

Browse files
committed
clang-format
Signed-off-by: James Brodman <[email protected]>
1 parent c7ce1d5 commit bd26c21

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

sycl/include/CL/sycl/ONEAPI/atomic_ref.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//==----- atomic_ref.hpp - SYCL_ONEAPI_extended_atomics atomic_ref ----------==//
1+
//==----- atomic_ref.hpp - SYCL_ONEAPI_extended_atomics atomic_ref ---------==//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

sycl/include/CL/sycl/detail/spirv.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ getMemorySemanticsMask(ONEAPI::memory_order Order) {
231231
__spv::MemorySemanticsMask::CrossWorkgroupMemory);
232232
}
233233

234-
static inline constexpr __spv::Scope::Flag getScope(ONEAPI::memory_scope Scope) {
234+
static inline constexpr __spv::Scope::Flag
235+
getScope(ONEAPI::memory_scope Scope) {
235236
switch (Scope) {
236237
case ONEAPI::memory_scope::work_item:
237238
return __spv::Scope::Invocation;

sycl/test/reduction/reduction_transparent.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
// RUN: %CPU_RUN_PLACEHOLDER %t.out
88

99
// RUNx: env SYCL_DEVICE_TYPE=HOST %t.out
10-
// TODO: Enable the test for HOST when it supports ONEAPI::reduce() and barrier()
10+
// TODO: Enable the test for HOST when it supports ONEAPI::reduce() and
11+
// barrier()
1112

1213
// This test performs basic checks of parallel_for(nd_range, reduction, func)
1314
// where func is a transparent functor.

0 commit comments

Comments
 (0)