Skip to content

Commit 27a9df6

Browse files
committed
Update doc for 0.2.20 version.
1 parent 7224022 commit 27a9df6

3 files changed

Lines changed: 43 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 2.8.5)
66
project(OpenBLAS)
77
set(OpenBLAS_MAJOR_VERSION 0)
88
set(OpenBLAS_MINOR_VERSION 2)
9-
set(OpenBLAS_PATCH_VERSION 20.dev)
9+
set(OpenBLAS_PATCH_VERSION 20)
1010
set(OpenBLAS_VERSION "${OpenBLAS_MAJOR_VERSION}.${OpenBLAS_MINOR_VERSION}.${OpenBLAS_PATCH_VERSION}")
1111

1212
enable_language(ASM)

Changelog.txt

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
11
OpenBLAS ChangeLog
2+
====================================================================
3+
Version 0.2.20
4+
24-Jul-2017
5+
6+
common:
7+
* Improved CMake support
8+
* Fixed several thread race and locking bugs
9+
* Fixed default LAPACK optimization level
10+
* Updated LAPACK to 3.7.0
11+
* Added ReLAPACK (https://github.com/HPAC/ReLAPACK, make BUILD_RELAPACK=1)
12+
13+
POWER:
14+
* Optimizations for Power9
15+
* Fixed several Power8 assembly bugs
16+
17+
ARM:
18+
* New optimized Vulcan and ThunderX2T99 targets
19+
* Support for ARMV7 SOFT_FP ABI (make ARM_SOFTFP_ABI=1)
20+
* Detect all cpu cores including offline ones
21+
* Fix compilation with CLANG
22+
* Support building a shared library for Android
23+
24+
MIPS:
25+
* Fixed several threading issues
26+
* Fix compilation with CLANG
27+
28+
x86_64:
29+
* Detect Intel Bay Trail and Apollo Lake
30+
* Detect Intel Sky Lake and Kaby Lake
31+
* Detect Intel Knights Landing
32+
* Detect AMD A8, A10, A12 and Ryzen
33+
* Support 64bit builds with Visual Studio
34+
* Fix building with Intel and PGI compilers
35+
* Fix building with MINGW and TDM-GCC
36+
* Fix cmake builds for Haswell and related cpus
37+
* Fix building for Sandybridge with CLANG 3.9
38+
* Add support for the FLANG compiler
39+
40+
IBM Z:
41+
* New target z13 with BLAS3 optimizations
42+
243
====================================================================
344
Version 0.2.19
445
1-Sep-2016

Makefile.rule

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
# This library's version
6-
VERSION = 0.2.20.dev
6+
VERSION = 0.2.20
77

88
# If you set the suffix, the library name will be libopenblas_$(LIBNAMESUFFIX).a
99
# and libopenblas_$(LIBNAMESUFFIX).so. Meanwhile, the soname in shared library

0 commit comments

Comments
 (0)