数值稳定性的编译器优化
GCC 或类似编译器是否执行旨在提高浮点运算数值稳定性的优化。
众所周知,如果以明显的方式实现,像加法或计算向量范数这样看似简单的操作在数值上是不稳定的,另一方面,编译器有时会为了速度优化而破坏这些问题的解决方法。
优化数值稳定计算的编译器输出的最新技术是什么?还有什么比挂起更好的吗?
do GCC or similar compilers perform optimizations that are aimed at improving the numerical stability of floating-point operations.
It is known that seemingly simply operations like addition or computing the norm of a vector are numerically unstable if implemented in the obvious manner, and, on the other hand, compilers sometimes destroy work-arounds for these problems for the sake of speed optimization.
What is the state of the art of optimizing compiler output for numerical stable computation? Anything better than pending?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
适用于 Linux 和 Solaris 的 Oracle(以前称为 Sun)编译器。
他们的 C++ 和 Fortran 编译器支持区间算术
Oracle (formerly Sun) compilers for Linux and Solaris.
Their C++ and Fortran compilers have support for Interval Arithmetics