Skip to content

Commit 91ccfc7

Browse files
committed
[SYCL]Clang-format fix regression test
Signed-off-by: mdimakov <[email protected]>
1 parent 13789eb commit 91ccfc7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sycl/test/regression/isordered.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ int main() {
77
{
88
cl::sycl::buffer<int32_t, 1> buffer(&kernelResult, ndRng);
99
testQueue.submit([&](cl::sycl::handler &h) {
10-
auto resultPtr = buffer.template get_access<cl::sycl::access::mode::write>(h);
10+
auto resultPtr =
11+
buffer.template get_access<cl::sycl::access::mode::write>(h);
1112
h.single_task<class kernel>([=]() {
1213
float inputData_0(0.1);
1314
float inputData_1(0.5);
14-
resultPtr[0] = cl::sycl::isordered(inputData_0,inputData_1);
15+
resultPtr[0] = cl::sycl::isordered(inputData_0, inputData_1);
1516
});
1617
});
1718
}

0 commit comments

Comments
 (0)