kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 7d46473e077b03a358fbdb1572c798976b0c8f02
parent d096043b2b1edcd0beffbc2460bc07f67762d92c
Author: [email protected] <[email protected]>
Date:   Sat, 13 Jan 2024 02:40:27 +0000

Fixes for representation

Diffstat:
Minclude/kfr/base/tensor.hpp | 10++++++++++
Minclude/kfr/base/univector.hpp | 2+-
2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/include/kfr/base/tensor.hpp b/include/kfr/base/tensor.hpp @@ -966,6 +966,16 @@ struct representation<kfr::tensor<T, dims>> static std::string get(const kfr::tensor<T, dims>& value) { return value.to_string(); } }; +template <char t, int width, int prec, typename T, kfr::index_t dims> +struct representation<fmt_t<kfr::tensor<T, dims>, t, width, prec>> +{ + using type = std::string; + static std::string get(const fmt_t<kfr::tensor<T, dims>, t, width, prec>& value) + { + return array_to_string<fmt_t<T, t, width, prec>>(value.value.size(), value.value.data()); + } +}; + } // namespace cometa CMT_PRAGMA_MSVC(warning(pop)) diff --git a/include/kfr/base/univector.hpp b/include/kfr/base/univector.hpp @@ -704,7 +704,7 @@ struct representation<fmt_t<kfr::univector<T, Tag>, t, width, prec>> using type = std::string; static std::string get(const fmt_t<kfr::univector<T, Tag>, t, width, prec>& value) { - return array_to_string<fmt_t<T, t, width, prec>>(value.size(), value.data()); + return array_to_string<fmt_t<T, t, width, prec>>(value.value.size(), value.value.data()); } };