Skip to content

Commit

Permalink
Release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemel committed Jun 5, 2021
1 parent c9d42a4 commit 237a6fc
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .lastrelease
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.4.1
v2.5.0
75 changes: 75 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -443,3 +443,78 @@ Our v2.4.0 release introduced quite a lot of changes under the hood. With this b

* Other
- readme: Update TravisCI status badge


## [2.5.0] - 2021-06-05

Hi everyone!

We have a new VOLK release! We are happy to announce VOLK v2.5.0! We want to thank all contributors. This release wouldn't have been possible without them.

This release adds new kernel implementations and fixes. Some of these were longstanding PRs that could only be merged recently thanks to our switch from CLA to DCO.

### Announcements

I would like to point out one upcoming change. After this release, we will rename our development branch to `main` as discussed in [issue #461](https://github.com/gnuradio/volk/issues/461).


I'd like to point the community to this [VOLK relicensing GREP](https://github.com/gnuradio/greps/pull/33).
This is an ongoing effort to relicense VOLK under LGPLv3.
We're looking for people and organizations that are interested in leading this effort.

### Contributors

* Aang23 <[email protected]>
* Carles Fernandez <[email protected]>
* Florian Ritterhoff <[email protected]>
* Jam M. Hernandez Quiceno <[email protected]>, <[email protected]>
* Jaroslav Škarvada <[email protected]>
* Johannes Demel <[email protected]>
* Magnus Lundmark <[email protected]>
* Michael Dickens <[email protected]>
* Steven Behnke <[email protected]>
* alesha72003 <[email protected]>
* dernasherbrezon <[email protected]>
* rear1019 <[email protected]>


### Changes

* Kernels
- volk_32f_stddev_and_mean_32f_x2: implemented Young and Cramer's algorithm
- volk_32fc_accumulator_s32fc: Add new kernel
- volk_16ic_x2_dot_prod_16ic_u_avx2: Fix Typo, was `_axv2`.
- Remove _mm256_zeroupper() calls
- Enforce consistent function prototypes
- 32fc_index_max: Improve speed of AVX2 version
- conv_k7_r2: Disable broken AVX2 code
- improve volk_8i_s32f_convert_32f for ARM NEON
- Calculate cos in AVX512F
- Calculate sin using AVX512F


* Compilers
- MSVC
- Fix MSVC builds
- GCC
- Fix segmentation fault when using GCC 8
- MinGW
- add support and test for MinGW/MSYS2

* The README has received several improvements

* Build
- Fix python version detection
- cmake: Check that 'distutils' is available
- c11: Remove pre-C11 preprocessor instructions

* CI
- Add more CI to GitHub Actions
- Remove redundant tests from TravisCI
- Add non-x86 GitHub Actions
- Update compiler names in CI
- Disable fail-fast CI
- Add more debug output to tests

* Contributing
- contributing: Add CONTRIBUTING.md and DCO.txt
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ message(STATUS "Build type set to ${CMAKE_BUILD_TYPE}.")
########################################################################

set(VERSION_INFO_MAJOR_VERSION 2)
set(VERSION_INFO_MINOR_VERSION 4)
set(VERSION_INFO_MAINT_VERSION 1)
set(VERSION_INFO_MINOR_VERSION 5)
set(VERSION_INFO_MAINT_VERSION 0)
include(VolkVersion) #setup version info

macro(set_version_str VAR)
Expand Down

0 comments on commit 237a6fc

Please sign in to comment.