#include "packedfloat.h" #include #define OUT_IMPL(T) \ template <> \ void Out(IOutputStream & os, TTypeTraits::TFuncParam val) { \ os << (float)val; \ } OUT_IMPL(f16) OUT_IMPL(uf16) OUT_IMPL(f8) OUT_IMPL(uf8) OUT_IMPL(f8d) OUT_IMPL(uf8d) #undef OUT_IMPL