Closed
Description
9.0.5.0 has seriously regressed from 9.0.4.0 on this numerical computation extensive rubygem
rubygem : primes-utils (2.7.0)
def tm; t = Time.now; yield; Time.now - t end
require 'primes/utils'
9.0.4.0
n = 40_10_*9; GC.start; tm{n.primescnt}
7.692
9.0.5.0
n = 40_10_*9; GC.start; tm{n.primescnt}
38.456
This behavior is consistent across different 32/64-bit OSs, as Host and VB guests.