Ruby SIMD 和上证所
我想知道是否有一种方法可以扩展 ruby 数组类型来执行 SIMD 和 SIMD 操作。 SSE向量计算。
我的意思是用低级语言实现,以便在 ruby 程序中使用来计算处理任务。
I'm wondering if there is a way to extend ruby Array type to do SIMD & SSE vector calculation.
I mean implement in an low-level language to be used in ruby programs to number crunching tasks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我怀疑您需要编写 Ruby C 扩展.我没有使用过该教程,但它似乎是合理的。只需将您想要在扩展中使用的 SIMD 和 SSE 方法包装起来,瞧!我以前没有开发过这种扩展,所以我不确定在 Ruby 和 C 之间移动数据时这种操作是否会产生复制开销。您必须对此进行调查;快速谷歌一下,并没有发现任何类似的扩展程序。
I suspect that you would need to write a Ruby C extension. I haven't used that tutorial, but it seems plausible. Just wrap the SIMD and SSE methods you want to use in your extension, et voila! I haven't developed this kind of extension before, so I'm not sure if this kind of operation would incur copying overhead when moving data between Ruby and C. You'd have to investigate that; a quick Google doesn't find any extensions like this already in the wild.
可能值得探索 Ruby-OpenCL 并根据需要扩展它。
It might be worth exploring Ruby-OpenCL and extending it as necessary.
尝试将 GCC simd 内在函数与 RubyInline 结合使用
try using GCC simd intrinsics with RubyInline