Created
July 24, 2023 13:33
-
-
Save Steboss89/ad628c624a170765276fc9a27e9aa855 to your computer and use it in GitHub Desktop.
Floating point table specifications
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
floating point format | number of bits | bit for sign | bits for exponent | bits for mantissa | base | |
---|---|---|---|---|---|---|
f16 (half-precision) | 16 | 1 | 5 | 10 | 2 | |
f32 (single-precision) | 32 | 1 | 8 | 23 | 2 | |
f64 (double-precision) | 64 | 1 | 11 | 52 | 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment