1 / 49

Floating point variables of different lengths

Floating point variables of different lengths. Trade-off: accuracy vs. memory space. Recall that the computer can combine adjacent bytes in the RAM memory to form larger memory cells. Trade-off: accuracy vs. memory space (cont.). Effect of combining memory cells:  .

carlow
Télécharger la présentation

Floating point variables of different lengths

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. Floating point variables of different lengths

  2. Trade-off: accuracy vs. memory space • Recall that the computer can combine adjacent bytes in the RAM memory to form larger memory cells

  3. Trade-off: accuracy vs. memory space (cont.) • Effect of combining memory cells:  

  4. Trade-off: accuracy vs. memory space (cont.) • Trade-off between accuracy and memory usage • To obtain a higher accuracy (= more significant digit of accuracy), we need to combine more memory cells

  5. Another trade-off: speed • Fact: • Arithmetic expressions that uses higher accuracy will take longer time to compute • (It take longer time to multiple 15 digit numbers than 2 digit numbers)

  6. Another trade-off: speed (cont.) • Trade-off between accuracy and speed • When a Java program needs to use higher accurate numbers, it will not only use more memory, but it will alsotake a longer time to complete.

  7. Floating point numbers in Java • Java provides 2 different sizes of floating point numbers (and variables): • Single precisionfloating numbers (has lower accuracy and uses less memory) • Double precisionfloating numbers (has more accuracy and uses more memory)

  8. Floating point numbers in Java (cont.) • This offer programmers more flexibility: • Computations that have low accuracy requirements can use a single precision to save memory space and run faster • Computations that have high accuracy requirementsmust use a larger size to attain the required accuracy

  9. Floating point numbers in Java (cont.) • Single precisionfloating point variable: • uses 4 consecutive bytes of memory as a single 32 bit memory cell • A single precision floating point variable can represent a floating point number: • in range of from −1038 to 1038 • and with about 7 decimal digits accuracy

  10. Floating point numbers in Java (cont.) • A double precisionfloating point variable is a variable that: • uses 8 consecutive bytes of memory as a single 64 bit memory cell • A double precision floating point variable can represent a floating point number: • in range of from −10308 to 10308 • and with about 15 decimal digits accuracy

  11. Defining single and double precision floating point variables • We have already learned how to define single precisionfloating point variables: • The syntax used to define single precision floating point variables is similar to the one used to define double precision floating point variables The only difference is that we need to use a different keyword to denote single precision floating point variables double variableName ;

  12. Defining single and double precision floating point variables (cont.) • Syntax to define single precisionfloating point variables: float variableName ;

  13. Warning: float and double are considered as different types • What determine a type: • Because single and double precisionfloating point numbers uses different encoding methods, Java considers them as different types • Each data type uses a unique data encoding method

  14. Warning: float and double are considered as different types (cont.) • You can use the tool below (next slide) to experience how a single precision floating point number is encoded: • Type in a decimal number in the field named Decimal representation • Press enter to see the 32 bits pattern used to encode the decimal number

  15. Warning: float and double are considered as different types (cont.) • Check the website for Decimal representation. • The row of tiny squares are the 32 bits • Checked square represents a bit 1 and unchecked square represents a bit 0

  16. Warning: float and double are considered as different types (cont.) • The following webpage let you compare the different encoding used in single and double precision: http://mathcs.emory/~cheung/Courses/170/Syllabus/04/IEEE-float/IEEE-754-encoding.html • Usage: Enter a decimal number in the Decimal Floating-Point field and press Not Rounded

  17. Converting (casting) to a single or a double precision representation • The computer has built-in machine instructions to convert between different encodings • The Java programming language provides access the computer's conversion operations through a number of conversion operators • Computer jargon: • Casting operation = a type conversion operation

  18. Converting (casting) to a single or a double precision representation (cont.) • Java's Casting operators for single and double precision floating point numbers: (float) --- convert to the single precision floating point representation (double) --- convert to the double precision floating point representation

  19. Converting (casting) to a single or a double precision representation (cont.) • Example 1: conversion sequence float ⇒ double ⇒ float public class Casting01 { public static void main(String[] args) { float x; // Define single precision floating point double y; // Define double precision floating point x = 3.1415927f; // f denotes "float" y = (double) x; // **** convert to double representation

  20. Converting (casting) to a single or a double precision representation (cont.) System.out.print("Original single precision x = "); System.out.println(x); System.out.print("Converted double precision y = "); System.out.println(y); x = (float) y; // **** convert to float representation System.out.print("Re-converted single precision x = "); System.out.println(x); } }

  21. Converting (casting) to a single or a double precision representation (cont.) Output: Original single precision x = 3.1415927 Converted double precision y = 3.1415927410125732 Re-converted single precision x = 3.1415927

  22. Converting (casting) to a single or a double precision representation (cont.) • Notes: • The trailing letterf in "3.1415927f" denotes a float typed number • (Yes, even numbers are typed in Java) • Notice that accuracy of variable x was preserved after the second conversion

  23. Converting (casting) to a single or a double precision representation (cont.) • Example: conversion sequence double ⇒ float ⇒ double public class Casting01 { public static void main(String[] args) { float x; // Define single precision floating point double y; // Define double precision floating point x = 3.1415927f; // f denotes "float" y = (double) x; // **** convert to double representation

  24. Converting (casting) to a single or a double precision representation (cont.) System.out.print("Original single precision x = "); System.out.println(x); System.out.print("Converted double precision y = "); System.out.println(y); x = (float) y; // **** convert to float representation System.out.print("Re-converted single precision x = "); System.out.println(x); } }

  25. Converting (casting) to a single or a double precision representation (cont.) • Output: Original double precision x = 3.14159265358979 Converted single precision y = 3.1415927 Re-converted double precision x = 3.1415927410125732

  26. Converting (casting) to a single or a double precision representation (cont.) • Notes: • A decimal numberwithout a trailing "f" has the data type double • Notice that we have lostmany digits of accuracy in the float ⇒ double conversion !!!

  27. Priority level of the casting operators • I want to emphasize that: are operators • (double) • (float)

  28. Priority level of the casting operators (cont.) • The casting operators in Java are unary operators (i.e., has 1 operand) Analogy:

  29. Priority level of the casting operators (cont.) • Operators in Java has a priority level Priority level of casting operators:

  30. Priority level of the casting operators (cont.) • When operators of different priority appear in one single arithmetic expression, then the operator with the highest priority is executed first. • It's the same as what you have learned in Elementary School...

  31. Phenomenon: lost of accuracy • In the previous 2 examples, we have observed the following phenomenon:

  32. Phenomenon: lost of accuracy (cont.) • Observation: • When we convert a float to a double and then back to a float, there is no loss in accuracy • When we convert a double to a float and then back to a float, there is a high loss in accuracy

  33. Phenomenon: lost of accuracy (cont.) • We can understand why we lose accuracy if we depict the conversion process as follows:

  34. Phenomenon: lost of accuracy (cont.) • Explanation: • The float ⇒ double ⇒ float steps pass through a widening conversion and retain accuracy • The double ⇒ float ⇒ double steps pass through a narrowing conversion and lost accuracy

  35. Overflow condition • When converting a higher accuracy type to a lower accuracy type, you may cause an overflow condition • Overflow: • Each data type can represent a certainrange of values • Overflow = storing a out of range value into a variable

  36. Overflow condition • Example: • A double typed variable can store a value in the range of −10308 ... 10308 • A float typed variable can only store a value in the range of −1038 ... 1038

  37. Overflow condition (cont.) • Here is a Java program with an overflow condition: public class Overflow1 { public static void main(String[] args) { double d; // range: -10^(308) .. 10^(308) float f; // range: -10^(38) .. 10^(38) d = 3.1415e100; // In range of "double", out of range of "float" f = (float) d; // Overflow !!! System.out.print("d = "); System.out.println(d); System.out.print("f = "); System.out.println(f); } }

  38. Overflow condition (cont.) • Output of this program: d = 3.1415E100 f = Infinity

  39. Overflow condition (cont.) • Conclusion: • When you convert a values from a higher accuracy type to a lower accuracy type, you may cause a significant loss of information

  40. Safe and unsafe conversion operations • Safe and unsafe conversions: • Safe conversion = a conversion from one representation (encoding) to another representation (encoding) where there is no loss in accuracy • Unsafe conversion = a conversion from one representation (encoding) to another representation (encoding) where there is significant loss in accuracy

  41. Safe and unsafe conversion operations (cont.) • We saw in the previous example that: • double ⇒ float is a safe conversion • float ⇒ double is a unsafe conversion

  42. Expressions containing values of different types • It is common to use different data types in the same Java program • Little known fact about a computer: • A computer can only operate on data of the same data type • In other words: • A computer can only add two double typed values • A computer can only subtract two double double values • And so on.

  43. Expressions containing values of different types (cont.) • A computer does not have an instruction to add (or subtract) a double typed value and a float typed value (This has to do with the encoding method used for different types of data) • A computer can only add two float typed values • A computer can only subtract two float double values • And so on.

  44. Expressions containing values of different types (cont.) • Operations on different types of value: • In order to perform any operation on two values of differing types, the computer must: • Convertone of the types into the other type • Perform the operation on the value (now of the same type

  45. Automatic conversion performed in Java • It is extremely inconvenient for programmers to have to write conversion operations when values of different types are used in the same expression • Java makes writing programs less painful by providing a number of automatic conversions The automatic conversions are allsafe conversion

  46. Automatic conversion performed in Java (cont.) • Java conversion rule: • lower type OP higher type   ⇒   higher type OP higher type • When values and/or variables of different types are used in an arithmetic expression (OP), the values and/or variables of the less accurate type is automatically converted to the more accurate type • The operation (OP) is then performed on 2 values of the more accurate type • The result of the operation is also of the more accurate type

  47. Automatic conversion performed in Java (cont.) • Assignment statement:   type1 = type2 ; • If type1 is a higher accuracy type than type2, then the type2 value is automatically converted to type1 before the assignment statement is executed. • (Because the conversion was safe) • If type1 is a lower accuracy type than type2, then the assignment statement is not allowed You will need to use an casting operator to make the assignment statement valid.

  48. Automatic conversion performed in Java (cont.) • Examples: float x; double y; y = x; ===> higher accuracy type = lower accuracy type 1. the float value in x is converted to a double 2. the (converted) value is assigned to y x = y; ===> lower accuracy type = higher accuracy type This assignment is NOT allowed (see rules above) (This is because the conversion is unsafe) x = (float) y; ===> 1. The casting operator(float) converts the double value into a float value

  49. Automatic conversion performed in Java (cont.) 2. The (converted) float value is assigned to x y = x + y; ===> x + y 1. the float value is x is converted to a double 2. then + is performed on 2 double values y = double result 3. The result is double and can be assigned to y (because y is a double typed variable) x = x + y; ===> x + y 1. the float value is x is converted to a double 2. then + is performed on 2 double values x = double result 3. The result is double and cannot be assigned to x (because x is a float typed variable

More Related