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

Commit ac0fd45

Browse files
Clang-frmat
1 parent 8bb0992 commit ac0fd45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SYCL/ESIMD/ext_math.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ template <MathOp Op> float HostMathFunc(float X);
6262

6363
// --- Specializations per each extended math operation
6464

65-
#define DEFINE_ESIMD_OP(Op, HostOp) \
65+
#define DEFINE_ESIMD_OP(Op, HostOp) \
6666
template <> float HostMathFunc<MathOp::Op>(float X) { return HostOp(X); } \
6767
template <int VL> struct DeviceMathFunc<VL, MathOp::Op> { \
6868
simd<float, VL> \
@@ -71,7 +71,7 @@ template <MathOp Op> float HostMathFunc(float X);
7171
} \
7272
}
7373

74-
#define DEFINE_SIMD_OVERLOADED_STD_SYCL_OP(Op, HostOp) \
74+
#define DEFINE_SIMD_OVERLOADED_STD_SYCL_OP(Op, HostOp) \
7575
template <> float HostMathFunc<MathOp::Op>(float X) { return HostOp(X); } \
7676
template <int VL> struct DeviceMathFunc<VL, MathOp::Op> { \
7777
simd<float, VL> \

0 commit comments

Comments
 (0)