| 39 | // able to transparently access the raw 16-bit value contained within. |
| 40 | template <typename T> |
| 41 | T GetRawValue(T val) { |
| 42 | return val; |
| 43 | } |
| 44 | uint16 GetRawValue(Eigen::half val) { return val.x; } |
| 45 | |
| 46 | // Helper function for comparing a floating point type, FloatT, bitwise equal |
no outgoing calls
no test coverage detected