Project

General

Profile

Actions

Bug #13418

closed

Improve Time#to_i performance

Added by watson1978 (Shizuo Fujita) about 7 years ago. Updated about 7 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:80636]

Description

Time#to_i will be faster around 80%.

Before

       user     system      total        real
   2.840000   0.000000   2.840000 (  2.847238)

After

       user     system      total        real
   1.600000   0.000000   1.600000 (  1.598911)

Test code

require 'benchmark'

Benchmark.bmbm do |x|
  x.report do
    t = Time.now
    20000000.times do
      t.to_i
    end
  end

end

Patch

https://github.com/ruby/ruby/pull/1576

Actions #1

Updated by Anonymous about 7 years ago

  • Status changed from Open to Closed

Applied in changeset trunk|r58308.


time.c: Improve Time#to_i performance

Time#to_i will be faster around 80% (on 64-bit platforms).

  • Before
    user system total real
    2.840000 0.000000 2.840000 ( 2.847238)

  • After
    user system total real
    1.600000 0.000000 1.600000 ( 1.598911)

  • Test code
    require 'benchmark'

Benchmark.bmbm do |x|
x.report do
t = Time.now
20000000.times do
t.to_i
end
end
end

From: Watson

Actions

Also available in: Atom PDF

Like0
Like0