Fix compilation error for logical packet ops with older compilers.

This commit is contained in:
Rasmus Munk Larsen
2019-01-16 14:43:33 -08:00
parent ee550a2ac3
commit 7401e2541d
4 changed files with 14 additions and 18 deletions

View File

@@ -143,10 +143,6 @@ template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE half2 pabs<half2>(const half2&
return result;
}
template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE half ptrue<half>(const half& a) {
return __half_raw(0xffffu);
}
template<> EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE half2 ptrue<half2>(const half2& a) {
half2 result;
*(reinterpret_cast<unsigned*>(&(result))) = 0xffffffffu;