Skip to content

Add support for Float24 #1

Description

@TheNicker

24 bit precision floating point is also not supported natively by the CPU.
The code may be generalized using templates to create a custom precision floating point.
e.g.

template <int MANTISSA, int EXPONENT> class Float;

typedef Float<10, 5>   Float16;
typedef Float<16, 7>   Float24;
typedef Float<23, 8>   Float32;
typedef Float<52, 11>  Float64;

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions