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 5a91864e52b0922a9585db08b356e348365afaf3
parent 93427af6737b1590160c4076abb89eb33702aa4b
Author: [email protected] <[email protected]>
Date:   Fri, 12 Aug 2016 10:46:59 +0300

Update Readme

Diffstat:
MREADME.md | 8++++++--
Minclude/kfr/base/sin_cos.hpp | 2+-
Mtests/dft_test.cpp | 2+-
Mtests/intrinsic_test.cpp | 2+-
Mtests/vec_test.cpp | 1-
5 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md @@ -1,7 +1,11 @@ -# KFR +# KFR - Fast, modern C++ DSP framework [![Build Status](https://travis-ci.org/kfrlib/kfr.svg?branch=master)](https://travis-ci.org/kfrlib/kfr) +https://www.kfrlib.com + +What's new in release 1.0 - https://www.kfrlib.com/whatsnew + KFR is an open source C++ DSP framework that focuses on high performance (see benchmark results section). KFR is a header-only and has no external dependencies. @@ -138,4 +142,4 @@ Tested on the following systems: KFR is dual-licensed, available under both commercial and open-source GPL license. -If you want to use KFR in commercial product or a closed-source project, you need to [purchase a Commercial License](http://kfrlib.com/purchase-license) +If you want to use KFR in commercial product or a closed-source project, you need to [purchase a Commercial License](https://kfrlib.com/purchase-license) diff --git a/include/kfr/base/sin_cos.hpp b/include/kfr/base/sin_cos.hpp @@ -199,7 +199,7 @@ KFR_SINTRIN vec<T, N> fastsin(const vec<T, N>& x) const vec<T, N> pi = c_pi<T>; vec<T, N> xx = x - pi; - vec<T, N> y = abs(xx); + vec<T, N> y = abs(xx); y = select(y > c_pi<T, 1, 2>, pi - y, y); y = y ^ (msk & ~xx); diff --git a/tests/dft_test.cpp b/tests/dft_test.cpp @@ -14,8 +14,8 @@ #include <kfr/base/random.hpp> #include <kfr/base/reduce.hpp> #include <kfr/cometa/string.hpp> -#include <kfr/dft/fft.hpp> #include <kfr/dft/conv.hpp> +#include <kfr/dft/fft.hpp> #include <kfr/dft/reference_dft.hpp> #include <kfr/io/tostring.hpp> #include <kfr/math.hpp> diff --git a/tests/intrinsic_test.cpp b/tests/intrinsic_test.cpp @@ -7,8 +7,8 @@ #include <kfr/io/tostring.hpp> #include "testo/testo.hpp" -#include <kfr/math.hpp> #include <kfr/dsp.hpp> +#include <kfr/math.hpp> using namespace kfr; diff --git a/tests/vec_test.cpp b/tests/vec_test.cpp @@ -289,7 +289,6 @@ TEST(test_delay) CHECK(v3[3] == 100); CHECK(v3[4] == 101); CHECK(v3[19] == 116); - } int main(int argc, char** argv) { return testo::run_all("", true); }