From 72a88a42f8ace71bcf7db6125f53f8c5972ee2d6 Mon Sep 17 00:00:00 2001 From: Kai Zhao Date: Wed, 26 Jan 2022 20:11:20 -0500 Subject: [PATCH] V3.1.1 OpenMP support --- CMakeLists.txt | 2 +- README.md | 3 ++- include/SZ3/def.hpp | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 40973523..b0d97991 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.13) -project(SZ3 VERSION 3.1.0.0) +project(SZ3 VERSION 3.1.1.0) include(GNUInstallDirs) include(CTest) diff --git a/README.md b/README.md index fa262204..7f70608d 100644 --- a/README.md +++ b/README.md @@ -46,4 +46,5 @@ Version New features * SZ 3.0.0 SZ3 is the C++ version of SZ with modular and composable design. * SZ 3.0.1 Improve the build process. * SZ 3.0.2 Support point-wise relative error bound mode. -* SZ 3.1.0 The default algorithm is now interpolation+Lorenzo. \ No newline at end of file +* SZ 3.1.0 The default algorithm is now interpolation+Lorenzo. +* SZ 3.1.1 Add OpenMP support. Works for all algorithms. \ No newline at end of file diff --git a/include/SZ3/def.hpp b/include/SZ3/def.hpp index 1441833b..9cd44792 100644 --- a/include/SZ3/def.hpp +++ b/include/SZ3/def.hpp @@ -8,7 +8,7 @@ /*------ Version ------*/ #define SZ_VERSION_MAJOR 3 #define SZ_VERSION_MINOR 1 -#define SZ_VERSION_RELEASE 0 +#define SZ_VERSION_RELEASE 1 #define SZ_LIB_VERSION SZ_VERSION_MAJOR.SZ_VERSION_MINOR.SZ_VERSION_RELEASE #define SZ_QUOTE(str) #str