![]() | This articlepossibly containsoriginal research. Pleaseimprove it byverifying the claims made and addinginline citations. Statements consisting only of original research should be removed.(September 2019) (Learn how and when to remove this message) |
Incomputing,fixed-point is a method of representingfractional (non-integer) numbers by storing a fixed number of digits of their fractional part.Dollar amounts, for example, are often stored with exactly two fractional digits, representing thecents (1/100 of dollar). More generally, the term may refer to representing fractional values as integer multiples of some fixed small unit, e.g. a fractional amount of hours as an integer multiple of ten-minute intervals. Fixed-point number representation is often contrasted to the more complicated and computationally demandingfloating-point representation.
In the fixed-point representation, the fraction is often expressed in the samenumber base as the integer part, but using negativepowers of the baseb. The most common variants aredecimal (base 10) andbinary (base 2). The latter is commonly known also asbinary scaling. Thus, ifn fraction digits are stored, the value will always be an integermultiple ofb−n. Fixed-point representation can also be used to omit the low-order digits of integer values, e.g. when representing large dollar values as multiples of $1000.
When decimal fixed-point numbers are displayed for human reading, the fraction digits are usually separated from those of the integer part by aradix character (usually '.' in English, but ',' or some other symbol in many other languages). Internally, however, there is no separation, and the distinction between the two groups of digits is defined only by the programs that handle such numbers.
Fixed-point representation was the norm inmechanical calculators. Since most modernprocessors have fastfloating-point unit (FPU), fixed-point representations in processor-based implementations are now used only in special situations, such as in low-costembeddedmicroprocessors andmicrocontrollers; in applications that demand high speed or lowpower consumption or smallchip area, likeimage,video, anddigital signal processing; or when their use is more natural for the problem. Examples of the latter areaccounting of dollar amounts, when fractions of cents must be rounded to whole cents in strictly prescribed ways; and the evaluation offunctions bytable lookup, or any application where rational numbers need to be represented without rounding errors (which fixed-point does but floating-point cannot). Fixed-point representation is still the norm forfield-programmable gate array (FPGA) implementations, as floating-point support in an FPGA requires significantly more resources than fixed-point support.[1]
Value represented | Internal representation |
---|---|
0.00 | 0 |
0.5 | 50 |
0.99 | 99 |
2 | 200 |
−14.1 | −1410 |
314.160 | 31416 |
A fixed-point representation of a fractional number is essentially aninteger that is to be implicitly multiplied by a fixed scaling factor. For example, the value 1.23 can be stored in a variable as the integer value 1230 with implicit scaling factor of 1/1000 (meaning that the last 3 decimal digits are implicitly assumed to be a decimal fraction), and the value1 230 000 can be represented as 1230 with an implicit scaling factor of 1000 (with "minus 3" implied decimal fraction digits, that is, with 3 implicit zero digits at right). This representation allows standard integerarithmetic logic units to performrational number calculations.
Negative values are usually represented in binary fixed-point format as a signed integer intwo's complement representation with an implicit scaling factor as above. The sign of the value will always be indicated by thefirst stored bit (1 = negative, 0 = non-negative), even if the number of fraction bits is greater than or equal to the total number of bits. For example, the 8-bit signed binary integer (11110101)2 = −11, taken with −3, +5, and +12 implied fraction bits, would represent the values −11/2−3 = −88, −11/25 = −0.343 75, and −11/212 = −0.002 685 546 875, respectively.
Alternatively, negative values can be represented by an integer in thesign-magnitude format, in which case the sign is never included in the number of implied fraction bits. This variant is more commonly used in decimal fixed-point arithmetic. Thus the signed 5-digit decimal integer (−00025)10, taken with −3, +5, and +12 implied decimal fraction digits, would represent the values −25/10−3 = −25000, −25/105 = −0.00025, and −25/1012 = −0.000 000 000 025, respectively.
A program will usually assume that all fixed-point values that will be stored into a given variable, or will be produced by a giveninstruction, will have the same scaling factor. This parameter can usually be chosen by the programmer depending on theprecision needed and range of values to be stored.
The scaling factor of a variable or formula may not appear explicitly in the program.Good programming practice then requires that it be provided in thedocumentation, at least as acomment in thesource code.
For greater efficiency, scaling factors are often chosen to bepowers (positive or negative) of the baseb used to represent the integers internally. However, often the best scaling factor is dictated by the application. Thus one often uses scaling factors that are powers of 10 (e.g. 1/100 for dollar values), for human convenience, even when the integers are represented internally in binary. Decimal scaling factors also mesh well with themetric (SI) system, since the choice of the fixed-point scaling factor is often equivalent to the choice of a unit of measure (likecentimeters ormicrons instead ofmeters).
However, other scaling factors may be used occasionally, e.g. a fractional amount of hours may be represented as an integer number of seconds; that is, as a fixed-point number with scale factor of 1/3600.
Even with the most careful rounding, fixed-point values represented with a scaling factorS may have an error of up to ±0.5 in the stored integer, that is, ±0.5S in the value. Therefore, smaller scaling factors generally produce more accurate results.
On the other hand, a smaller scaling factor means a smaller range of the values that can be stored in a given program variable. The maximum fixed-point value that can be stored into a variable is the largest integer value that can be stored into it, multiplied by the scaling factor; and similarly for the minimum value. For example, the table below gives the implied scaling factorS, the minimum and maximum representable valuesVmin andVmax, and the accuracyδ =S/2 of values that could be represented in 16-bit signed binary fixed point format, depending on the numberf of implied fraction bits.
f | S | δ | Vmin | Vmax |
---|---|---|---|---|
−3 | 1/2−3 = 8 | 4 | −262 144 | +262 136 |
0 | 1/20 = 1 | 0.5 | −32 768 | +32 767 |
5 | 1/25 = 1/32 | < 0.016 | −1024.000 00 | +1023.968 75 |
14 | 1/214 = 1/16 384 | < 0.000 031 | −2.000 000 000 000 00 | +1.999 938 964 843 75 |
15 | 1/215 = 1/32 768 | < 0.000 016 | −1.000 000 000 000 000 | +0.999 969 482 421 875 |
16 | 1/216 = 1/65 536 | < 0.000 008 | −0.500 000 000 000 000 0 | +0.499 984 741 210 937 5 |
20 | 1/220 = 1/1 048 576 | < 0.000 000 5 | −0.031 250 000 000 000 000 00 | +0.031 249 046 325 683 593 75 |
Fixed-point formats with scaling factors of the form 2n−1 (namely 1, 3, 7, 15, 31, etc.) have been said to be appropriate for image processing and other digital signal processing tasks. They are supposed to provide more consistent conversions between fixed- and floating-point values than the usual 2n scaling. TheJulia programming language implements both versions.[2]
Any binary fractiona/2m, such as 1/16 or 17/32, can be exactly represented in fixed-point, with a power-of-two scaling factor 1/2n with anyn ≥m. However, most decimal fractions like 0.1 or 0.123 are infiniterepeating fractions in base 2. and hence cannot be represented that way.
Similarly, any decimal fractiona/10m, such as 1/100 or 37/1000, can be exactly represented in fixed point with a power-of-ten scaling factor 1/10n with anyn ≥m. This decimal format can also represent any binary fractiona/2m, such as 1/8 (0.125) or 17/32 (0.53125).
More generally, arational numbera/b, witha andbrelatively prime andb positive, can be exactly represented in binary fixed point only ifb is a power of 2; and in decimal fixed point only ifb has noprime factors other than 2 and/or 5.
Fixed-point computations can be faster and/or use less hardware than floating-point ones. If the range of the values to be represented is known in advance and is sufficiently limited, fixed point can make better use of the available bits. For example, if 32 bits are available to represent a number between 0 and 1, a fixed-point representation can have error less than 1.2 × 10−10, whereas the standard floating-point representation may have error up to 596 × 10−10 — because 9 of the bits are wasted with the sign and exponent of the dynamic scaling factor. Specifically, comparing 32-bit fixed-point tofloating-point audio, a recording requiring less than 40dB ofheadroom has a highersignal-to-noise ratio using 32-bit fixed.
Programs using fixed-point computations are usually more portable than those using floating-point since they do not depend on the availability of an FPU. This advantage was particularly strong before theIEEE Floating Point Standard was widely adopted when floating-point computations with the same data would yield different results depending on the manufacturer, and often on the computer model.
Many embedded processors lack an FPU, because integer arithmetic units require substantially fewerlogic gates and consume much smallerchip area than an FPU; and softwareemulation of floating-point on low-speed devices would be too slow for most applications. CPU chips for the earlierpersonal computers andgame consoles, like theIntel 386 and486SX, also lacked an FPU.
Theabsolute resolution (difference between successive values) of any fixed-point format is constant over the whole range, namely the scaling factorS. In contrast, therelative resolution of a floating-point format is approximately constant over their whole range, varying within a factor of the baseb; whereas theirabsolute resolution varies by many orders of magnitude, like the values themselves.
In many cases, therounding and truncation errors of fixed-point computations are easier to analyze than those of the equivalent floating-point computations. Applying linearization techniques to truncation, such asdithering and/ornoise shaping is more straightforward within fixed-point arithmetic. On the other hand, the use of fixed point requires greater care by the programmer. Avoidance of overflow requires much tighter estimates for the ranges of variables and all intermediate values in the computation, and often also extra code to adjust their scaling factors. Fixed-point programming normally requires the use ofinteger types of different widths. Fixed-point applications can make use ofblock floating point, which is a fixed-point environment having each array (block) of fixed-point data be scaled with a common exponent in a single word.
This sectiondoes notcite anysources. Please helpimprove this section byadding citations to reliable sources. Unsourced material may be challenged andremoved.(May 2023) (Learn how and when to remove this message) |
A common use of decimal fixed-point is for storing monetary values, for which the complicated rounding rules of floating-point numbers are often a liability. For example, the open-source money management applicationGnuCash, written in C, switched from floating-point to fixed-point as of version 1.6, for this reason.
Binary fixed-point (binary scaling) was widely used from the late 1960s to the 1980s for real-time computing that was mathematically intensive, such asflight simulation and innuclear power plant control algorithms. It is still used in manyDSP applications and custom-made microprocessors. Computations involving angles would usebinary angular measurement.
Binary fixed point is used in theSTM32G4 seriesCORDIC co-processors and in thediscrete cosine transform algorithms used to compressJPEG images.
Electronic instruments such aselectricity meters anddigital clocks often use polynomials to compensate for introduced errors, e.g. from temperature or power supply voltage. The coefficients are produced bypolynomial regression. Binary fixed-point polynomials can utilize more bits of precision than floating-point and do so in fast code using inexpensive CPUs. Accuracy, crucial for instruments, compares well to equivalent-bit floating-point calculations, if the fixed-point polynomials are evaluated usingHorner's method (e.g.y = ((ax +b)x +c)x +d) to reduce the number of times that rounding occurs, and the fixed-point multiplications utilize rounding addends.
This sectiondoes notcite anysources. Please helpimprove this section byadding citations to reliable sources. Unsourced material may be challenged andremoved.(May 2023) (Learn how and when to remove this message) |
To add or subtract two values with the same implicit scaling factor, it is sufficient to add or subtract the underlying integers; the result will have their common implicit scaling factor and can thus be stored in the same program variables as the operands. These operations yield the exact mathematical result, as long as nooverflow occurs—that is, as long as the resulting integer can be stored in the receiving programvariable. If the operands have different scaling factors, then they must be converted to a common scaling factor before the operation.
To multiply two fixed-point numbers, it suffices to multiply the two underlying integers, and assume that the scaling factor of the result is the product of their scaling factors. The result will be exact, with no rounding, provided that it does not overflow the receiving variable.
For example, multiplying the numbers 123 scaled by 1/1000 (0.123) and 25 scaled by 1/10 (2.5) yields the integer 123×25 = 3075 scaled by (1/1000)×(1/10) = 1/10000, that is 3075/10000 = 0.3075. As another example, multiplying the first number by 155 implicitly scaled by 1/32 (155/32 = 4.84375) yields the integer 123×155 = 19065 with implicit scaling factor (1/1000)×(1/32) = 1/32000, that is 19065/32000 = 0.59578125.
In binary, it is common to use a scaling factor that is a power of two. After the multiplication, the scaling factor can be divided away by shifting right. Shifting is simple and fast in most computers. Rounding is possible by adding a 'rounding addend' of half of the scaling factor before shifting; The proof: round(x/y) = floor(x/y + 0.5) = floor((x + y/2)/y) = shift-of-n(x + 2^(n−1)) A similar method is usable in any scaling.
To divide two fixed-point numbers, one takes the integer quotient of their underlying integers and assumes that the scaling factor is the quotient of their scaling factors. In general, the first division requires rounding and therefore the result is not exact.
For example, division of 3456 scaled by 1/100 (34.56) and 1234 scaled by 1/1000 (1.234) yields the integer 3456÷1234 = 3 (rounded) with scale factor (1/100)/(1/1000) = 10, that is, 30. As another example, the division of the first number by 155 implicitly scaled by 1/32 (155/32 = 4.84375) yields the integer 3456÷155 = 22 (rounded) with implicit scaling factor (1/100)/(1/32) = 32/100 = 8/25, that is 22×32/100 = 7.04.
If the result is not exact, the error introduced by the rounding can be reduced or even eliminated by converting the dividend to a smaller scaling factor. For example, ifr = 1.23 is represented as 123 with scaling 1/100, ands = 6.25 is represented as 6250 with scaling 1/1000, then simple division of the integers yields 123÷6250 = 0 (rounded) with scaling factor (1/100)/(1/1000) = 10. Ifr is first converted to 1,230,000 with scaling factor 1/1000000, the result will be 1,230,000÷6250 = 197 (rounded) with scale factor 1/1000 (0.197). The exact value 1.23/6.25 is 0.1968.
In fixed-point computing it is often necessary to convert a value to a different scaling factor. This operation is necessary, for example:
To convert a number from a fixed point type with scaling factorR to another type with scaling factorS, the underlying integer must be multiplied by the ratioR/S. Thus, for example, to convert the value 1.23 = 123/100 from scaling factorR=1/100 to one with scaling factorS=1/1000, the integer 123 must be multiplied by (1/100)/(1/1000) = 10, yielding the representation 1230/1000.
If the scaling factor is a power of the base used internally to represent the integer, changing the scaling factor requires only dropping low-order digits of the integer, or appending zero digits. However, this operation must preserve the sign of the number. In two's complement representation, that means extending the sign bit as inarithmetic shift operations.
IfS does not divideR (in particular, if the new scaling factorS is greater than the originalR), the new integer may have to berounded.
In particular, ifr ands are fixed-point variables with implicit scaling factorsR andS, the operationr ←r×s requires multiplying the respective integers and explicitly dividing the result byS. The result may have to be rounded, and overflow may occur.
For example, if the common scaling factor is 1/100, multiplying 1.23 by 0.25 entails multiplying 123 by 25 to yield 3075 with an intermediate scaling factor of 1/10000. In order to return to the original scaling factor 1/100, the integer 3075 then must be multiplied by 1/100, that is, divided by 100, to yield either 31 (0.31) or 30 (0.30), depending on therounding policy used.
Similarly, the operationr ←r/s will require dividing the integers and explicitly multiplying the quotient byS. Rounding and/or overflow may occur here too.
To convert a number from floating point to fixed point, one may multiply it by the scaling factorS, then round the result to the nearest integer. Care must be taken to ensure that the result fits in the destination variable or register. Depending on the scaling factor and storage size, and on the range input numbers, the conversion may not entail any rounding.
To convert a fixed-point number to floating-point, one may convert the integer to floating-point and then divide it by the scaling factorS. This conversion may entail rounding if the integer's absolute value is greater than 224 (for binary single-precision IEEE floating point) or of 253 (for double-precision). Overflow orunderflow may occur if |S| isvery large orvery small, respectively.
This sectiondoes notcite anysources. Please helpimprove this section byadding citations to reliable sources. Unsourced material may be challenged andremoved.(May 2023) (Learn how and when to remove this message) |
Typical processors do not have specific support for fixed-point arithmetic. However, most computers with binary arithmetic have fastbit shift instructions that can multiply or divide an integer by any power of 2; in particular, anarithmetic shift instruction. These instructions can be used to quickly change scaling factors that are powers of 2, while preserving the sign of the number.
Early computers like theIBM 1620 and theBurroughs B3500 used abinary-coded decimal (BCD) representation for integers, namely base 10 where each decimal digit was independently encoded with 4 bits. Some processors, such as microcontrollers, may still use it. In such machines, conversion of decimal scaling factors can be performed by bit shifts and/or by memory address manipulation.
Some DSP architectures offer native support for specific fixed-point formats, for example, signedn-bit numbers withn−1 fraction bits (whose values may range between −1 and almost +1). The support may include a multiply instruction that includes renormalization—the scaling conversion of the product from 2n−2 ton−1 fraction bits.[citation needed] If the CPU does not provide that feature, the programmer must save the product in a large enough register or temporary variable, and code the renormalization explicitly.
Overflow happens when the result of an arithmetic operation is too large to be stored in the designated destination area. In addition and subtraction, the result may require one bit more than the operands. In multiplication of two unsigned integers withm andn bits, the result may havem+n bits.
In case of overflow, the high-order bits are usually lost, as the un-scaled integer gets reduced modulo 2n wheren is the size of the storage area. The sign bit, in particular, is lost, which may radically change the sign and the magnitude of the value.
Some processors can set a hardwareoverflow flag and/or generate anexception on the occurrence of an overflow. Some processors may instead providesaturation arithmetic: if the result of an addition or subtraction were to overflow, they store instead the value with the largest magnitude that can fit in the receiving area and has the correct sign.[citation needed]
However, these features are not very useful in practice; it is generally easier and safer to select scaling factors and word sizes so as to exclude the possibility of overflow, or to check the operands for excessive values before executing the operation.
Explicit support for fixed-point numbers is provided by a few programming languages, notablyPL/I,COBOL,Ada,JOVIAL, andCoral 66. They provide fixed-pointdata types, with a binary or decimal scaling factor. The compiler automatically generates code to do the appropriate scaling conversions when doing operations on these data types, when reading or writing variables, or when converting the values to other data types such as floating-point.
Most of those languages were designed between 1955 and 1990. More modern languages usually do not offer any fixed-point data types or support for scaling factor conversion. That is also the case for several older languages that are still very popular, likeFORTRAN,C andC++. The wide availability of fast floating-point processors, with strictly standardized behavior, has greatly reduced the demand for binary fixed-point support.[citation needed] Similarly, the support fordecimal floating point in some programming languages, likeC# andPython, has removed most of the need for decimal fixed-point support. In the few situations that call for fixed-point operations, they can be implemented by the programmer, with explicit scaling conversion, in any programming language.
On the other hand, all relationaldatabases and theSQL notation support fixed-point decimal arithmetic and storage of numbers.PostgreSQL has a specialnumeric type for exact storage of numbers with up to 1000 digits.[3]
Moreover, in 2008 theInternational Organization for Standardization (ISO) issued a proposal to extend the C programming language with fixed-point data types, for the benefit of programs running on embedded processors.[4] Also, theGNU Compiler Collection (GCC) hasback-end support for fixed-point.[5][6]
Suppose there is the following multiplication with 2 fixed point 3 decimal place numbers.
Note how since there are 3 decimal places we show the trailing zeros. To re-characterize this as an integer multiplication we must first multiply by moving all the decimal places in to integer places, then we will multiply by to put them back the equation now looks like
This works equivalently if we choose a different base, notably base 2 for computing since a bit shift is the same as a multiplication or division by an order of 2. Three decimal digits is equivalent to about 10 binary digits, so we should round 0.05 to 10 bits after the binary point. The closest approximation is then 0.0000110011.
Thus our multiplication becomes
This rounds to 11.023 with three digits after the decimal point.
Consider the task of computing the product of 1.2 and 5.6 with binary fixed point using 16 fraction bits. To represent the two numbers, one multiplies them by 216, obtaining78 643.2 and367 001.6; and round these values the nearest integers, obtaining78 643 and367 002. These numbers will fit comfortably into a 32-bit word with two's complement signed format.
Multiplying these integers together gives the 35-bit integer28 862 138 286 with 32 fraction bits, without any rounding. Note that storing this value directly into a 32-bit integer variable would result in overflow and loss of the most significant bits. In practice, it would probably be stored in a signed 64-bit integer variable orregister.
If the result is to be stored in the same format as the data, with 16 fraction bits, that integer should be divided by 216, which gives approximately440 401.28, and then rounded to the nearest integer. This effect can be achieved by adding 215 and then shifting the result by 16 bits. The result is440 401, which represents the value 6.719 985 961 914 062 5. Taking into account the precision of the format, that value is better expressed as 6.719 986 ± 0.000 008 (not counting the error that comes from the operand approximations). The correct result would be 1.2 × 5.6 = 6.72.
For a more complicated example, suppose that the two numbers 1.2 and 5.6 are represented in 32-bit fixed point format with 30 and 20 fraction bits, respectively. Scaling by 230 and 220 gives1 288 490 188.8 and5 872 025.6, that round to1 288 490 189 and5 872 026, respectively. Both numbers still fit in a 32-bit signed integer variable, and represent the fractions
Their product is (exactly) the 53-bit integer7 566 047 890 552 914, which has 30+20 = 50 implied fraction bits and therefore represents the fraction
If we choose to represent this value in signed 16-bit fixed format with 8 fraction bits, we must divide the integer product by 250−8 = 242 and round the result; which can be achieved by adding 241 and shifting by 42 bits. The result is 1720, representing the value 1720/28 = 6.718 75, or approximately 6.719 ± 0.002.
Various notations have been used to concisely specify the parameters of a fixed-point format. In the following list,f represents the number of fractional bits,m the number of magnitude or integer bits,s the number of sign bits, andb the total number of bits.
PIC S9999V99
specified a sign-magnitude 6-digit decimal integer with two decimal fraction digits.[7]REAL FIXED BINARY (p,f)
is used in thePL/I programming language, to specify a fixed-point signed binary data type withp total bits (not including sign) withf bits in the fraction part; that is ap+1 bit signed integer with a scaling factor of 1/2f. The latter could be positive or negative. One could specifyCOMPLEX instead ofREAL, andDECIMAL instead ofBINARY for base 10.typeFisdelta0.01range-100.0..100.0
, meaning a fixed-point representation consisting of a signed binary integer in two's complement format with 7 implied fraction bits (providing a scaling factor 1/128) and at least 15 bits total (ensuring an actual range from −128.00 to almost +128.00).[8]Qf
to specify a signed binary fixed-point value withf fraction bits; for example,Q15
specifies a signed integer in two's complement notation with a scaling factor 1/215. The codeQm.f
specifies additionally that the number hasm bits in the integer part of the value, not counting the sign bit. ThusQ1.30
would describe a binary fixed-point format with 1 integer bit and 30 fractional bits, which could be stored as a 32-bit 2's complement integer with scaling factor 1/230.[9][10] A similar notation has been used byARM, except that they count the sign bit in the value ofm; so the same format above would be specified asQ2.30
.[11][12]Bm
has been used to mean a fixed binary format withm bits in the integer part; the rest of the word being fraction bits. For example, the maximum and minimum values that can be stored in a signedB16
number are ≈32767.9999847 and −32768.0, respectively.fxm.b
to denote a binary fixed-point value withb total bits andm bits in the integer part; that is, ab-bit integer with scaling factor 1/2b−m. Thusfx1.16
would mean a 16-bit number with 1 bit in the integer part and 15 in the fraction.[13]s:m:f
, wheres specifies the presence (0 or 1) of sign bit.[14] For example,0:5:3 represents an unsigned 8-bit integer with a scaling factor of 1/23.<s,b,m>
to specify the parameters of an 'FXP' fixed point numbers. Thes component can be either '+' or '±', signifying either an unsigned or 2's complement signed number, respectively. Theb component is the total number of bits, andm is the number of bits in the integer part.