Skip to content

Commit b94657e

Browse files
authored
Merge pull request intel#704 from sndmitriev/scsel-cfl-04-tests-topic
[SYCL][ESIMD] Workaround for CMPLRLLVM-35124
2 parents d170bca + 3abcd98 commit b94657e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SYCL/ESIMD/ext_math.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ template <MathOp Op> float HostMathFunc(float X);
6868
template <int VL> struct DeviceMathFunc<VL, MathOp::Op> { \
6969
simd<float, VL> \
7070
operator()(const simd<float, VL> &X) const SYCL_ESIMD_FUNCTION { \
71-
return esimd::Op<VL>(X); \
71+
return esimd::Op<float, VL>(X); \
7272
} \
7373
}
7474

0 commit comments

Comments
 (0)