Project

General

Profile

Actions

Bug #13078

closed

with Integer a and b, a.fdiv(b) sometimes inaccurate than Rational(a, b).to_f

Added by metanest (Makoto Kishimoto) over 7 years ago. Updated about 7 years ago.

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

Description

For example,

a = 3
b = 0x20_0000_0000_0001
p a.fdiv(b)
p Rational(a, b).to_f

#=>
3.3306690738754696e-16
3.330669073875469e-16

I'm hacking to solve this problem, see diff view.
https://github.com/ruby/ruby/compare/trunk...metanest:fdiv_spike

Updated by wanabe (_ wanabe) over 7 years ago

The accuracy of Rational(a, b).to_f seems to be due to reduction of fraction.
How about using Rational object, or its internal function f_gcd() and f_idiv()?

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

I thought the reduction would be slower, but actually not significant.

$ ruby -rbenchmark -e 'a = 3; b = -0x20_0000_0000_0001; n=10_000_000; Benchmark.bm(13) {|x|x.report("Integer#fdiv"){n.times{a.fdiv(b)}}; x.report("Rational#to_f"){n.times{Rational(a, b).to_f}}}'
                    user     system      total        real
Integer#fdiv    3.420000   0.000000   3.420000 (  3.446264)
Rational#to_f   3.450000   0.010000   3.460000 (  3.465592)
Actions #3

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

  • Status changed from Open to Closed

Applied in changeset r57227.


numeric.c: reduce fdiv

Updated by naruse (Yui NARUSE) about 7 years ago

  • Backport changed from 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: UNKNOWN to 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: DONE

ruby_2_4 r57840 merged revision(s) 57227.

Updated by nagachika (Tomoyuki Chikanaga) about 7 years ago

  • Backport changed from 2.2: UNKNOWN, 2.3: UNKNOWN, 2.4: DONE to 2.2: UNKNOWN, 2.3: REQUIRED, 2.4: DONE
Actions #7

Updated by usa (Usaku NAKAMURA) about 7 years ago

  • Backport changed from 2.2: UNKNOWN, 2.3: REQUIRED, 2.4: DONE to 2.2: REQUIRED, 2.3: REQUIRED, 2.4: DONE
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0