Skip to content

Commit

Permalink
Version 2022.06.00
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Jun 14, 2022
1 parent 0b39e42 commit 96932a8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2022.06.00
- Fixed algorithm selection (issue #41)
- Fixed set for triangular, trapezoid, symmetric, Hermitian matrices (tzset)
- Fixed ScaLAPACK pdsgesv wrapper (issue #42)
- Fixed norm for general band matrix (gbnorm)
- Added macro for OpenMP `default(none)`; by default empty since it
causes unpredictable errors for some compilers or libraries

2022.05.00
- Improved performance, including:
LU, Cholesky, QR, mixed-precision LU and Cholesky, trsm, hemm, gemm,
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cmake_minimum_required( VERSION 3.18 )

project(
slate
VERSION 2022.05.00
VERSION 2022.06.00
LANGUAGES CXX Fortran
)

Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/doxyfile.conf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ PROJECT_NAME = "SLATE"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER =
PROJECT_NUMBER = "2022.06.00"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions include/slate/slate.hh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
namespace slate {

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2022.05.00
#define SLATE_VERSION 20220500
// Version 2022.06.00
#define SLATE_VERSION 20220600

int version();
const char* id();
Expand Down

0 comments on commit 96932a8

Please sign in to comment.