Main Content

Numeric Considerations for Native Floating-Point

Native floating-point technology can generate HDL code from your floating-point design. Floating-point designs have better precision, a higher dynamic range, and a shorter development cycle than fixed-point designs. If your design has complex mathematical operations, use native floating-point technology.

HDL Coder™ generates code that complies with the IEEE® 754 standard for floating-point arithmetic. HDL Coder native floating-point supports:

  • Rounding numbers to the nearest even digit

  • Denormal numbers

  • Exceptions such as NaN values, Inf values, and zero

  • Customization of units in the last place (ULP) and relative accuracy

Nearest Even Digit Rounding

HDL Coder native floating-point supports rounding to the nearest even digit. This mode resolves all ties by rounding to the nearest even digit.

This rounding method requires at least three trailing bits after the 23 bits of the mantissa. The MSB is called Guard bit, the middle bit is called the Round bit, and the LSB is called the Sticky bit. The table shows the rounding action that HDL Coder performs based on different values of the three trailing bits. x denotes a don’t care value and can take either a 0 or a 1.

Rounding bitsRounding Action
0xx

No action performed.

100A tie. If the mantissa bit that precedes the Guard bit is a 1, round up, otherwise no action is performed.
101Round up.
11xRound up.

Denormal Numbers

Denormal numbers are numbers that have an exponent field equal to zero and a nonzero mantissa field. The leading bit of the mantissa is zero.

value=(1)sign*(0+Σ23i=1b23i2i)*2126

Denormal numbers have magnitudes less than the smallest floating-point number that can be represented without leading zeros in the mantissa. The presence of denormal numbers indicates a loss of significant digits that can accumulate over multiple operations and result in unexpected values.

The logic that HDL Coder uses to handle denormal numbers involves counting the number of leading zeros and performing a left shift operation to obtain the normalized representation. Addition of this logic increases the area footprint on the target device and can affect the timing of your design.

When you use native floating-point support, you can specify your design handles denormal numbers.

Exception Handling

If you perform operations such as division by zero or computing the logarithm of a negative number, HDL Coder detects and reports exceptions. This table summarizes the mapping from the encoding of a floating-point number to the value of the number for different exceptions. An x denotes a don’t care value, which can be a 0 or 1 without affecting the mapping.

SignExponentSignificandValueDescription
x0xFF0x00000000

value=(1)S

Infinity
x0xFFA nonzero value

value = NaN

Not a Number
x0x000x00000000

value = 0

Zero
x0x00A nonzero value

value=(1)sign*(0+Σ23i=1b23i2i)*2126

Denormal
x0x00 < E < 0xFFx

value=(1)sign*(1+Σ23i=1b23i2i)*2(e127)

Normal

Relative Accuracy and ULP Considerations

The representation of infinite real numbers with a finite number of bits requires an approximation. This approximation can result in rounding errors in floating-point computation. To measure the rounding errors, the floating-point standard uses a relative error and a ULP error.

ULP

If the exponent range is not upper-bounded, a ULP value of a floating-point number x is the distance between the two closest straddling floating-point numbers a and b nearest to x. The IEEE 754 standard requires that the result of an elementary arithmetic operation such as addition, multiplication, or division is correctly rounded. A correctly rounded result means that the rounded result is within 0.5 ULP of the exact result.

ULP value of 1 means adding a 1 to the decimal value of the stored integer. This table shows the approximation of π to nine decimal digits and how the ULP value of 1 changes the approximate value.

Floating-point numberDecimal Value of Stored IntegerIEEE-754 representation for Single Types
3.14159274110785300110|10000000|10010010000111111011011
3.14159297910785300120|10000000|10010010000111111011100

The gap between two consecutively representable floating-point numbers varies according to magnitude.

Floating-point numberDecimal Value of Stored IntegerIEEE-754 representation for Single Types
123456712346133040|10010011|00101101011010000111000
1234567.12512346133050|10010011|00101101011010000111001

Relative Error

Relative error measures the relative difference between a floating-point number and the approximation of the real number. The relative error between the real numbers a and b is the ratio of absolute difference between numbers a and b to the maximum of a and b.

This table shows the relative error between two consecutive floating-point values that has a ULP value of 1.

Floating-point numberDecimal Value of Stored IntegerIEEE-754 representation for Single TypesRelative error
123456712346133040|10010011|001011010110100001110001.0125e-07
1234567.12512346133050|10010011|00101101011010000111001

See Also

Modeling Guidelines

Functions

Related Examples

More About