35#ifndef _BLAZE_MATH_SHIMS_INVSQRT_H_
36#define _BLAZE_MATH_SHIMS_INVSQRT_H_
69template<
typename T,
typename = EnableIf_t< IsBuiltin_v<T> > >
89template<
typename T,
typename = EnableIf_t< IsBuiltin_v<T> > >
90inline auto invsqrt(
const complex<T>& a )
noexcept ->
decltype(
inv(
sqrt( a ) ) )
Header file for run time assertion macros.
Header file for the complex data type.
Header file for the EnableIf class template.
Header file for the invert shim.
Header file for the IsBuiltin type trait.
decltype(auto) abs(const DenseMatrix< MT, SO > &dm)
Applies the abs() function to each single element of the dense matrix dm.
Definition: DMatMapExpr.h:1296
decltype(auto) inv(const DenseMatrix< MT, SO > &dm)
Calculation of the inverse of the given dense matrix.
Definition: DMatInvExpr.h:405
decltype(auto) sqrt(const DenseMatrix< MT, SO > &dm)
Computes the square root of each single element of the dense matrix dm.
Definition: DMatMapExpr.h:1616
#define BLAZE_USER_ASSERT(expr, msg)
Run time assertion macro for user checks.
Definition: Assert.h:117
BLAZE_ALWAYS_INLINE const SIMDdouble invsqrt(const SIMDf64< T > &a) noexcept=delete
Computes the inverse square root for a vector of double precision floating point values.
Header file for the sqrt shim.