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 a3f647166191123853a43ba6a8c26fdd0161d1ce
parent 81adbe8331562db30d73003d2ed0dbd9d1df32c8
Author: [email protected] <[email protected]>
Date:   Sun,  7 Aug 2016 07:19:58 +0300

cometa::repr() for kfr::cpu_t

Diffstat:
Minclude/kfr/io/tostring.hpp | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/include/kfr/io/tostring.hpp b/include/kfr/io/tostring.hpp @@ -29,6 +29,8 @@ namespace cometa { +inline std::string repr(kfr::cpu_t v); + template <typename T> inline std::string repr(const kfr::complex<T>& v); @@ -91,6 +93,8 @@ inline std::string repr(const kfr::complex<T>& v) return as_string(v.real()) + " + " + as_string(v.imag()) + "j"; } +inline std::string repr(kfr::cpu_t v) { return kfr::cpu_name(v); } + template <typename T> inline std::string repr(const T* source, size_t N) {