长双数学库实现?
C99 long double 数学库函数(expl
、cosl
、logl
等)有哪些可用的可移植实现(如果有)?我查看了 fdlibm(基于 Sun)、NetBSD(基于 UCB)等源代码,但没有看到它们。
What are the available portable implementations of the C99 long double math library functions (expl
, cosl
, logl
, etc.), if any? I've looked in fdlibm (Sun-based), NetBSD (UCB-based), etc. sources and not seen them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够在基于 Sun 的库中看到它(在我所知道的几乎所有开放 C 库中使用,包括 glibc 和 FreeBSD 库)。
我通常更喜欢 BSD 代码 作为数学代码(在我看来更具可读性)。请参阅此处了解 80 位 (Intel) 长双精度格式。对于给定的功能,不同的实现/架构可能位于不同的目录中。
需要认识到的一件事是,long double 尚未标准化(更准确地说,只是自 IEEE754 2008 年修订版以来,大多数常见 CPU 中尚未真正实现)。这意味着每个 CPU 需要对很多东西进行不同的实现(IA32、AMD64、PPC、Alpha、Sparc 在这方面都不同......)。
You should be able to see it in the Sun-based libraries (used in pretty much all the open C libraries I am aware of, including glibc and FreeBSD one).
I generally prefer BSD code for math code (more readable IMO). See here for 80-bits (Intel) long double format. For a given function, different implementation/architectures may be in different directories.
One thing to realize is that long double is not standardized (more exactly, only since the 2008 rev of IEEE754, which is not really implemented in most common CPU yet). Which means each CPU requires a different implementation for a lot of stuff (IA32, AMD64, PPC, Alpha, Sparc are all different in that aspect...).
尝试 Cephes 数学库。
Try the Cephes Mathematical Library.