Ruby SIMD 和上证所

发布于 2024-09-07 01:30:36 字数 108 浏览 1 评论 0原文

我想知道是否有一种方法可以扩展 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

满天都是小星星 2024-09-14 01:30:36

我怀疑您需要编写 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.

未央 2024-09-14 01:30:36

可能值得探索 Ruby-OpenCL 并根据需要扩展它。

It might be worth exploring Ruby-OpenCL and extending it as necessary.

闻呓 2024-09-14 01:30:36

尝试将 GCC simd 内在函数与 RubyInline 结合使用

try using GCC simd intrinsics with RubyInline

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文