gpt4 book ai didi

c++ - GLM openGL 数学 fastSqrt 函数

转载 作者:太空宇宙 更新时间:2023-11-04 11:45:56 25 4
gpt4 key购买 nike

这段代码

#include "glm/glm.hpp"
#include "glm/gtx/fast_square_root.hpp"

double temp = 4.0;
temp = glm::fastSqrt(temp);

产生以下结果

-2.16802e-058

我做错了什么?

最佳答案

解决方案很简单,滚动你自己的 fastSqrt,行之有效:

#if defined(__SSE__)
template <typename T>
inline T fastSqrt(T const x)
{
float r;

_mm_store_ss(&r, _mm_rsqrt_ss(_mm_set_ss(x)));

return x * r * (T(1.5) - T(.5) * x * r * r);
}
#elif defined(__ARM_NEON__)
template <typename T>
inline T fastSqrt(T const x)
{
auto const r(vrsqrte_f32(float32x2_t{float32_t(x)}));

return x * r[0] * (T(1.5) - T(.5) * x * r[0] * r[0]);
}
#else
template <typename T>
inline T fastSqrt(T const x)
{
constexpr ::std::int32_t const SQRT_MAGIC_F(0x5f3759df);

float r(x);

reinterpret_cast<::std::int32_t&>(r) = SQRT_MAGIC_F -
(reinterpret_cast<::std::int32_t const&>(r) >> 1);

return x * r * (1.5f - .5f * x * r * r);
}

关于c++ - GLM openGL 数学 fastSqrt 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19833674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com