Automatic Differentiation
 
Loading...
Searching...
No Matches
inv_sqrt.hpp
Go to the documentation of this file.
1#ifndef STAN_MATH_PRIM_FUN_INV_SQRT_HPP
2#define STAN_MATH_PRIM_FUN_INV_SQRT_HPP
3
10#include <cmath>
11
12namespace stan {
13namespace math {
14
15template <typename T, require_arithmetic_t<T>* = nullptr>
16inline auto inv_sqrt(const T x) {
17 return inv(std::sqrt(x));
18}
19
20template <typename T, require_complex_t<T>* = nullptr>
21inline auto inv_sqrt(const T x) {
22 return inv(sqrt(x));
23}
24
33 template <typename T>
34 static inline auto fun(const T& x) {
35 return inv_sqrt(x);
36 }
37};
38
47template <typename Container, require_ad_container_t<Container>* = nullptr>
48inline auto inv_sqrt(const Container& x) {
50}
51
60template <typename Container, require_not_var_matrix_t<Container>* = nullptr,
61 require_container_bt<std::is_arithmetic, Container>* = nullptr>
62inline auto inv_sqrt(const Container& x) {
63// Eigen 3.4.0 has precision issues on ARM64 with vectorised rsqrt
64// Resolved in current master branch, below can be removed on next release
65#ifdef __aarch64__
67#else
69 x, [](const auto& v) { return v.array().rsqrt(); });
70#endif
71}
72
73} // namespace math
74} // namespace stan
75
76#endif
rsqrt_< as_operation_cl_t< T > > rsqrt(T &&a)
fvar< T > sqrt(const fvar< T > &x)
Definition sqrt.hpp:18
fvar< T > inv_sqrt(const fvar< T > &x)
Definition inv_sqrt.hpp:14
fvar< T > inv(const fvar< T > &x)
Definition inv.hpp:13
The lgamma implementation in stan-math is based on either the reentrant safe lgamma_r implementation ...
Base template class for vectorization of unary scalar functions defined by a template class F to a sc...
static auto fun(const T &x)
Definition inv_sqrt.hpp:34
Structure to wrap 1 / sqrt(x) so that it can be vectorized.
Definition inv_sqrt.hpp:32