Skip to content

Commit a514505

Browse files
author
Hugh Delaney
committed
Remove redundant include
1 parent 450e1b5 commit a514505

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

sycl/include/CL/sycl/builtins.hpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -191,18 +191,6 @@ detail::enable_if_t<detail::is_genfloat<T>::value, T> fma(T a, T b,
191191
return __sycl_std::__invoke_fma<T>(a, b, c);
192192
}
193193

194-
// genfloath fma_relu (genfloath a, genfloath b, genfloath c)
195-
// BF16 : uint16_t fma_relu (uint16_t a, uint16_t b, uint16_t c)
196-
// BF16X2 : uint32_t fma_relu (uint32_t a, uint32_t b, uint32_t c)
197-
template <typename T>
198-
detail::enable_if_t<detail::is_genfloath<T>::value ||
199-
std::is_same<T, uint16_t>::value ||
200-
std::is_same<T, uint32_t>::value,
201-
T>
202-
fma(T a, T b, T c) __NOEXC {
203-
return __sycl_std::__invoke_fma<T>(a, b, c);
204-
}
205-
206194
// genfloat fmax (genfloat x, genfloat y)
207195
template <typename T>
208196
detail::enable_if_t<detail::is_genfloat<T>::value, T> fmax(T x, T y) __NOEXC {

0 commit comments

Comments
 (0)