HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
half_float.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <half.hpp>
4
5namespace HighFive {
6using float16_t = half_float::half;
7
8template <>
10 _hid = detail::h5t_copy(H5T_NATIVE_FLOAT);
11 // Sign position, exponent position, exponent size, mantissa position, mantissa size
12 detail::h5t_set_fields(_hid, 15, 10, 5, 0, 10);
13 // Total datatype size (in bytes)
14 detail::h5t_set_size(_hid, 2);
15 // Floating point exponent bias
16 detail::h5t_set_ebias(_hid, 15);
17}
18
19} // namespace HighFive
AtomicType()
Definition H5DataType_misc.hpp:228
Definition assert_compatible_spaces.hpp:15
half_float::half float16_t
Definition half_float.hpp:6