Professors: Eng. Julian Bruno Eng. Mariano Llamedo Soria

Slides:



Advertisements
Similar presentations
FINITE WORD LENGTH EFFECTS
Advertisements

Microcomputer Systems 1
1/1/ / faculty of Electrical Engineering eindhoven university of technology Introduction Part 2: Data types and addressing modes dr.ir. A.C. Verschueren.
Fixed Point Numbers The binary integer arithmetic you are used to is known by the more general term of Fixed Point arithmetic. Fixed Point means that we.
CENG536 Computer Engineering department Çankaya University.
Topics covered: Floating point arithmetic CSE243: Introduction to Computer Architecture and Hardware/Software Interface.
1 IEEE Floating Point Revision Guide for Phase Test Week 5.
University of Washington Today Topics: Floating Point Background: Fractional binary numbers IEEE floating point standard: Definition Example and properties.
Assembly Language and Computer Architecture Using C++ and Java
Number Systems Standard positional representation of numbers:
Assembly Language and Computer Architecture Using C++ and Java
Computer ArchitectureFall 2008 © August 25, CS 447 – Computer Architecture Lecture 3 Computer Arithmetic (1)
Floating Point Numbers
ECEN 248 Integer Multiplication, Number Format Adopted from Copyright 2002 David H. Albonesi and the University of Rochester.
Number Systems Lecture 02.
Real time DSP Professors: Eng. Julian Bruno Eng. Mariano Llamedo Soria.
Simple Data Type Representation and conversion of numbers
Information Representation (Level ISA3) Floating point numbers.
Computer Organization and Architecture Computer Arithmetic Chapter 9.
Computer Arithmetic Nizamettin AYDIN
Computer Arithmetic. Instruction Formats Layout of bits in an instruction Includes opcode Includes (implicit or explicit) operand(s) Usually more than.
Fixed-Point Arithmetics: Part II
Computing Systems Basic arithmetic for computers.
Floating Point. Agenda  History  Basic Terms  General representation of floating point  Constructing a simple floating point representation  Floating.
Data Representation in Computer Systems
Floating Point (a brief look) We need a way to represent –numbers with fractions, e.g., –very small numbers, e.g., –very large numbers,
CH09 Computer Arithmetic  CPU combines of ALU and Control Unit, this chapter discusses ALU The Arithmetic and Logic Unit (ALU) Number Systems Integer.
Oct. 18, 2007SYSC 2001* - Fall SYSC2001-Ch9.ppt1 See Stallings Chapter 9 Computer Arithmetic.
Fixed and Floating Point Numbers Lesson 3 Ioan Despi.
Lecture 9: Floating Point
CSC 221 Computer Organization and Assembly Language
Floating Point Arithmetic
Number Representation for
Ch.5 Fixed-Point vs. Floating Point. 5.1 Q-format Number Representation on Fixed-Point DSPs 2’s Complement Number –B = b N-1 …b 1 b 0 –Decimal Value D.
Fixed & Floating Number Format Dr. Hugh Blanton ENTC 4337/5337.
Computer Arithmetic Floating Point. We need a way to represent –numbers with fractions, e.g., –very small numbers, e.g., –very large.
Dr Mohamed Menacer College of Computer Science and Engineering Taibah University CE-321: Computer.
Numbers in Computers.
Cosc 2150: Computer Organization Chapter 9, Part 3 Floating point numbers.
CHAPTER 5: Representing Numerical Data
Floating Point Representations
Unit IV Finite Word Length Effects
Real time DSP Professors: Eng. Diego Barral Mr. Jerónimo Acencio
Integer Division.
Floating Point Numbers: x 10-18
Chapter 6 Floating Point
Topic 3d Representation of Real Numbers
CSCE 350 Computer Architecture
Number Representations
ECEG-3202 Computer Architecture and Organization
Faculty of Cybernetics, Statistics and Economic Informatics –
Topic 3d Representation of Real Numbers
Number Representations
Lecture 9: Shift, Mult, Div Fixed & Floating Point
Presentation transcript:

Professors: Eng. Julian Bruno Eng. Mariano Llamedo Soria Real time DSP Professors: Eng. Julian Bruno Eng. Mariano Llamedo Soria

Number representation and word-length effects. DSP fundamentals Number representation and word-length effects.

Recommended bibliography RG Lyons, Understanding Digital Signal Processing. Prentice Hall 1997. Ch9: Digital Data Formats and their effects. SW Smith, The Scientist and Engineer’s guide to DSP. California Tech. Pub. 1997. Ch4: DSP software. VK Madisetti, DB Williams. Digital Signal Processing Handbook. CRC Press. Ch3: Finite Wordlength Effects. SM Kuo, BH Lee. Real-Time Digital Signal Processing. John Wiley and Sons. Ch 3.4 to 3.6: DSP Fundamentals and Implementations Considerations. NOTE: Many images used in this presentation were extracted from the recommended bibliography.

Fixed point representation – Two’s complement system 011 3 010 2 001 1 000 111 -1 110 -2 101 -3 100 -4 Negation mechanism Step Result Original number 011=3 1 complement 100 Add 1 101 101=-3 Range -2N-1 to (2N-1-1) for N data bits Sign bit 011= 3 101=-3 DRdB = 20log(lv/sm) DRdB: Dynamic Range in dB lv: Largest possible value sv: Smaller possible value DRdB= 6.02dB . (N-1) One bit for sign, N-1 for number representation. Very popular system, widely used. Same logic for sum and subtraction.

Different interpretations Converting between Q formats Q15 means 15 bits for fractional part (aka 1.15) Q31 means 31 bits for fractional part (aka 1.31) Q12 means 12 bits for fraction 3 bits for integer Different interpretations bin Q2 Q1 dec 011 0.75 1.5 3 010 0.5 1 2 001 0.25 000 111 -0.25 -0.5 -1 110 -2 101 -0.75 -1.5 -3 100 -4 Converting between Q formats bin Q3 Q2 Q1 0111 0.875 1.75 3.5 0.111 01.11 011.1 Formats definition sign int . frac Total QX 1 M N 1+M+N Q15 15 16 Q31 31 32 Q12 3 12 /2N: moves dot N places left x2N: moves dot N places right Decimal equivalency for 1.X formats DRQ15 = 6.02*15 = 90.3 dB DRQ31 = 6.02*31 = 186.62 dB Fractional representation is equivalent to integer representation. Fractional dot could be placed arbitrarily anywhere. Most widely used formats are Q15 and Q31. Dynamic range is exactly the same than their integer counterparts “short” and “int” C language types. Range -1 to 1-(2-N) for N fractional bits

Sum in Two’s complement Integer Fromat 1 -510 + 610 1 -510 + -810 -1310 Overflow ! Q3 Fromat 1 -0.62510 + 0.7510 0.12510 1 -0.62510 + -110 -1.62510 Overflow !

Sum in Two’s complement Different Formats 3.0 1 . -510 + 1.1 1.510 3.1 -3.510 1.2 1 . -0.7510 + 0.3 0.37510 1.3 -0.37510 For C=A+B, where A is in P.Q format B is in R.S format The result C is in max(P,R).max(Q,S) format

Multiplication in Two’s complement Integer Format Fractional Format Q3 1. 1 -0.62510 x 0. 0.7510 1 1. -510 x 0. 610 Xor Xor 1 1. -0.468810 1 -3010 Sign extension For C=AxB, where A and B are B bits wide, C is 2B bits wide.

Multiplication in Two’s complement Different formats 1 1. -2.510 x 1.510 1. 1 -0.62510 x 1.510 Xor Xor 1 0. -3.7510 1 1. -0.937510 Sign extension

Multiplication in Two’s complement. Conclusion. In conclusion, for C=A*B, where A and B are words of N bits, and A is in P.Q format B is in R.S format The result’s is in (P+R).(Q+S)

Multiplication in Two’s complement. Examples. B=0110 The result is always the same. In 2.6 format, as numbers are <1, the integer part is never used. A.FL B.FL A B C=A*B C format C.binary -5 6 -30 8.0 11100010. 1 3 -15 7.1 1110001.0 2 1.5 -7.5 6.2 111000.10 0.75 -3.75 5.3 11100.010 -2.5 1.875 4.4 1110.0010 -1.25 -1.875 -0.9375 3.5 111.00010 -0.625 -0.46875 2.6 11.100010 Int Fract

Two’s complement arithmetic. Conclusions. Addition/Accumulation requires representation in the same format (sign extension, zero padding). Multiplication result is independent of the format representation, as long as the result place the fixed point in the right place. ADSP2100 family always assume fractional multiplication, whereas modern families can flag (IS) integer multiplication.

Dynamic range constraints Overflow a 2a … 7a 8a bin 0001 0010 0111 OV dec 0.125 0.25 0.875 Lost of precision a a2 … a6 a7 bin 0110 0100 0001 0000 dec 0.75 0.563 0.178 0.133 For non integer Q formats, multiplying large sequence of numbers cause loss of precision, but never overflow. For non integer Q formats, summing large sequence of numbers could cause overflow. Dynamic range is closely related with the two previous statements. The greater dynamic range, the smaller probability that overflow or loss of precision could happen. Remember that most DSP algorithms multiply and sum very often, so special care must be taken to prevent overflow or loss of precision.

Avoiding overflow Always use the maximum capability (guard bits) of the accumulators during internal calculations. Only round (or truncate) the final results to the final data size and format if possible. There is (almost) no lost of precision when handling internal calculations with guard bits.

Avoiding overflow System Scale Signal 0.9.β 0.8.β System Scale Signal Scaling down a signal is the most effective technique to prevent overflow. Scaling down always implies loss of precision. Both scaling down and guard bits techniques must be used in order to avoid overflow. Always is more convenient to scale down system’s coefficients instead of signals.

Avoiding overflow Effect of β in SNR Never overflows For example adopting β=0.5 implies a 6.02 dB decrease of SNR. This is equivalent that dividing by 2, rotating 1 time to the right, or losing 1 bit of resolution. More relaxed scaling Scaling down always reduces SNR. It is possible to use an absolute safe or a more relaxed criteria to choose β value. Many times it is preferable to use different Q fractional formats within an algorithm. As overflow is very probable to happen in fixed point processors, special effort should be taken when coding algorithms and debugging.

Minimizing overflow effects Without saturation arithmetic With saturation arithmetic Always use saturating arithmetic. In case overflow occurs, decrease the probability that an oscillation occurs.

Example of an overflow oscillation We have the following output For a system defined by: and an input: being the overflow rule: having a 4 bit word length, and no saturation arithmetic

Quantization word-length effects The codec and system’s coefficients are the main generators of quantization noise. Codec’s noise can be thought as a uniformly distributed PDF between –LSB/2 and LSB/2. The SNR of an ADC is proportional to the word-length and the loading factor.

Quantization word-length effects Complex conjugated two poles band pass And its difference equation When defining a system in term of its coefficients, the finite precision affect the behavior of the system itself. Though there is a grid of possible locations where system’s poles can be placed. This grid depends first of the word-length and second of the structure adopted to implement of the system.

Quantization word-length effects There are structures are less sensitive to coefficient quantization. There is a trade-off between efficiency and sensibility to coefficient quantization.

Floating point representation This form of representation overcomes limitations of precision and dynamic range of fixed point. This format segment data in sign, exponent and mantissa. Mantissa is represented as a fixed point number. Exponent is represented in binary offset format. The greater the be the larger the dynamic range. The greater the bm the larger the precision. There is a trade off between bm and be, and the best balance occur at be≈b/4 and bm≈3b/4.

Floating point representation (I) IEEE P754 is the most widely used floating point format. As the point is floating, a process called normalization is performed in order to use the full precision of bm bits, while the exponent is adjusted properly. Floating point arithmetic usually requires lot of logical comparisons and branching, so software emulated floating achieves low performance Floating point DSPs implements in hardware all arithmetic handling, so these DSPs outperforms their fixed point counterparts in ease of use and performance (of course being more expensive too).

Floating point representation (II) Single Precision (32 bits) Double Precision (64 bits) Sign Biased exponent Fraction Value Positive zero Negative zero 1 -0 Plus infinity 255(all 1s) ∞ Minus infinity -∞ NaN 0 or 1 ≠0 0 o 1 Positive normalized 0 < e < 255 f 2e-127 (1,f) 2e-1023 (1,f) Negative normalized -2e-127 (1,f) -2e-1023 (1,f) Positive denormalized f ≠ 0 2-126 (0,f) 2-1022 (0,f) Negative denormalized -2-126 (0,f) -2-1022 (0,f)

Normalized & Denormalized numbers (32-bit format ) Normalized numbers ( 1,f 2e-127) Denormalized numbers ( 0,f 2-126) Unused Gap = 1.4e-45 2-126 2-125 2-124 2-123 0 00000001 00000000000000000000000 Min. Positive Normalized 0 00000000 00000000000000000000001 Min. Positive Denormalized Gap = 2.8e-45

Multiply significands ¿X = 0? Z 0 RETURN ¿Y = 0? Add exponents Subtract bias Exponent overflow? Report overflow Report underflow Multiply significands Normalize Round No Yes

Division DIVIDE ¿X = 0? Z 0 RETURN ¿Y = 0? Z  Subtract exponents Add bias Exponent overflow? Exponent underflow? Divide significands Normalize Round Report overflow Report underflow No Yes