1 / 8

Evaluating the floating point in Java Virtual Machine

Evaluating the floating point in Java Virtual Machine. Bruno José Torres Fernandes Renato Viana Ferreira Marcília Andrade Campos {bjtf, rvf, mac}@cin.ufpe.br. Motivation. Analysis of floating precision error in the Java programming language. Rounding modes implementation.

russ
Télécharger la présentation

Evaluating the floating point in Java Virtual Machine

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Evaluating the floating point in Java Virtual Machine Bruno José Torres Fernandes Renato Viana Ferreira Marcília Andrade Campos {bjtf, rvf, mac}@cin.ufpe.br

  2. Motivation • Analysis of floating precision error in the Java programming language. • Rounding modes implementation. • Interval type implementantion to control errors in scientific computation.

  3. Representing floating points numbers • The Java programming language offers two primitive types, float and double, and the wrapper classes Float and Double from the java.lang package. • Double representation:

  4. Double Precision • The double primitive type supports 16 decimal digits but it only offers correctness for the 14 most significant digits. • For scientific computation, which needs high precision, this error margin is not acceptable, for it can cause wrong results.

  5. Examples...

  6. Alternatives • Floating point is by nature inexact, but the Java Virtual Machine offers the BigDecimal class from the package java.math that offers perfect precision storing the floating value as two integers, the unscaled value as an integer and a non-negative 32-bit integer scale, which represents the number of digits to the right of the decimal point.

  7. Purpose of the project • Implement double rounding modes; • Implement Interval type in Java and operations over the type; • Build Java-XSC API.

  8. Questions...

More Related