gpt4 book ai didi

ruby-on-rails - Ruby 中的线程使用情况 : is there a way to speed up execution with parallelism?

转载 作者:太空宇宙 更新时间:2023-11-03 17:10:21 24 4
gpt4 key购买 nike

我正在测试 Threads目前在 Ruby 中,但不明白:它们是否真的在 MRI 中工作?我所说的工作线程是指能够并行执行它们以加速应用程序。

这是我的例子:

require 'benchmark'

Benchmark.bm do |x|
x.report do
threads = []

thread_1 = Thread.new { (1..50_000_000).inject { |sum, n| sum + n } }
thread_2 = Thread.new { (1..100_000_000).inject { |sum, n| sum + n } }

threads << thread_1
threads << thread_2

threads.each { |t| t.join }
end
end


Benchmark.bm do |x|
x.report do
(1..50_000_000).inject { |sum, n| sum + n }
(1..100_000_000).inject { |sum, n| sum + n }
end
end

基准测试结果(计算机确实有 2 个内核):

       user     system      total        real
14.040000 0.030000 14.070000 ( 14.096566)
user system total real
13.970000 0.030000 14.000000 ( 14.023680)

如您所见,使用线程,程序执行速度会更慢。我假设线程正在连贯地执行(通过 threads.each { |t| t.join } )。有没有办法同时运行它们?或任何其他方式来加速 ruby​​ 脚本在多核计算机上的执行?

我将不胜感激任何建议。

最佳答案

Ruby 语言规范不保证线程实际上可以并行运行。绝大多数 Ruby 实现确实能够并行运行线程(例如 Rubinius、JRuby、IronRuby、MacRuby、Ruby.NET),但 MRI 和 YARV 不能。

MRI 使用绿色线程,它会自行调度,但从不并行调度。 YARV 使用由操作系统调度的 native 线程,但使用巨型 VM 锁 (GVL) 保护它们以防止它们被并行调度。请注意,对于 MRI 和 YARV,这仅适用于 Ruby 线程。 MRI 可以与其单个解释器线程并行运行多个 C 线程,例如 I/O;此外,C 扩展可以并行运行多个 C 线程。 YARV 只是阻止其线程进入 VM,但当它们在 C 库中或等待 I/O 或从 C 扩展运行一些 C 代码时,它们可能会并行运行。

JRuby 和 IronRuby 分别使用 JVM 线程和 CLI 线程。 JRuby 和 IronRuby 中没有任何东西可以阻止它们并行运行,但这取决于您使用的 JVM 或 CLI 实现。并非所有 JVM 都支持并行运行线程,尽管大多数主流 JVM 都支持。当然,您的操作系统也需要支持它,并且您需要实际拥有多个内核。

关于ruby-on-rails - Ruby 中的线程使用情况 : is there a way to speed up execution with parallelism?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27153680/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com