Skip to content

Commit

Permalink
Prepare release v3.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Demel <demel@uni-bremen.de>
  • Loading branch information
jdemel committed Jan 14, 2023
1 parent 18a0a3e commit 3aa34c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"title": "Vector-Optimized Library of Kernels (VOLK)",
"description": "VOLK is the Vector-Optimized Library of Kernels. It is a free library that contains kernels of hand-written SIMD code for different mathematical operations. Since each SIMD architecture can be very different and no compiler has yet come along to handle vectorization properly or highly efficiently, VOLK approaches the problem differently. For each architecture or platform that a developer wishes to vectorize for, a new proto-kernel is added to VOLK. At runtime, VOLK will select the correct proto-kernel. In this way, the users of VOLK call a kernel for performing the operation that is platform/architecture agnostic. This allows us to write portable SIMD code that is optimized for a variety of platforms.",
"license": {
"id": "GPL-3.0-or-later"
"id": "LGPL-3.0-or-later"
},
"keywords": [
"communication",
Expand Down Expand Up @@ -182,6 +181,9 @@
{
"name": "Rodionov, Andrey"
},
{
"name": "Roe, Michael"
},
{
"affiliation": "GNU Radio",
"name": "Rondeau, Tom"
Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ message(STATUS "Build type set to ${CMAKE_BUILD_TYPE}.")
# Version setup
########################################################################

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

macro(set_version_str VAR)
Expand Down

0 comments on commit 3aa34c1

Please sign in to comment.