Download presentation
Presentation is loading. Please wait.
Published byNancy Brooks Modified over 9 years ago
1
Data Representation: Floating Point for Real Numbers Computer Organization and Assembly Language: Module 11
2
Floating Point Representation u The IEEE-754 Floating Point Standard is a widely used floating point representation from among the many alternative formats u The representation of floating point numbers contains: a mantissa (variant of a scaled, sign magnitude integer) an exponent (8-bit, biased-127 integer) u In this way floating point representation resembles scientific notation Any number N can be represented as M*10^e, where e = floor(log 10 N) M = N/(10^e) 1 < M < 10
3
A number N represented in floating point is determined by the mantissa m, an exponent e, and its sign, s N = (-1) s * m * 2 e If the sign is negative, s = 1. If the sign is positive, s = 0. The mantissa is normalized, i.e., 1 m < 2 u In the IEEE-754 single precision format, the mantissa is represented with 23 bits (only the fractional part is stored m = (+/-) 1.f 22 f 21 …f 1 f 0 u Double precision floating point works the same way, but the bit fields are larger: 1-bit sign, 11-bit exponent, 52 bits for the fractional part of the mantissa Floating Point Representation
4
Conversion to base-2 1.Break the decimal number into two parts: an integer and a fraction 2.Convert the integer into binary and place it to the left of the binary point 3.Convert the fraction into binary and place it to the right of the binary point 4.Write it in base-2 scientific notation and normalize
5
Convert 22.625 to floating point representation 1. Convert 22 to binary. 22 10 = 10110 2 2. Convert.625 to binary 2*.625= 1 +.25 2*.25 = 0 +.5 2*.5= 1 + 0 3. Thus 22.625 10 = 10110.101 2 4. In base –2 scientific notation: 10110.101*2 0 Normalized form: 1.0110101*2 4 Example.625 10 =.101 2
6
IEEE-754 SPFP Representation u Given the floating point representation N = (-1) s * m * 2 e where m = 1.f 22 f 21 …f 1 f 0 u we can convert it to the IEEE-754 SPFP format using the relations: F = (m-1)*2 23 (hence F is an integer) E =e + 127 S =s SEF
7
Single-Precision Floating Point The IEEE-754 single precision format has 32 bits distributed as 0 E 255, thus the actual exponent e (interpreted as biased-127) is restricted so that -127 e 128 But e = -127 and e = 128 have special meaning SEF 1 823
8
Special values and the hidden bit In IEEE-754, zero is represented by setting E = F = 0 regardless of the sign bit, thus there are two representations for zero: +0 and -0. + by S=0, E=255, F=0 - by S=1, E=255, F=0 NaN or Not-a-Number by E=255, F 0 (may result from 0 divided by 0) u The leading 1 in the fraction is not represented. It is the hidden bit.
9
Converting to IEEE-754 SPFP 1.Convert into a normalized base-2 representation 2.Bias the exponent. The result will be E. 3.Put the values into the correct field. Note that only the fractional part of the mantissa is stored in F.
10
Example Convert 22.625 to IEEE-754 SPFP format 1. In scientific notation: 10110.101*2 0 Normalized form: 1.0110101*2 4 2. Bias the exponent: 4 + 127 = 131 131 10 = 10000011 2 3. Place into the correct fields. S = 0 E = 10000011 F = 011 0101 0000 0000 0000 0000 100000110 SE F 01101010000000000000000
11
Example Convert 17.15 to IEEE FPS format 17.15 10 = 10001.0010 0110 0110 0110 011*2 0 1. Normalized form: 1. 0001 0010 0110 0110 0110 011 * 2 4 2. Bias the exponent: 4 + 127 = 131 131 10 = 10000011 2 3. Place into the correct fields. S = 0 E = 10000011 F = 000 1001 0011 0011 0011 0011 00010010011001100110011100000110 SE F
12
Example Convert -83.7 to IEEE FPS format (single precision) 2*.7 = 1 +.4 2*.4 = 0 +.8 2*.8 = 1 +.6 2*.6 = 1 +.2 2*.2 = 0 +.4 2*.4 = 0 +.8 2*.8 = 1 +.6 2*.6 = 1 +.2 2*.2 = 0 +.4... -83.7 10 =-1010011.101100110
13
1. In binary scientific notation: -1010011.10110011001100110 * 2 0 Normalized: -1.01001110110011001100110 * 2 6 2. Bias the exponent: 6 + 127 = 133 133 10 = 10000101 2 3. Place into the correct fields S = 1 E = 10000101 F = 01001110110011001100110 01001110110011001100110100001011 SE F
14
Representing as hexadecimal u It is difficult for people to read binary one bit pattern looks much like another u Raw data, which is not being interpreted as representing a particular data type, is often displayed using hexadecimal instead of binary u The final step in many IEEE-754 SPFP problems will be to convert the result to hexadecimal 11000010101001110110011001100110 C2A76666
15
u Given a single precision floating point number with bit fields S, E, and F (interpreted as unsigned integers), the value of the number is normally calculated as N = (-1) S (1 + F/2 23 )2 E-127 u This interpretation is not used when E = 255 (+ , - , or NaN) E = 0, F = 0 (+0 or –0) What about E 0, F 0? Graceful underflow
16
u Given a single precision floating point number with bit fields S, E = 0, and F (interpreted as unsigned integers), the value of the number is calculated as N = (-1) S (0 + F/2 23 )2 -126 u This allows representation of numbers as small as 2 -149, though each order of magnitude below 2 -126 results in loss of one bit of precision. Graceful underflow
17
u Normal interpretation: N = 2 (1 – 127) = 2 -126 24 bits of precision (counting the hidden bit) u E = 0 interpretation: N = 2 -126 (.1 2 ) = 2 -126 (.5) = 2 -127 Only 23 bits of precision u E =0 interpretation: N = 2 -126 (.0001 2 ) = 2 -126 (.0625) = 2 -130 Only 20 bits of precision Graceful underflow 0 00000001 000000000000000000000000 00000000 100000000000000000000000 00000000 00010000000000000000000
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.