Home
last modified time | relevance | path

Searched defs:template_blas_sqrt (Results 1 – 1 of 1) sorted by relevance

/dports/science/ergo/ergo-3.8/source/matrix/template_lapack/blas/
H A Dtemplate_blas_basicmath.cc79 template<> float template_blas_sqrt<float>(float x) { return sqrtf(x); } in template_blas_sqrt() function
81 template<> float template_blas_sqrt<float>(float x) { return sqrt(x); } in template_blas_sqrt() function
84 template<> double template_blas_sqrt<double>(double x) { return sqrt(x); } in template_blas_sqrt() function
87 template<> long double template_blas_sqrt<long double>(long double x) { return sqrtl(x); } in template_blas_sqrt() function
89 template<> long double template_blas_sqrt<long double>(long double x) { return sqrt(x); } in template_blas_sqrt() function
94 template<> __float128 template_blas_sqrt<__float128>(__float128 x) { return sqrtq(x); } in template_blas_sqrt() function
96 template<> __float128 template_blas_sqrt<__float128>(__float128 x) { return sqrt(x); } in template_blas_sqrt() function