Neha Patil (Editor)

Block floating point

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Block Floating Point (BFP) algorithms are a kind of algorithm used to emulate floating point while using a fixed point processor. The algorithm will assign an entire block of data an exponent, rather than single units themselves being assigned an exponent, thus making them a block, rather than a simple floating point. Block floating-point algorithm operations are done through a block using a common exponent, and can be advantageous to limit the space use in the hardware to perform the same functions as floating-point algorithms.

The common exponent is found by data with the largest amplitude in the block. To find the value of the exponent, the number of leading bits must be found, for this to be done, the number of left shifts needed for the data must be normalized to the dynamic range of the processor used. Some processors have means to find this out themselves, such as exponent detection and normalization instructions.

Block floating-point algorithms were extensively studied by James Hardy Wilkinson.

References

Block floating-point Wikipedia