SlideShare una empresa de Scribd logo
1 de 79
Descargar para leer sin conexión
Float is Legacy
         Kenta Murata




          RubyConf 2011

Monday, October 10, 11     1
Kenta Murata                                            @mrkn
          CRuby committer
                bigdecimal maintainer
                OS X platform maintainer
                Interested in number system




http://www.flickr.com/photos/recompile_net/5951998279/
Monday, October 10, 11                                           2
https://twitter.com/#!/shyouhei/status/119802983423807488
Monday, October 10, 11                                      3
https://twitter.com/#!/shyouhei/status/119802983423807488
Monday, October 10, 11                                      3
Kenta Murata                                            @mrkn
          CRuby committer
                bigdecimal maintainer
                OS X platform maintainer
                Interested in number system


          Ruby Sapporo



http://www.flickr.com/photos/recompile_net/5951998279/
Monday, October 10, 11                                           4
Sapporo, Japan
http://www.flickr.com/photos/muraken/6174655831
Monday, October 10, 11                            5
Sapporo, Japan
http://www.flickr.com/photos/irasally/4708650832/
Monday, October 10, 11                              6
The RubyKaigi is finished.




Monday, October 10, 11               7
Regional RubyKaigi is continue.




Monday, October 10, 11                     8
Sapporo RubyKaigi 04

         in the next summer.


Monday, October 10, 11          9
Official information
         will be coming soon.



Monday, October 10, 11          10
Acknowledgement

               Tatsuhiro Ujihisa, @ujm
                     HootSuite Media, Inc.


               Yoshimasa Niwa, @niw
                     Twitter, Inc.


Monday, October 10, 11                       11
Float is Legacy
         Kenta Murata




          RubyConf 2011

Monday, October 10, 11     12
Summary

               Float requires us the advanced knowledge
               Most rubyists don’t need Float
               Rational is enough for us
               Literal of decimal fraction interpreted as Rational
               makes us more happy




Monday, October 10, 11                                               13
Float class




Monday, October 10, 11   14
What is Float class?


               A wrapper for C double.
               Boxing a value of double.
               Need to allocate an object to generate a new
               Float.




Monday, October 10, 11                                        15
Do you know C double?

               Floating point number with double precision.
               No concrete representation is specified.
               Most current platforms employ IEEE754.
               It is IEEE754 binary64 on these platforms.
               There are platforms employing other spec.




Monday, October 10, 11                                        16
CRuby and JIS Ruby



               Not requiring IEEE754.



Monday, October 10, 11                  17
Floating point numbers




Monday, October 10, 11            18
The origin


     NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol]
                                   34                           34
          h = +6.626 069 57 ⇥ 10        (±0.000 000 0029 ⇥ 10        ) [J s]




Monday, October 10, 11                                                         19
The origin


     NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol]
                                   34                           34
          h = +6.626 069 57 ⇥ 10        (±0.000 000 0029 ⇥ 10        ) [J s]




                  sign

Monday, October 10, 11                                                         19
The origin


     NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol]
                                         34                           34
          h = +6.626 069 57 ⇥ 10              (±0.000 000 0029 ⇥ 10        ) [J s]



                         fraction part

                  sign

Monday, October 10, 11                                                               19
The origin


     NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol]
                                         34                           34
          h = +6.626 069 57 ⇥ 10              (±0.000 000 0029 ⇥ 10        ) [J s]


                                     exponent part
                         fraction part

                  sign

Monday, October 10, 11                                                               19
The origin


     NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol]
                                       34                            34
          h = +6.626 069 57 ⇥ 10            (±0.000 000 0029 ⇥ 10         ) [J s]


                                     exponent part: emin  e        q  emax
                         fraction part: 0  f  B   n
                                                        1

                  sign: s 2 {0, 1}

Monday, October 10, 11                                                              20
Floating point numbers
               Numbers can be identified by (s, e, f ).
               Represent approximation of real numbers.
               Float types can be described by B, N, q, emin, and emax.
                     B is the base number of the exponent part.
                     N is the number of digits in the fraction part.
                     q is the bias for the exponent part.
                     emax and emin specify the limit of the exponent part.



Monday, October 10, 11                                                       21
s     f     e   q
                         (s, e, f ) = ( 1) ⇥ N ⇥ B
                                            B




Monday, October 10, 11                                     22
e.g. IEEE754 binary64

               B=2             The maximum positive:
                                1.797 693 134 862 315 7 ×10+308
               N = 53
               q = 1,023       The minimum nonzero positive:
                                2.225 073 858 507 201 4 ×10–308
               emin = –1,022
               emax = +1,023




Monday, October 10, 11                                            23
s     f     e   q
                         (s, e, f ) = ( 1) ⇥ N ⇥ B
                                            B




Monday, October 10, 11                                     24
e.g. IEEE754 decimal64

               B = 10        The maximum positive:
                              9.999 999 999 999 999 ×10+384
               N = 16
               q = 398       The minimum nonzero positive:
                              0.000 000 000 000 001 ×10–383
               emin = –383
               emax = +384




Monday, October 10, 11                                        25
e.g. IBM’s double precision

               B = 16       The maximum positive:
                             7.237 005 577 332 262 11 ×10+75
               N = 56
               q = 64       The minimum nonzero positive:
                             5.397 605 346 934 027 89 ×10–79
               emin = –64
               emax = +63




Monday, October 10, 11                                         26
Floating point numbers
               Numbers can be identified by (s, e, f ).
               Represent approximation of real numbers.
               Float types can be described by B, N, q, emin, and emax.
                     B is the base number of the exponent part.
                     N is the number of digits in the fraction part.
                     q is the bias for the exponent part.
                     emax and emin specify the limit of the exponent part.



Monday, October 10, 11                                                       27
Every float is approximation




Monday, October 10, 11                 28
Every float is approximation

                         –1   0   3/2




Monday, October 10, 11                  28
Every float is approximation

                         –1     0     3/2
                         {



                                {




                                      {
                         –1.0   0.0   1.5


Monday, October 10, 11                      28
Every float is approximation

                         –1     0     3/2
                         {



                                {




                                      {
                         –1.0   0.0   1.5


Monday, October 10, 11                      28
Every float is approximation

                         –1     0     3/2
                         {



                                {




                                      {
                         –1.0   0.0   1.5


Monday, October 10, 11                      28
Every float is approximation

               We should think:
                     There are no numbers represented exactly.
                     Floating point numbers always include errors.
                     Magnitude of errors depend on B, N, and e.




Monday, October 10, 11                                               29
Why including errors?


               Unavoidable issue from place-value notation
               with finite digits rounding.
               Very few values can be specified exactly.
               We shouldn’t expect that a given value is exact.




Monday, October 10, 11                                            30
How many decimal fractions
         can be exactly represented in
         the form of binary fraction?


Monday, October 10, 11                   31
Monday, October 10, 11   32
Decimal form:

                           (1234)10
   (0.1234)10            =
                             104




Monday, October 10, 11                32
Decimal form:

                           (1234)10
   (0.1234)10            =
                             104



    Binary form:

                (10111)2
   (0.10111)2 =
                   25




Monday, October 10, 11                32
Decimal form:

                           (1234)10                        (d1 d2 · · · dm )10
   (0.1234)10            =            0.d1 d2 · · · dm   =
                             104                                 10m



    Binary form:

                (10111)2                                 (b1 b2 · · · bn )2
   (0.10111)2 =                       0.b1 b2 · · · bn =
                   25                                           2n




Monday, October 10, 11                                                           32
Decimal form:

                           (1234)10                        (d1 d2 · · · dm )10
   (0.1234)10            =            0.d1 d2 · · · dm   =
                             104                                 10m



    Binary form:

                (10111)2                                 (b1 b2 · · · bn )2
   (0.10111)2 =                       0.b1 b2 · · · bn =
                   25                                           2n




Monday, October 10, 11                                                           32
m
         (d1 d2 · · · dm )10   (d1 d2 · · · dm )10   C5    C
                             =                     = m m = m
               10m                  2m 5m           2 5   2




Monday, October 10, 11                                         33
1.0
                         The ratio of inexact numbers




         0.5




                             The ratio of exact numbers
         0.0
                     0   5         10      15      20       25   30

                             The number of decimal digits
Monday, October 10, 11                                                34
1.0
                         The ratio of inexact numbers




         0.5




                             The ratio of exact numbers
         0.0
                     0   5         10      15 17   20       25   30

                             The number of decimal digits
Monday, October 10, 11                                                34
1.0
                         The ratio of inexact numbers




                                            IEEE754 binary64
         0.5




                             The ratio of exact numbers
         0.0
                     0   5         10      15 17               20   25   30

                             The number of decimal digits
Monday, October 10, 11                                                        34
Decimal in Binary

               A N-digit decimal notation is exactly represented in
               binary notation only if its numerator divisible by 5N.
               The ratio of N-digit decimal fractions exactly
               represented as binary fraction is 1 / 5N.
               In IEEE754 binary64, almost all numbers are inexact.




Monday, October 10, 11                                                  35
Floating-point arithmetics

               add, sub, mul, div, sqrt, ...
               These operations work with errors.
               Please read detail description:
                     “What Every Computer Scientist Should Know
                     About Floating-Point Arithmetic”




Monday, October 10, 11                                            36
Decimal fraction of Ruby




Monday, October 10, 11              37
What’s the problem?

               Ruby interprets literals of decimal fraction as Float
               The following three numbers are Float, so they
               have errors.
                     1.0
                     1.2
                     0.42e+12



Monday, October 10, 11                                                 38
The issues from Float

               There are many issues about Float reported to
               redmine.ruby-lang.org
               They are caused by that Ruby interpretes the
               literals of decimal fraction as Float, I think.
               Do you know these issues?




Monday, October 10, 11                                           39
http://redmine.ruby-lang.org/issues/4576
Monday, October 10, 11                     40
Demonstration




Monday, October 10, 11   41
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4,
         12.700000000000001]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0,
         110.19999999999999, 128.39999999999998]
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 8
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                  42
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
                                          The last value of the array should
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4,
                                           be equal to the end of the range
         12.700000000000001]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0,
         110.19999999999999, 128.39999999999998]
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 8
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                         43
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_aSome elements include errors
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4,
         12.700000000000001]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0,
         110.19999999999999, 128.39999999999998]
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 8
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                  44
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4,
         12.700000000000001]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0,
         110.19999999999999, 128.39999999999998]
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 8
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
                        The array size is one larger than
         => [1, (96/5), (187/5), the correct size (92/1), (551/5)]
                                  (278/5), (369/5),
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                  45
Range#step with Float

               The first case
                     The last value of the array is not equal to the end of
                     the range.
               The second case
                     Some elements include errors.
                     The array size is one larger than the right size.




Monday, October 10, 11                                                        46
Rational with decimal notation

               Introducing one flag into a Rational object.
               The flag represents a Rational seems which
               fraction or decimal.
               If the flag is true, a Rational is converted decimal
               string by to_s.




Monday, October 10, 11                                               47
Literal for Rational with decimal notation



               Simple change for parser.
               Interpreting literal of decimal fraction without exponent
               as Rational with decimal notation.
               Literal of decimal fraction with exponent stays on Float.




Monday, October 10, 11                                                     48
Demonstration
         using the patched Ruby
         https://github.com/mrkn/ruby/tree/decimal_rational_implementation




Monday, October 10, 11                                                       49
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7]
         >> (1.0 .. 12.7).step(1.3).map(&:class)
         => [Rational, Rational, Rational, Rational, Rational, Rational,
         Rational, Rational, Rational, Rational]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.6, 73.8, 92.0, 110.2]
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 7
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                     50
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7]
         >> (1.0 .. 12.7).step(1.3).map(&:class)
         => [Rational, Rational, Rational, Rational, Rational, Rational,
         Rational, Rational, Rational, Rational]
         >> (1.0 ... 128.4).step(18.2).to_a array is equal
                        The last value of the
         => [1.0, 19.2, 37.4, to the end92.0, 110.2]
                               55.6, 73.8, of the range.
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 7
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                     51
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7]
         >> (1.0 .. 12.7).step(1.3).map(&:class)
         => [Rational, Rational, Rational, Rational, Rational, Rational,
         Rational, Rational, Rational, Rational]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.6, 73.8, 92.0, 110.2]
         >> (1.0 ... 128.4).step(18.2).to_a.size is Rational
                      All elements in the array
         => 7                    rather than Float.
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                     52
$ ruby -v
         ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0]
         $ irb --simple-prompt
         >> (1.0 .. 12.7).step(1.3).to_a
         => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7]
         >> (1.0 .. 12.7).step(1.3).map(&:class)
         => [Rational, Rational, Rational, Rational, Rational, Rational,
         Rational, Rational, Rational, Rational]
         >> (1.0 ... 128.4).step(18.2).to_a
         => [1.0, 19.2, 37.4, 55.6, 73.8, 92.0, 110.2]
         >> (1.0 ... 128.4).step(18.2).to_a.size
         => 7
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a
                        The result array size is correct.
         => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)]
         >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size
         => 7

Monday, October 10, 11                                                     53
Benchmarking

               Comparing Float, Rational, and C double.
               Experimental environment:
                     MacBook Pro 15in (Mid 2010)
                     Core i7 2.66 GHz
                     Ruby 1.9.4dev (r33300) with gcc-4.2 -O3
                     C with llvm-gcc -O0



Monday, October 10, 11                                         54
Benchmarking codes

               Ruby code
                     https://gist.github.com/1253088


               C code
                     https://gist.github.com/1253090




Monday, October 10, 11                                 55
Based on ruby-1.9.4dev (r33300)
        3 [s]


                                2.16                     2.17
   2.25 [s]
                                                                                    1.78

     1.5 [s]


                                                  0.73                    0.70
   0.75 [s]
                         0.37

                                        0.00777                 0.00670                    0.00770
        0 [s]
                            1M additions           1M subtractions            1M multiplications

                                Float               Rational                  C double



Monday, October 10, 11                                                                               56
Based on ruby-1.9.4dev (r33300)
   0.01 [s]
                         0.37   2.16              0.73   2.17             0.70      1.78

                                        0.00777                                            0.00770
 0.008 [s]
                                                                0.00670


 0.005 [s]



 0.003 [s]



        0 [s]
                            1M additions           1M subtractions            1M multiplications

                                Float               Rational                  C double



Monday, October 10, 11                                                                               57
Benchmarking summary


               Rational is 2-5 times slower than Float.
               Float is 2-digit order slower than C double.
               C is amazingly fast.




Monday, October 10, 11                                        58
If you said Rational is slow,
         Float isn’t as fast as your expect.



Monday, October 10, 11                         59
Rational vs Float




Monday, October 10, 11       60
Rational vs Float




Monday, October 10, 11       61
Rational vs Float

               Exact computation is required by domains such
               as finance.
               Float is required by scientific computation.




Monday, October 10, 11                                         61
Rational vs Float

               Exact computation is required by domains such
               as finance.
               Float is required by scientific computation.
               Other aspects indepenend of whether Rational or
               Float.




Monday, October 10, 11                                           61
Conclusion

               Float is difficult, troublesome, and not human
               oriented.
               Rational is easy to understand, and human
               oriented.
               It makes us more happy that Ruby interprets
               literal of decimal fraction as Rational.




Monday, October 10, 11                                         62
Float is Legacy




Monday, October 10, 11     63

Más contenido relacionado

Destacado

Serverspec at July Tech Festa 2013
Serverspec at July Tech Festa 2013Serverspec at July Tech Festa 2013
Serverspec at July Tech Festa 2013Gosuke Miyashita
 
Collection development policy and procedures
Collection development policy and proceduresCollection development policy and procedures
Collection development policy and procedureswholkesvig
 
Walter ファミリーの紹介 at Shibuya.go#1
Walter ファミリーの紹介 at Shibuya.go#1Walter ファミリーの紹介 at Shibuya.go#1
Walter ファミリーの紹介 at Shibuya.go#1Gosuke Miyashita
 
Why my Go program is slow?
Why my Go program is slow?Why my Go program is slow?
Why my Go program is slow?Inada Naoki
 
Validation driven change
Validation driven changeValidation driven change
Validation driven changeMichael Goetz
 
Serverspec at Testing Framework Meeting
Serverspec at Testing Framework MeetingServerspec at Testing Framework Meeting
Serverspec at Testing Framework MeetingGosuke Miyashita
 
Presto changes
Presto changesPresto changes
Presto changesN Masahiro
 
Introduction to ATDD with Cucumber and RSpec
Introduction to ATDD with Cucumber and RSpecIntroduction to ATDD with Cucumber and RSpec
Introduction to ATDD with Cucumber and RSpecKenta Murata
 
Introduction to InSpec and 1.0 release update
Introduction to InSpec and 1.0 release updateIntroduction to InSpec and 1.0 release update
Introduction to InSpec and 1.0 release updateAlex Pop
 
Collection Development policies
Collection Development policiesCollection Development policies
Collection Development policiesSarah Wilkie
 
Fluentd at Bay Area Kubernetes Meetup
Fluentd at Bay Area Kubernetes MeetupFluentd at Bay Area Kubernetes Meetup
Fluentd at Bay Area Kubernetes MeetupSadayuki Furuhashi
 
ジョジョの奇妙なTDD
ジョジョの奇妙なTDDジョジョの奇妙なTDD
ジョジョの奇妙なTDDjoker1007
 
Collection development
Collection developmentCollection development
Collection developmentDheeraj Negi
 
2016 - Compliance as Code - InSpec
2016 - Compliance as Code - InSpec2016 - Compliance as Code - InSpec
2016 - Compliance as Code - InSpecdevopsdaysaustin
 
Lecture 1c: Collection Development
Lecture 1c: Collection DevelopmentLecture 1c: Collection Development
Lecture 1c: Collection DevelopmentKC Tan
 

Destacado (20)

Serverspec at July Tech Festa 2013
Serverspec at July Tech Festa 2013Serverspec at July Tech Festa 2013
Serverspec at July Tech Festa 2013
 
Collection development policy and procedures
Collection development policy and proceduresCollection development policy and procedures
Collection development policy and procedures
 
Inspec2
Inspec2Inspec2
Inspec2
 
Inspec
InspecInspec
Inspec
 
Walter ファミリーの紹介 at Shibuya.go#1
Walter ファミリーの紹介 at Shibuya.go#1Walter ファミリーの紹介 at Shibuya.go#1
Walter ファミリーの紹介 at Shibuya.go#1
 
Why my Go program is slow?
Why my Go program is slow?Why my Go program is slow?
Why my Go program is slow?
 
Validation driven change
Validation driven changeValidation driven change
Validation driven change
 
Soul
Soul Soul
Soul
 
Serverspec at Testing Framework Meeting
Serverspec at Testing Framework MeetingServerspec at Testing Framework Meeting
Serverspec at Testing Framework Meeting
 
Presto changes
Presto changesPresto changes
Presto changes
 
Introduction to ATDD with Cucumber and RSpec
Introduction to ATDD with Cucumber and RSpecIntroduction to ATDD with Cucumber and RSpec
Introduction to ATDD with Cucumber and RSpec
 
Introduction to InSpec and 1.0 release update
Introduction to InSpec and 1.0 release updateIntroduction to InSpec and 1.0 release update
Introduction to InSpec and 1.0 release update
 
Collection Development policies
Collection Development policiesCollection Development policies
Collection Development policies
 
INSPEC
INSPECINSPEC
INSPEC
 
Fluentd at Bay Area Kubernetes Meetup
Fluentd at Bay Area Kubernetes MeetupFluentd at Bay Area Kubernetes Meetup
Fluentd at Bay Area Kubernetes Meetup
 
ジョジョの奇妙なTDD
ジョジョの奇妙なTDDジョジョの奇妙なTDD
ジョジョの奇妙なTDD
 
Collection development
Collection developmentCollection development
Collection development
 
2016 - Compliance as Code - InSpec
2016 - Compliance as Code - InSpec2016 - Compliance as Code - InSpec
2016 - Compliance as Code - InSpec
 
PHP7を魔改造した話
PHP7を魔改造した話PHP7を魔改造した話
PHP7を魔改造した話
 
Lecture 1c: Collection Development
Lecture 1c: Collection DevelopmentLecture 1c: Collection Development
Lecture 1c: Collection Development
 

Más de Kenta Murata

The world without the literal notation for floating-point numbers
The world without the literal notation for floating-point numbersThe world without the literal notation for floating-point numbers
The world without the literal notation for floating-point numbersKenta Murata
 
The world without float literal
The world without float literalThe world without float literal
The world without float literalKenta Murata
 
Ruby 1.9.3 の新機能と変更点
Ruby 1.9.3 の新機能と変更点Ruby 1.9.3 の新機能と変更点
Ruby 1.9.3 の新機能と変更点Kenta Murata
 
関数型プログラミングの世界
関数型プログラミングの世界関数型プログラミングの世界
関数型プログラミングの世界Kenta Murata
 
Let's begin Behavior Driven Development using RSpec
Let's begin Behavior Driven Development using RSpecLet's begin Behavior Driven Development using RSpec
Let's begin Behavior Driven Development using RSpecKenta Murata
 
Rubyをたのしくするために私が考えていること
Rubyをたのしくするために私が考えていることRubyをたのしくするために私が考えていること
Rubyをたのしくするために私が考えていることKenta Murata
 
Ruby の懸案事項
Ruby の懸案事項Ruby の懸案事項
Ruby の懸案事項Kenta Murata
 
Rubykaigi2010mrkn bigdecimal
Rubykaigi2010mrkn bigdecimalRubykaigi2010mrkn bigdecimal
Rubykaigi2010mrkn bigdecimalKenta Murata
 
Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)
Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)
Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)Kenta Murata
 
5分で分かる Measure
5分で分かる Measure5分で分かる Measure
5分で分かる MeasureKenta Murata
 
Measure 単位付き数値ライブラリ
Measure 単位付き数値ライブラリMeasure 単位付き数値ライブラリ
Measure 単位付き数値ライブラリKenta Murata
 
情報学特論#02
情報学特論#02情報学特論#02
情報学特論#02Kenta Murata
 
情報学特論#01
情報学特論#01情報学特論#01
情報学特論#01Kenta Murata
 
北海道関数型言語勉強会@札幌#2のお知らせ
北海道関数型言語勉強会@札幌#2のお知らせ北海道関数型言語勉強会@札幌#2のお知らせ
北海道関数型言語勉強会@札幌#2のお知らせKenta Murata
 

Más de Kenta Murata (14)

The world without the literal notation for floating-point numbers
The world without the literal notation for floating-point numbersThe world without the literal notation for floating-point numbers
The world without the literal notation for floating-point numbers
 
The world without float literal
The world without float literalThe world without float literal
The world without float literal
 
Ruby 1.9.3 の新機能と変更点
Ruby 1.9.3 の新機能と変更点Ruby 1.9.3 の新機能と変更点
Ruby 1.9.3 の新機能と変更点
 
関数型プログラミングの世界
関数型プログラミングの世界関数型プログラミングの世界
関数型プログラミングの世界
 
Let's begin Behavior Driven Development using RSpec
Let's begin Behavior Driven Development using RSpecLet's begin Behavior Driven Development using RSpec
Let's begin Behavior Driven Development using RSpec
 
Rubyをたのしくするために私が考えていること
Rubyをたのしくするために私が考えていることRubyをたのしくするために私が考えていること
Rubyをたのしくするために私が考えていること
 
Ruby の懸案事項
Ruby の懸案事項Ruby の懸案事項
Ruby の懸案事項
 
Rubykaigi2010mrkn bigdecimal
Rubykaigi2010mrkn bigdecimalRubykaigi2010mrkn bigdecimal
Rubykaigi2010mrkn bigdecimal
 
Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)
Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)
Ruby における絵文字エンコーディング間の相互変換ダイアグラム (案)
 
5分で分かる Measure
5分で分かる Measure5分で分かる Measure
5分で分かる Measure
 
Measure 単位付き数値ライブラリ
Measure 単位付き数値ライブラリMeasure 単位付き数値ライブラリ
Measure 単位付き数値ライブラリ
 
情報学特論#02
情報学特論#02情報学特論#02
情報学特論#02
 
情報学特論#01
情報学特論#01情報学特論#01
情報学特論#01
 
北海道関数型言語勉強会@札幌#2のお知らせ
北海道関数型言語勉強会@札幌#2のお知らせ北海道関数型言語勉強会@札幌#2のお知らせ
北海道関数型言語勉強会@札幌#2のお知らせ
 

Último

Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 

Último (20)

Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 

Float is Legacy

  • 1. Float is Legacy Kenta Murata RubyConf 2011 Monday, October 10, 11 1
  • 2. Kenta Murata @mrkn CRuby committer bigdecimal maintainer OS X platform maintainer Interested in number system http://www.flickr.com/photos/recompile_net/5951998279/ Monday, October 10, 11 2
  • 5. Kenta Murata @mrkn CRuby committer bigdecimal maintainer OS X platform maintainer Interested in number system Ruby Sapporo http://www.flickr.com/photos/recompile_net/5951998279/ Monday, October 10, 11 4
  • 8. The RubyKaigi is finished. Monday, October 10, 11 7
  • 9. Regional RubyKaigi is continue. Monday, October 10, 11 8
  • 10. Sapporo RubyKaigi 04 in the next summer. Monday, October 10, 11 9
  • 11. Official information will be coming soon. Monday, October 10, 11 10
  • 12. Acknowledgement Tatsuhiro Ujihisa, @ujm HootSuite Media, Inc. Yoshimasa Niwa, @niw Twitter, Inc. Monday, October 10, 11 11
  • 13. Float is Legacy Kenta Murata RubyConf 2011 Monday, October 10, 11 12
  • 14. Summary Float requires us the advanced knowledge Most rubyists don’t need Float Rational is enough for us Literal of decimal fraction interpreted as Rational makes us more happy Monday, October 10, 11 13
  • 16. What is Float class? A wrapper for C double. Boxing a value of double. Need to allocate an object to generate a new Float. Monday, October 10, 11 15
  • 17. Do you know C double? Floating point number with double precision. No concrete representation is specified. Most current platforms employ IEEE754. It is IEEE754 binary64 on these platforms. There are platforms employing other spec. Monday, October 10, 11 16
  • 18. CRuby and JIS Ruby Not requiring IEEE754. Monday, October 10, 11 17
  • 19. Floating point numbers Monday, October 10, 11 18
  • 20. The origin NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol] 34 34 h = +6.626 069 57 ⇥ 10 (±0.000 000 0029 ⇥ 10 ) [J s] Monday, October 10, 11 19
  • 21. The origin NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol] 34 34 h = +6.626 069 57 ⇥ 10 (±0.000 000 0029 ⇥ 10 ) [J s] sign Monday, October 10, 11 19
  • 22. The origin NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol] 34 34 h = +6.626 069 57 ⇥ 10 (±0.000 000 0029 ⇥ 10 ) [J s] fraction part sign Monday, October 10, 11 19
  • 23. The origin NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol] 34 34 h = +6.626 069 57 ⇥ 10 (±0.000 000 0029 ⇥ 10 ) [J s] exponent part fraction part sign Monday, October 10, 11 19
  • 24. The origin NA = +6.022 141 79 ⇥ 1023 (±0.000 000 0030 ⇥ 1023 ) [1/mol] 34 34 h = +6.626 069 57 ⇥ 10 (±0.000 000 0029 ⇥ 10 ) [J s] exponent part: emin  e q  emax fraction part: 0  f  B n 1 sign: s 2 {0, 1} Monday, October 10, 11 20
  • 25. Floating point numbers Numbers can be identified by (s, e, f ). Represent approximation of real numbers. Float types can be described by B, N, q, emin, and emax. B is the base number of the exponent part. N is the number of digits in the fraction part. q is the bias for the exponent part. emax and emin specify the limit of the exponent part. Monday, October 10, 11 21
  • 26. s f e q (s, e, f ) = ( 1) ⇥ N ⇥ B B Monday, October 10, 11 22
  • 27. e.g. IEEE754 binary64 B=2 The maximum positive: 1.797 693 134 862 315 7 ×10+308 N = 53 q = 1,023 The minimum nonzero positive: 2.225 073 858 507 201 4 ×10–308 emin = –1,022 emax = +1,023 Monday, October 10, 11 23
  • 28. s f e q (s, e, f ) = ( 1) ⇥ N ⇥ B B Monday, October 10, 11 24
  • 29. e.g. IEEE754 decimal64 B = 10 The maximum positive: 9.999 999 999 999 999 ×10+384 N = 16 q = 398 The minimum nonzero positive: 0.000 000 000 000 001 ×10–383 emin = –383 emax = +384 Monday, October 10, 11 25
  • 30. e.g. IBM’s double precision B = 16 The maximum positive: 7.237 005 577 332 262 11 ×10+75 N = 56 q = 64 The minimum nonzero positive: 5.397 605 346 934 027 89 ×10–79 emin = –64 emax = +63 Monday, October 10, 11 26
  • 31. Floating point numbers Numbers can be identified by (s, e, f ). Represent approximation of real numbers. Float types can be described by B, N, q, emin, and emax. B is the base number of the exponent part. N is the number of digits in the fraction part. q is the bias for the exponent part. emax and emin specify the limit of the exponent part. Monday, October 10, 11 27
  • 32. Every float is approximation Monday, October 10, 11 28
  • 33. Every float is approximation –1 0 3/2 Monday, October 10, 11 28
  • 34. Every float is approximation –1 0 3/2 { { { –1.0 0.0 1.5 Monday, October 10, 11 28
  • 35. Every float is approximation –1 0 3/2 { { { –1.0 0.0 1.5 Monday, October 10, 11 28
  • 36. Every float is approximation –1 0 3/2 { { { –1.0 0.0 1.5 Monday, October 10, 11 28
  • 37. Every float is approximation We should think: There are no numbers represented exactly. Floating point numbers always include errors. Magnitude of errors depend on B, N, and e. Monday, October 10, 11 29
  • 38. Why including errors? Unavoidable issue from place-value notation with finite digits rounding. Very few values can be specified exactly. We shouldn’t expect that a given value is exact. Monday, October 10, 11 30
  • 39. How many decimal fractions can be exactly represented in the form of binary fraction? Monday, October 10, 11 31
  • 41. Decimal form: (1234)10 (0.1234)10 = 104 Monday, October 10, 11 32
  • 42. Decimal form: (1234)10 (0.1234)10 = 104 Binary form: (10111)2 (0.10111)2 = 25 Monday, October 10, 11 32
  • 43. Decimal form: (1234)10 (d1 d2 · · · dm )10 (0.1234)10 = 0.d1 d2 · · · dm = 104 10m Binary form: (10111)2 (b1 b2 · · · bn )2 (0.10111)2 = 0.b1 b2 · · · bn = 25 2n Monday, October 10, 11 32
  • 44. Decimal form: (1234)10 (d1 d2 · · · dm )10 (0.1234)10 = 0.d1 d2 · · · dm = 104 10m Binary form: (10111)2 (b1 b2 · · · bn )2 (0.10111)2 = 0.b1 b2 · · · bn = 25 2n Monday, October 10, 11 32
  • 45. m (d1 d2 · · · dm )10 (d1 d2 · · · dm )10 C5 C = = m m = m 10m 2m 5m 2 5 2 Monday, October 10, 11 33
  • 46. 1.0 The ratio of inexact numbers 0.5 The ratio of exact numbers 0.0 0 5 10 15 20 25 30 The number of decimal digits Monday, October 10, 11 34
  • 47. 1.0 The ratio of inexact numbers 0.5 The ratio of exact numbers 0.0 0 5 10 15 17 20 25 30 The number of decimal digits Monday, October 10, 11 34
  • 48. 1.0 The ratio of inexact numbers IEEE754 binary64 0.5 The ratio of exact numbers 0.0 0 5 10 15 17 20 25 30 The number of decimal digits Monday, October 10, 11 34
  • 49. Decimal in Binary A N-digit decimal notation is exactly represented in binary notation only if its numerator divisible by 5N. The ratio of N-digit decimal fractions exactly represented as binary fraction is 1 / 5N. In IEEE754 binary64, almost all numbers are inexact. Monday, October 10, 11 35
  • 50. Floating-point arithmetics add, sub, mul, div, sqrt, ... These operations work with errors. Please read detail description: “What Every Computer Scientist Should Know About Floating-Point Arithmetic” Monday, October 10, 11 36
  • 51. Decimal fraction of Ruby Monday, October 10, 11 37
  • 52. What’s the problem? Ruby interprets literals of decimal fraction as Float The following three numbers are Float, so they have errors. 1.0 1.2 0.42e+12 Monday, October 10, 11 38
  • 53. The issues from Float There are many issues about Float reported to redmine.ruby-lang.org They are caused by that Ruby interpretes the literals of decimal fraction as Float, I think. Do you know these issues? Monday, October 10, 11 39
  • 56. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.700000000000001] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0, 110.19999999999999, 128.39999999999998] >> (1.0 ... 128.4).step(18.2).to_a.size => 8 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 42
  • 57. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a The last value of the array should => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, be equal to the end of the range 12.700000000000001] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0, 110.19999999999999, 128.39999999999998] >> (1.0 ... 128.4).step(18.2).to_a.size => 8 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 43
  • 58. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_aSome elements include errors => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.700000000000001] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0, 110.19999999999999, 128.39999999999998] >> (1.0 ... 128.4).step(18.2).to_a.size => 8 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 44
  • 59. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.700000000000001] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.599999999999994, 73.8, 92.0, 110.19999999999999, 128.39999999999998] >> (1.0 ... 128.4).step(18.2).to_a.size => 8 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a The array size is one larger than => [1, (96/5), (187/5), the correct size (92/1), (551/5)] (278/5), (369/5), >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 45
  • 60. Range#step with Float The first case The last value of the array is not equal to the end of the range. The second case Some elements include errors. The array size is one larger than the right size. Monday, October 10, 11 46
  • 61. Rational with decimal notation Introducing one flag into a Rational object. The flag represents a Rational seems which fraction or decimal. If the flag is true, a Rational is converted decimal string by to_s. Monday, October 10, 11 47
  • 62. Literal for Rational with decimal notation Simple change for parser. Interpreting literal of decimal fraction without exponent as Rational with decimal notation. Literal of decimal fraction with exponent stays on Float. Monday, October 10, 11 48
  • 63. Demonstration using the patched Ruby https://github.com/mrkn/ruby/tree/decimal_rational_implementation Monday, October 10, 11 49
  • 64. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7] >> (1.0 .. 12.7).step(1.3).map(&:class) => [Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.6, 73.8, 92.0, 110.2] >> (1.0 ... 128.4).step(18.2).to_a.size => 7 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 50
  • 65. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7] >> (1.0 .. 12.7).step(1.3).map(&:class) => [Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational] >> (1.0 ... 128.4).step(18.2).to_a array is equal The last value of the => [1.0, 19.2, 37.4, to the end92.0, 110.2] 55.6, 73.8, of the range. >> (1.0 ... 128.4).step(18.2).to_a.size => 7 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 51
  • 66. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7] >> (1.0 .. 12.7).step(1.3).map(&:class) => [Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.6, 73.8, 92.0, 110.2] >> (1.0 ... 128.4).step(18.2).to_a.size is Rational All elements in the array => 7 rather than Float. >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 52
  • 67. $ ruby -v ruby 1.9.4dev (2011-09-28 trunk 33354) [x86_64-darwin10.8.0] $ irb --simple-prompt >> (1.0 .. 12.7).step(1.3).to_a => [1.0, 2.3, 3.6, 4.9, 6.2, 7.5, 8.8, 10.1, 11.4, 12.7] >> (1.0 .. 12.7).step(1.3).map(&:class) => [Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational, Rational] >> (1.0 ... 128.4).step(18.2).to_a => [1.0, 19.2, 37.4, 55.6, 73.8, 92.0, 110.2] >> (1.0 ... 128.4).step(18.2).to_a.size => 7 >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a The result array size is correct. => [1, (96/5), (187/5), (278/5), (369/5), (92/1), (551/5)] >> (1 ... 1284.quo(10)).step(182.quo(10)).to_a.size => 7 Monday, October 10, 11 53
  • 68. Benchmarking Comparing Float, Rational, and C double. Experimental environment: MacBook Pro 15in (Mid 2010) Core i7 2.66 GHz Ruby 1.9.4dev (r33300) with gcc-4.2 -O3 C with llvm-gcc -O0 Monday, October 10, 11 54
  • 69. Benchmarking codes Ruby code https://gist.github.com/1253088 C code https://gist.github.com/1253090 Monday, October 10, 11 55
  • 70. Based on ruby-1.9.4dev (r33300) 3 [s] 2.16 2.17 2.25 [s] 1.78 1.5 [s] 0.73 0.70 0.75 [s] 0.37 0.00777 0.00670 0.00770 0 [s] 1M additions 1M subtractions 1M multiplications Float Rational C double Monday, October 10, 11 56
  • 71. Based on ruby-1.9.4dev (r33300) 0.01 [s] 0.37 2.16 0.73 2.17 0.70 1.78 0.00777 0.00770 0.008 [s] 0.00670 0.005 [s] 0.003 [s] 0 [s] 1M additions 1M subtractions 1M multiplications Float Rational C double Monday, October 10, 11 57
  • 72. Benchmarking summary Rational is 2-5 times slower than Float. Float is 2-digit order slower than C double. C is amazingly fast. Monday, October 10, 11 58
  • 73. If you said Rational is slow, Float isn’t as fast as your expect. Monday, October 10, 11 59
  • 74. Rational vs Float Monday, October 10, 11 60
  • 75. Rational vs Float Monday, October 10, 11 61
  • 76. Rational vs Float Exact computation is required by domains such as finance. Float is required by scientific computation. Monday, October 10, 11 61
  • 77. Rational vs Float Exact computation is required by domains such as finance. Float is required by scientific computation. Other aspects indepenend of whether Rational or Float. Monday, October 10, 11 61
  • 78. Conclusion Float is difficult, troublesome, and not human oriented. Rational is easy to understand, and human oriented. It makes us more happy that Ruby interprets literal of decimal fraction as Rational. Monday, October 10, 11 62
  • 79. Float is Legacy Monday, October 10, 11 63