闪电战吗?在可能且适当的情况下使用 BLAS 例程
我知道 Blitz++ 通过广泛使用表达式模板和模板元程序来提高其性能。但在某些时候,您无法通过使用这些技术从代码中获得更多信息 - 您必须对一些浮点数进行乘法和求和。此时,您可以通过使用高度优化的(特别是对于特殊架构)BLAS 例程来获得最终的性能提升。 Blitz++ 的当前实现是否尽可能使用 BLAS 例程?
I know that Blitz++ gets its performance plus by extensive usage of expression templates and template metaprogramms. But at some point you can't get more out of your code by using these techniques - you have to multiply and sum some floats up. At this point you can get a final performance kick by using the highly optimized (especially for special architectures) BLAS routines. Does the current implementation of Blitz++ use BLAS routines whenever it is possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅对于基准测试,您必须在配置 blitz++ 时指定它:
Blitz 不使用 Blas 例程。
Only for benchmarks you must specify it when you configure blitz++:
Blitz does not use Blas routines.