Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What are the parameters I should take care while designing floating point adder?

Status
Not open for further replies.

alam.tauqueer

Full Member level 2
Full Member level 2
Joined
Jun 19, 2007
Messages
127
Helped
5
Reputation
10
Reaction score
2
Trophy points
1,298
Activity points
2,005
Can anyone have some idea what are the parameter I should take care while designing floating point adder.
Also explain me
what is guard bit, sticky bit and how we calculate NaN condition.

Tauqueer
 

Re: Floating point adder

this page might help you about guard round and sticky bits....
**broken link removed**
 

Floating point adder

Basically you need to first align both number to the same exponent, then add the mantissa. After that you need to adjust the exponent again and normalize mantissa to 1~10.0..

Guard bit is used to protect again overflow. I doubt whether you get a NaN in addition!
 

Floating point adder

Thanks alot.Please explain me little on guard bit and sticky bit.what


Tauqueer
 

Re: Floating point adder

During the prenormalization shifting phase (also known as the alignment step) three extra bits - Guard, Round, and Sticky
are generated. The Sticky bit being the value of logical OR of all bits that would be dropped by right shift. These three additional bits, attached at the rightmost of the significand, are required in order to avoid loss of precision.
Guard and Round bits are required when performing rounding-to- nearest even, the default rounding mode of IEEE-754. Sticky bit participates in subtraction and generates the necessary borrow.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top