Skip to content

Commit

Permalink
Version 2022.05.00
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed May 31, 2022
1 parent 17003bc commit 5fb5787
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
2022.05.00
- Improved performance, including:
LU, Cholesky, QR, mixed-precision LU and Cholesky, trsm, hemm, gemm,
eigenvalues
- Added LU threshold pivoting
- Added scale, add, print
- Added row-major MPI grid order; fixes ScaLAPACK API
- Included HIP sources in repo, to eliminate build requirement of hipify-perl
- Fixed OpenMP issues
- Fixed QR with low-rank local blocks
- Added C API in CMake
- Rewrote testers to use less memory and reduce ScaLAPACK dependency
- Use fast residual test for BLAS routines

2021.05.02
- CMake: fix include paths with HIP for Spack

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 2021.05.02
VERSION 2022.05.00
LANGUAGES CXX Fortran
)

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 2021.05.02
#define SLATE_VERSION 20210502
// Version 2022.05.00
#define SLATE_VERSION 20220500

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

0 comments on commit 5fb5787

Please sign in to comment.