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
5
namespace
HighFive
{
6
using
float16_t
= half_float::half;
7
8
template
<>
9
inline
AtomicType<float16_t>::AtomicType
() {
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
HighFive::AtomicType::AtomicType
AtomicType()
Definition
H5DataType_misc.hpp:228
HighFive
Definition
assert_compatible_spaces.hpp:15
HighFive::float16_t
half_float::half float16_t
Definition
half_float.hpp:6
highfive
half_float.hpp
Generated by
1.9.8