Skip to content

Commit 72a88a4

Browse files
committed
V3.1.1 OpenMP support
1 parent be7a396 commit 72a88a4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(SZ3 VERSION 3.1.0.0)
2+
project(SZ3 VERSION 3.1.1.0)
33
include(GNUInstallDirs)
44
include(CTest)
55

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,5 @@ Version New features
4646
* SZ 3.0.0 SZ3 is the C++ version of SZ with modular and composable design.
4747
* SZ 3.0.1 Improve the build process.
4848
* SZ 3.0.2 Support point-wise relative error bound mode.
49-
* SZ 3.1.0 The default algorithm is now interpolation+Lorenzo.
49+
* SZ 3.1.0 The default algorithm is now interpolation+Lorenzo.
50+
* SZ 3.1.1 Add OpenMP support. Works for all algorithms.

include/SZ3/def.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/*------ Version ------*/
99
#define SZ_VERSION_MAJOR 3
1010
#define SZ_VERSION_MINOR 1
11-
#define SZ_VERSION_RELEASE 0
11+
#define SZ_VERSION_RELEASE 1
1212

1313
#define SZ_LIB_VERSION SZ_VERSION_MAJOR.SZ_VERSION_MINOR.SZ_VERSION_RELEASE
1414
#define SZ_QUOTE(str) #str

0 commit comments

Comments
 (0)