Loading [MathJax]/extensions/tex2jax.js
libTriton version 1.0 build 1599
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
softfloat.hpp
Go to the documentation of this file.
1
2/*
3** Copyright (C) - Triton
4**
5** This program is under the terms of the Apache License 2.0.
6*/
7
8#ifndef TRITON_SOFTFLOAT_HPP
9#define TRITON_SOFTFLOAT_HPP
10
11#include <cstdint>
12
14namespace triton {
20 namespace sf {
28 auto f32_to_f16(float value) -> uint16_t;
29
31 };
33};
34
35#endif /* TRITON_SOFTFLOAT_HPP */
auto f32_to_f16(float value) -> uint16_t
Cast 32-bit floating point value to 16-bit according to IEEE-754.
Definition softfloat.cpp:15
The Triton namespace.