给定的 FFTW 库是否以单精度或双精度编译?
有没有办法检查 - 枯萎 FFTW 是以单精度还是双精度编译的?
Is there a way for to check - wither FFTW was compiled in a single or double precision?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果库的名称带有 f 后缀,则它是单精度的。否则就是双倍的。例如,
libfftw3.a 是双精度
libfftw3f.a 是单精度
If the name of the library is suffixed with an f, it is single precision. Otherwise it is double. E.g.,
libfftw3.a is double-precision
libfftw3f.a is single-precision