Project

General

Profile

Actions

Bug #13443

closed

Improve performance of Range#{min,max}

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

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

Description

Range#{min,max} will be faster around 30%.

Before

                user     system      total        real
Range#min   1.270000   0.010000   1.280000 (  1.279449)
Range#max   1.300000   0.000000   1.300000 (  1.310150)

After

                user     system      total        real
Range#min   0.940000   0.010000   0.950000 (  0.967873)
Range#max   0.960000   0.010000   0.970000 (  0.983417)

Test code

require 'benchmark'

Benchmark.bmbm do |x|

  x.report "Range#min" do
    10000000.times do
      (1..100).min
    end
  end

  x.report "Range#max" do
    10000000.times do
      (1..100).max
    end
  end

end

Patch

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

Actions #1

Updated by watson1978 (Shizuo Fujita) almost 7 years ago

  • Status changed from Open to Closed

Applied in changeset trunk|r58964.


Improve performance of Range#{min,max}

range.c (range_min): use OPTIMIZED_CMP() to compare the objects instead of
`<=>' method dispatching for Fixnum/Float/String object inside Range object.

range.c (range_max): ditto.

Range#min -> 34 % up
Range#max -> 44 % up

[ruby-core:80713] [Bug #13443] [Fix GH-1585]

Before

       Range#min      8.428M (± 1.3%) i/s -     42.141M in   5.000952s
       Range#max      8.157M (± 1.3%) i/s -     40.852M in   5.009297s

After

       Range#min     11.269M (± 1.2%) i/s -     56.388M in   5.004611s
       Range#max     11.764M (± 1.3%) i/s -     58.856M in   5.003820s

Test code

require 'benchmark/ips'

Benchmark.ips do |x|
x.report "Range#min" do |i|
i.times { (1..100).min }
end

x.report "Range#max" do |i|
i.times { (1..100).max }
end
end

Actions

Also available in: Atom PDF

Like0
Like0