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

Commit 4f50f12

Browse files
committed
fix clang-format issue
1 parent 7d94677 commit 4f50f12

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

SYCL/InlineAsm/asm_float_add.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,8 @@ struct KernelFunctor : WithInputBuffers<T, 2>, WithOutputBuffer<T> {
4040
}
4141
};
4242

43-
template <typename T1, typename T2>
44-
bool check() {
45-
std::vector<T2> inputA(DEFAULT_PROBLEM_SIZE),
46-
inputB(DEFAULT_PROBLEM_SIZE);
43+
template <typename T1, typename T2> bool check() {
44+
std::vector<T2> inputA(DEFAULT_PROBLEM_SIZE), inputB(DEFAULT_PROBLEM_SIZE);
4745
for (int i = 0; i < DEFAULT_PROBLEM_SIZE; i++) {
4846
inputA[i] = (T1)1 / std::pow(2, i);
4947
inputB[i] = (T1)2 / std::pow(2, i);
@@ -75,4 +73,3 @@ int main() {
7573

7674
return Passed ? 0 : 1;
7775
}
78-

0 commit comments

Comments
 (0)