DOC PREVIEW
CMU CS 15213 - Lecture

This preview shows page 1-2-16-17-18-33-34 out of 34 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 34 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Floating Point ArithmeticSept 5, 2007Floating Point PuzzlesIEEE Floating PointFractional Binary NumbersFrac. Binary Number ExamplesRepresentable NumbersFloating Point RepresentationFloating Point Precisions“Normalized” Numeric ValuesNormalized Encoding ExampleDenormalized ValuesSpecial ValuesSummary of Floating Point Real Number EncodingsTiny Floating Point ExampleValues Related to the ExponentDynamic RangeDistribution of ValuesDistribution of Values(close-up view)Interesting NumbersSpecial Properties of EncodingFloating Point OperationsCloser Look at Round-To-EvenRounding Binary NumbersFP MultiplicationFP AdditionMathematical Properties of FP AddMath. Properties of FP MultCreating Floating Point NumberNormalizeRoundingPostnormalizeFloating Point in CCurious Excel BehaviorSummary15-213Floating Point ArithmeticSept 5, 2007TopicsTopics IEEE Floating Point Standard Rounding Floating Point Operations Mathematical propertiesclass03.ppt15-213 F’07Floating Point PuzzlesFloating Point Puzzles For each of the following C expressions, either:z Argue that it is true for all argument valuesz Explain why not true–2–15-213: Intro to Computer SystemsFall 2007 ©• x == (int)(float) x• x == (int)(double) x• f == (float)(double) f• d == (float) d• f == -(-f);• 2/3 == 2/3.0• d < 0.0 ⇒ ((d*2) < 0.0)• d > f ⇒ -f > -d• d * d >= 0.0• (d+f)-d == fint x = …;float f = …;double d = …;Assume neitherd nor f is NaNIEEE Floating PointIEEE Floating Point–3–15-213: Intro to Computer SystemsFall 2007 ©IEEE Standard 754IEEE Standard 754 Established in 1985 as uniform standard for floating point arithmeticz Before that, many idiosyncratic formats Supported by all major CPUsDriven by Numerical ConcernsDriven by Numerical Concerns Nice standards for rounding, overflow, underflow Hard to make go fastz Numerical analysts predominated over hardware types in defining standardFractional Binary NumbersFractional Binary Numbersbibi–1b2b1b0b–1b–2b–3b–j••••••.1242i2i–1••••••1/21/41/82–jRepresentationRepresentation Bits to right of “binary point” represent fractional powers of 2 Represents rational number:bk⋅2kk=−ji∑–4–15-213: Intro to Computer SystemsFall 2007 ©Frac. Binary Number ExamplesFrac. Binary Number Examples–5–15-213: Intro to Computer SystemsFall 2007 ©ValueValueRepresentationRepresentation5-3/4 101.1122-7/8 10.111263/64 0.1111112ObservationsObservations Divide by 2 by shifting right Multiply by 2 by shifting left Numbers of form 0.111111…2 just below 1.0z1/2 + 1/4 + 1/8 + … + 1/2i+ … → 1.0zUse notation 1.0 – εRepresentable NumbersRepresentable Numbers–6–15-213: Intro to Computer SystemsFall 2007 ©LimitationLimitation Can only exactly represent numbers of the form x/2k Other numbers have repeating bit representationsValueValueRepresentationRepresentation1/3 0.0101010101[01]…21/5 0.001100110011[0011]…21/10 0.0001100110011[0011]…2Floating Point RepresentationFloating Point Representation–7–15-213: Intro to Computer SystemsFall 2007 ©Numerical FormNumerical Form –1sM 2EzSign bit s determines whether number is negative or positivezSignificand M normally a fractional value in range [1.0,2.0).zExponent E weights value by power of twoEncodingEncoding MSB is sign bit exp field encodes E frac field encodes Ms exp fracFloating Point PrecisionsFloating Point Precisions–8–15-213: Intro to Computer SystemsFall 2007 ©EncodingEncoding MSB is sign bit exp field encodes E frac field encodes MSizesSizes Single precision: 8 exp bits, 23 frac bitsz32 bits total Double precision: 11 exp bits, 52 frac bitsz64 bits total Extended precision: 15 exp bits, 63 frac bitszOnly found in Intel-compatible machineszStored in 80 bits» 1 bit wasteds exp frac“Normalized” Numeric Values“Normalized” Numeric Values–9–15-213: Intro to Computer SystemsFall 2007 ©ConditionCondition exp ≠ 000…0 and exp ≠ 111…1Exponent coded as Exponent coded as biasedbiasedvaluevalueE = Exp – BiaszExp : unsigned value denoted by exp zBias : Bias value» Single precision: 127 (Exp: 1…254, E: -126…127)» Double precision: 1023 (Exp: 1…2046, E: -1022…1023)» in general: Bias = 2e-1- 1, where e is number of exponent bitsSignificandSignificandcoded with implied leading 1coded with implied leading 1M = 1.xxx…x2z xxx…x: bits of fraczMinimum when 000…0 (M = 1.0)zMaximum when 111…1 (M = 2.0 – ε)zGet extra leading bit for “free”Normalized Encoding ExampleNormalized Encoding Example–10–15-213: Intro to Computer SystemsFall 2007 ©ValueValueFloat F = 15213.0; 1521310= 111011011011012 = 1.11011011011012X 213SignificandSignificandM = 1.11011011011012frac = 110110110110100000000002ExponentExponentE = 13Bias = 127Exp = 140 = 100011002Floating Point Representation:Hex: 4 6 6 D B 4 0 0 Binary: 0100 0110 0110 1101 1011 0100 0000 0000140: 100 0110 015213: 1110 1101 1011 01Denormalized ValuesDenormalized Values–11–15-213: Intro to Computer SystemsFall 2007 ©ConditionCondition exp = 000…0ValueValue Exponent value E = –Bias + 1 Significand value M = 0.xxx…x2z xxx…x: bits of fracCasesCases exp = 000…0, frac = 000…0z Represents value 0z Note that have distinct values +0 and –0 exp = 000…0, frac ≠ 000…0z Numbers very close to 0.0z Lose precision as get smallerz “Gradual underflow”Special ValuesSpecial Values–12–15-213: Intro to Computer SystemsFall 2007 ©ConditionCondition exp = 111…1CasesCases exp = 111…1, frac = 000…0z Represents value ∞ (infinity)z Operation that overflowsz Both positive and negativez E.g., 1.0/0.0 = −1.0/−0.0 = +∞, 1.0/−0.0 = −∞ exp = 111…1, frac ≠ 000…0z Not-a-Number (NaN)z Represents case when no numeric value can be determinedz E.g., sqrt(–1), ∞ − ∞, ∞ ∗ 0Summary of Floating Point Real Number EncodingsSummary of Floating Point Real Number Encodings–13–15-213: Intro to Computer SystemsFall 2007 ©NaNNaN+∞−∞-Normalized +Denorm +Normalized-Denorm−0+0Tiny Floating Point ExampleTiny Floating Point Example–14–15-213: Intro to Computer SystemsFall 2007 ©88--bit Floating Point Representationbit Floating Point Representation the sign bit is in the most significant bit. the next four bits are the exponent, with a bias of 7. the last three bits are the fraczzSame


View Full Document

CMU CS 15213 - Lecture

Documents in this Course
lecture

lecture

14 pages

lecture

lecture

46 pages

Caches

Caches

9 pages

lecture

lecture

39 pages

Lecture

Lecture

36 pages

Lecture

Lecture

45 pages

Lecture

Lecture

56 pages

lecture

lecture

11 pages

lecture

lecture

9 pages

Lecture

Lecture

36 pages

Lecture

Lecture

37 pages

Exam

Exam

16 pages

Lecture

Lecture

10 pages

Lecture

Lecture

43 pages

Lecture

Lecture

8 pages

Lecture

Lecture

8 pages

Lecture

Lecture

36 pages

Lecture

Lecture

43 pages

Lecture

Lecture

12 pages

Lecture

Lecture

37 pages

Lecture

Lecture

6 pages

Lecture

Lecture

40 pages

coding

coding

2 pages

Exam

Exam

17 pages

Exam

Exam

14 pages

Lecture

Lecture

29 pages

Lecture

Lecture

34 pages

Exam

Exam

11 pages

Lecture

Lecture

9 pages

Lecture

Lecture

37 pages

Lecture

Lecture

36 pages

lecture

lecture

46 pages

Lecture

Lecture

33 pages

Lecture

Lecture

57 pages

Lecture

Lecture

32 pages

Lecture

Lecture

46 pages

Lecture

Lecture

40 pages

Lecture

Lecture

11 pages

Lecture

Lecture

6 pages

Lecture

Lecture

43 pages

Lecture

Lecture

12 pages

Lecture

Lecture

18 pages

Exam

Exam

10 pages

Lecture

Lecture

45 pages

Lecture

Lecture

37 pages

Exam

Exam

24 pages

class09

class09

21 pages

class22

class22

37 pages

class20

class20

30 pages

class27

class27

33 pages

class25

class25

21 pages

class04

class04

31 pages

Lecture

Lecture

59 pages

class01a

class01a

14 pages

class12

class12

45 pages

class29

class29

33 pages

Lecture

Lecture

39 pages

Lecture

Lecture

6 pages

class03

class03

34 pages

lecture

lecture

42 pages

Lecture

Lecture

40 pages

Lecture

Lecture

47 pages

Exam

Exam

19 pages

R06-B

R06-B

25 pages

class17

class17

37 pages

class25

class25

31 pages

Lecture

Lecture

15 pages

final-f06

final-f06

17 pages

Lecture

Lecture

9 pages

lecture

lecture

9 pages

Exam

Exam

15 pages

Lecture

Lecture

22 pages

class11

class11

45 pages

lecture

lecture

50 pages

Linking

Linking

37 pages

Lecture

Lecture

64 pages

Integers

Integers

40 pages

Exam

Exam

11 pages

Lecture

Lecture

37 pages

Lecture

Lecture

44 pages

Lecture

Lecture

37 pages

Lecture

Lecture

9 pages

Lecture

Lecture

37 pages

Lecture

Lecture

45 pages

Final

Final

25 pages

lecture

lecture

9 pages

Lecture

Lecture

30 pages

Lecture

Lecture

16 pages

Final

Final

17 pages

Lecture

Lecture

8 pages

Exam

Exam

11 pages

Lecture

Lecture

47 pages

Lecture

Lecture

9 pages

lecture

lecture

39 pages

Exam

Exam

11 pages

lecture

lecture

41 pages

lecture

lecture

37 pages

Lecture

Lecture

59 pages

Lecture

Lecture

45 pages

Exam 1

Exam 1

18 pages

Lecture

Lecture

41 pages

Lecture

Lecture

32 pages

Lecture

Lecture

30 pages

Lecture

Lecture

9 pages

Lecture

Lecture

9 pages

Lecture

Lecture

15 pages

Lecture

Lecture

11 pages

Lecture

Lecture

9 pages

Lecture

Lecture

40 pages

Lecture

Lecture

4 pages

Lecture

Lecture

46 pages

Lecture

Lecture

8 pages

Lecture

Lecture

65 pages

Lecture

Lecture

38 pages

Lecture

Lecture

35 pages

Lecture

Lecture

8 pages

Lecture

Lecture

34 pages

Lecture

Lecture

8 pages

Exam

Exam

13 pages

Lecture

Lecture

43 pages

Lecture

Lecture

9 pages

Lecture

Lecture

12 pages

Lecture

Lecture

9 pages

Lecture

Lecture

34 pages

Lecture

Lecture

43 pages

Lecture

Lecture

7 pages

Lecture

Lecture

45 pages

Lecture

Lecture

24 pages

Lecture

Lecture

47 pages

Lecture

Lecture

12 pages

Lecture

Lecture

20 pages

Lecture

Lecture

9 pages

Exam

Exam

11 pages

Lecture

Lecture

52 pages

Lecture

Lecture

20 pages

Exam

Exam

11 pages

Lecture

Lecture

35 pages

Lecture

Lecture

47 pages

Lecture

Lecture

18 pages

Lecture

Lecture

30 pages

Lecture

Lecture

59 pages

Lecture

Lecture

37 pages

Lecture

Lecture

22 pages

Lecture

Lecture

35 pages

Exam

Exam

23 pages

Lecture

Lecture

9 pages

Lecture

Lecture

22 pages

class12

class12

32 pages

Lecture

Lecture

8 pages

Lecture

Lecture

39 pages

Lecture

Lecture

44 pages

Lecture

Lecture

38 pages

Lecture

Lecture

69 pages

Lecture

Lecture

41 pages

Lecture

Lecture

12 pages

Lecture

Lecture

52 pages

Lecture

Lecture

59 pages

Lecture

Lecture

39 pages

Lecture

Lecture

83 pages

Lecture

Lecture

59 pages

class01b

class01b

17 pages

Exam

Exam

21 pages

class07

class07

47 pages

Lecture

Lecture

11 pages

Odyssey

Odyssey

18 pages

multicore

multicore

66 pages

Lecture

Lecture

6 pages

lecture

lecture

41 pages

lecture

lecture

55 pages

lecture

lecture

52 pages

lecture

lecture

33 pages

lecture

lecture

46 pages

lecture

lecture

55 pages

lecture

lecture

17 pages

lecture

lecture

49 pages

Exam

Exam

17 pages

lecture

lecture

56 pages

Exam 2

Exam 2

16 pages

Exam 2

Exam 2

16 pages

Notes

Notes

37 pages

Lecture

Lecture

40 pages

Lecture

Lecture

36 pages

Lecture

Lecture

43 pages

Lecture

Lecture

25 pages

Exam

Exam

13 pages

Lecture

Lecture

32 pages

Lecture

Lecture

12 pages

Lecture

Lecture

58 pages

Lecture

Lecture

29 pages

Lecture

Lecture

59 pages

Lecture

Lecture

41 pages

Lecture

Lecture

50 pages

Exam

Exam

17 pages

Lecture

Lecture

29 pages

Lecture

Lecture

44 pages

Lecture

Lecture

41 pages

Lecture

Lecture

52 pages

Lecture

Lecture

40 pages

Lecture

Lecture

33 pages

lecture

lecture

10 pages

Lecture

Lecture

27 pages

Lecture

Lecture

29 pages

Lecture

Lecture

39 pages

Lecture

Lecture

9 pages

Lecture

Lecture

29 pages

Lecture

Lecture

8 pages

Lecture

Lecture

43 pages

Lecture

Lecture

43 pages

Lecture

Lecture

75 pages

Lecture

Lecture

55 pages

Exam

Exam

12 pages

Lecture

Lecture

43 pages

Lecture

Lecture

35 pages

lecture

lecture

36 pages

Exam

Exam

33 pages

lecture

lecture

56 pages

lecture

lecture

64 pages

lecture

lecture

8 pages

Exam

Exam

14 pages

Lecture

Lecture

43 pages

Lecture

Lecture

36 pages

lecture

lecture

56 pages

lecture

lecture

75 pages

lecture

lecture

36 pages

Lecture

Lecture

50 pages

Lecture

Lecture

45 pages

Lecture

Lecture

13 pages

Exam

Exam

23 pages

Lecture

Lecture

10 pages

Lecture

Lecture

48 pages

Lecture

Lecture

83 pages

lecture

lecture

57 pages

Lecture

Lecture

33 pages

Lecture

Lecture

39 pages

Lecture

Lecture

33 pages

lecture

lecture

54 pages

Lecture

Lecture

30 pages

Exam

Exam

13 pages

Lecture

Lecture

36 pages

Lecture

Lecture

40 pages

Exam

Exam

17 pages

Lecture

Lecture

9 pages

Exam

Exam

15 pages

Lecture

Lecture

44 pages

Lecture

Lecture

34 pages

Lecture

Lecture

24 pages

Lecture

Lecture

29 pages

class12

class12

43 pages

lecture

lecture

43 pages

class22

class22

22 pages

R06-B

R06-B

25 pages

class01b

class01b

19 pages

lecture

lecture

29 pages

lab1

lab1

8 pages

Caches

Caches

36 pages

lecture

lecture

55 pages

Lecture,

Lecture,

37 pages

Integers

Integers

40 pages

Linking

Linking

38 pages

lecture

lecture

45 pages

Lecture

Lecture

61 pages

Linking

Linking

33 pages

lecture

lecture

40 pages

lecture

lecture

40 pages

Lecture

Lecture

32 pages

lecture

lecture

48 pages

lecture

lecture

44 pages

Exam

Exam

11 pages

Lecture

Lecture

31 pages

Lecture

Lecture

46 pages

Lecture

Lecture

40 pages

Lecture

Lecture

40 pages

Exam

Exam

12 pages

Lecture

Lecture

42 pages

Lecture

Lecture

36 pages

Lecture

Lecture

45 pages

Lecture

Lecture

41 pages

Lecture

Lecture

13 pages

Lecture

Lecture

35 pages

Lecture

Lecture

20 pages

Final

Final

19 pages

Lecture

Lecture

33 pages

Lecture

Lecture

50 pages

Lecture

Lecture

33 pages

Lecture

Lecture

27 pages

Lecture

Lecture

6 pages

Exam

Exam

15 pages

Lecture

Lecture

24 pages

Lecture

Lecture

23 pages

Lecture

Lecture

43 pages

Lecture

Lecture

32 pages

Lecture

Lecture

52 pages

Lecture

Lecture

37 pages

Lecture

Lecture

36 pages

Lecture

Lecture

34 pages

Lecture

Lecture

40 pages

Lecture

Lecture

15 pages

lecture

lecture

21 pages

Lecture

Lecture

58 pages

Lecture

Lecture

49 pages

Lecture

Lecture

36 pages

Lecture

Lecture

11 pages

Lecture

Lecture

12 pages

Lecture

Lecture

58 pages

Lecture

Lecture

33 pages

Exam

Exam

15 pages

Lecture

Lecture

35 pages

Lecture

Lecture

10 pages

Lecture

Lecture

25 pages

Lecture

Lecture

31 pages

Lecture

Lecture

24 pages

Lecture

Lecture

34 pages

Lecture

Lecture

50 pages

lecture

lecture

35 pages

Lecture

Lecture

11 pages

Lecture

Lecture

39 pages

Lecture

Lecture

45 pages

Lecture

Lecture

41 pages

exam1-f05

exam1-f05

11 pages

Lecture

Lecture

4 pages

Lecture

Lecture

17 pages

Exam

Exam

17 pages

malloc()

malloc()

12 pages

Lecture

Lecture

57 pages

Lecture

Lecture

30 pages

Lecture

Lecture

30 pages

Lecture

Lecture

47 pages

Lecture

Lecture

33 pages

Exam

Exam

12 pages

Lecture

Lecture

43 pages

Lectures

Lectures

33 pages

Lecture

Lecture

36 pages

lecture

lecture

33 pages

Exam

Exam

14 pages

Lecture

Lecture

43 pages

Lecture

Lecture

25 pages

Load more
Download Lecture
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Lecture and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Lecture 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?