Difference: FloatingPointUnit (11 vs. 12)

Revision 122022-11-02 - PeterSchmid

Line: 1 to 1
 
META TOPICPARENT name="WebHome"
%DASHBOARD{ section="banner"
Line: 29 to 29
 

Floating-Point Unit

Added:
>
>
Also from STM AN4044

Floating-point calculations require a lot of resources, as for any operation between two numbers. For example, we need to:

  • Align the two numbers (have them with the same exponent)
  • Perform the operation
  • Round out the result
  • Code the result

On an FPU-less processor, all these operations are done by software through the C compiler library (or Forth Words) and are not visible to the programmer; but the performances are very low. On a processor having an FPU, all of the operations are entirely done by hardware in a single cycle, for most of the instructions. The C (or Forth) compiler does not use its own floating-point library but directly generates FPU native instructions.

When implementing a mathematical algorithm on a microprocessor having an FPU, the programmer does not have to choose between performance and development time. The FPU brings reliability allowing to use directly any generated code through a high level tool, such as MATLAB or Scilab, with the highest level of performance.

Normalized Numbers Range

Mode Exponent Exp. Bias Exp. Range Mantissa Decimal digits Min. value Max. Value
Single 8-bit 127 -126,+127 23-bit 7.22 1.18E-38 3.40E38
Double 11-bit 1023 -1022,+1023 52-bit 15.95 2.23E-308 1.8E308

IEEE.754 Single and Double Precision Floating-Point Coding

ieee-754.png

Some Links

 

Deleted:
<
<
 
Deleted:
<
<
 
Line: 39 to 74
 
Added:
>
>
 
  • nur single-precision? (7..8 Dezimalstellen, H7 hat double precision FPU)
  • kein eigener Stack
Deleted:
<
<
  • >float wo?
  • float register mit mutex absichern?
  • float.fs in source integrieren?
 
  • auf float in ISR verzichten
  • _FPU_USED
Deleted:
<
<
  • AN4044 Application note, Foating point unit demonstration on STM32 microcontrollers
  • math.h e.g. float cosf (float)
  >float in Gforth engine/support.c verwendet strtod() (strtof() for single precision)
Line: 190 to 221
 -- Peter Schmid - 2022-11-01

Creative Commons License
This work by Peter Schmid is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.

Added:
>
>
META FILEATTACHMENT attachment="ieee-754.png" attr="" comment="" date="1667389970" name="ieee-754.png" path="ieee-754.png" size="12998" user="PeterSchmid" version="1"
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2025 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback