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 27642d0631ace9e7c07cbb42c41287cba2aa9d2d
parent 4ab363e4d82bc8007e81df345e8e293138409f94
Author: [email protected] <[email protected]>
Date:   Wed,  4 Mar 2020 13:00:18 +0000

KFR 4.1

Diffstat:
MCHANGELOG.md | 24++++++++++++++++++++++++
MREADME.md | 3+--
Minclude/kfr/capi.h | 2+-
Minclude/kfr/kfr.h | 2+-
4 files changed, 27 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 4.1.0 + +2020-03-04 + +#### Added + +- MSVC2019 support (16.4.4 is required) +- Stateless short_fir expression (thanks to https://github.com/slarew) +- `biquad_filter` constructor taking `std::vector<biquad_params<T>>` (thanks to https://github.com/BenjaminNavarro) +- `cabssqr` function (thanks to https://github.com/slarew) +- `moving_sum` expression (thanks to https://github.com/slarew) +- `gen_expj` generator (thanks to https://github.com/slarew) + +#### Changed +- `cdirect_t{}` is now allowed in real dft plan methods for compatibility +- complex support for `convolve_filter` (thanks to https://github.com/slarew) + +#### Fixed + +- GCC debug build (thanks to https://github.com/BenjaminNavarro) +- `is_invocable_r_impl` fallback for missing C++17 feature +- `std::complex` compatibility (thanks to https://github.com/slarew) +- Various CI fixes + ## 4.0.0 2019-12-05 diff --git a/README.md b/README.md @@ -13,7 +13,7 @@ Compiler support: ![Clang 6+](https://img.shields.io/badge/Clang-6%2B-brightgreen.svg?style=flat-square) ![Xcode 9+](https://img.shields.io/badge/Xcode-9%2B-brightgreen.svg?style=flat-square) ![GCC 7+](https://img.shields.io/badge/GCC-7%2B-brightgreen.svg?style=flat-square) -![MSVC 2017](https://img.shields.io/badge/MSVC-2017-brightgreen.svg?style=flat-square) +![MSVC 2017](https://img.shields.io/badge/MSVC-2017%2B-brightgreen.svg?style=flat-square) https://www.kfr.dev @@ -50,7 +50,6 @@ Some C++17 library features will be emulated if not present in the standard libr ### Release notes -* MSVC support is limited to MSVC2017 due to ICE in MSVC2019. Once fixed, support will be added * DFT is limited to Clang due to ICE in MSVC and broken AVX optimization in GCC 8 and 9. Once fixed, support will be added ## What's new in KFR 3.0 diff --git a/include/kfr/capi.h b/include/kfr/capi.h @@ -77,7 +77,7 @@ extern "C" KFR_ARCH_AVX512 = 8, }; -#define KFR_HEADERS_VERSION 40000 +#define KFR_HEADERS_VERSION 40100 KFR_API_SPEC const char* kfr_version_string(); KFR_API_SPEC uint32_t kfr_version(); diff --git a/include/kfr/kfr.h b/include/kfr/kfr.h @@ -9,7 +9,7 @@ #include "cident.h" #define KFR_VERSION_MAJOR 4 -#define KFR_VERSION_MINOR 0 +#define KFR_VERSION_MINOR 1 #define KFR_VERSION_PATCH 0 #define KFR_VERSION_LABEL ""