commit 8becc01cb61d37058403dad91234b8dd9395cf99
parent 3735a459b72d5214364b69289140179f14d850a7
Author: [email protected] <[email protected]>
Date: Mon, 27 Nov 2023 14:19:24 +0000
KFR 5.2.0
Diffstat:
3 files changed, 30 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -1,5 +1,33 @@
# Changelog
+## 5.2.0
+
+2023-11-27
+
+#### Changed
+
+- The performance of DFT has been increased up to 40% compared to KFR 5 on x86 and x86_64
+in single and double precision, inplace and out of place processing.
+
+#### Added
+
+- `KFR_NO_PERF_TESTS` define can now disable performance tests
+- `CMT_CVAL` for extracting constexpr-enabled value from `cval_t`
+- `fft_algorithm_selection` to select FFT algorithm for given FFT size.
+
+#### Fixed
+
+- Warnings in Clang 10 https://github.com/kfrlib/kfr/issues/198
+- `std::is_pov` is peprecated in C++20 https://github.com/kfrlib/kfr/issues/190
+- DFT sizes 0 and 1 were not processed correctly https://github.com/kfrlib/kfr/issues/195
+- Internal compiler error in Visual Studio Compiler 19.37 https://github.com/kfrlib/kfr/issues/194
+- Goertzel issue https://github.com/kfrlib/kfr/issues/121
+- Bug in `nearest_real_or_complex` https://github.com/kfrlib/kfr/issues/137
+- Fixed operators in `KFR_STD_COMPLEX` mode
+- Testo library: typo in `epsilon_scope`
+- Fix ambiguities with std::identity (c++20)
+- Force linking in correct order for multi-architecture binaries
+
## 5.1.0
2023-10-11
diff --git a/KNOWNBUGS.md b/KNOWNBUGS.md
@@ -7,3 +7,4 @@
| Visual Studio 2022 | x86_64 | AVX512 | Internal Compiler Error (sometimes) |
| Clang 14 | x86/x86_64 | Generic | Code generation bug in Clang |
| GCC 12 | x86/x86_64 | AVX512 | Code generation bug in GCC |
+| Clang 10 | ARM, ARM64 | | Code generation bug in Clang https://github.com/kfrlib/kfr/issues/112 |
diff --git a/include/kfr/kfr.h b/include/kfr/kfr.h
@@ -33,7 +33,7 @@
#include "cident.h"
#define KFR_VERSION_MAJOR 5
-#define KFR_VERSION_MINOR 1
+#define KFR_VERSION_MINOR 2
#define KFR_VERSION_PATCH 0
#define KFR_VERSION_LABEL ""