| 1479 | /** \returns the reciprocal square root of \a x. **/ |
| 1480 | template<typename T> |
| 1481 | EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE |
| 1482 | T rsqrt(const T& x) |
| 1483 | { |
| 1484 | return internal::rsqrt_impl<T>::run(x); |
| 1485 | } |
| 1486 | |
| 1487 | template<typename T> |
| 1488 | EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE |
no test coverage detected