Skip to content

Commit

Permalink
Version 2023.06.00
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Jun 29, 2023
1 parent 350fb9d commit 30873c6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Pending
- Moved repo to <https://github.com/icl-utk-edu/slate>
- Fixed `gemm` and `trsm` when n is small
2023.06.00
- Moved repo to GitHub: https://github.com/icl-utk-edu/slate
- Added Hermitian eigenvectors using divide and conquer algorithm
- Added CALU variant of LU factorization
- Added mixed-precision GMRES solver
- Added GPU-aware MPI support using `${SLATE_GPU_AWARE_MPI}` environment variable
- Improved CALU and QR performance by moving panel operations to the GPU
- Update to use BLAS++ queues for all operations, to support oneAPI
- Update test matrix generator so random matrices are the same
regardless of MPI distribution
- Fixed `gemm` and `trsm` when n is small (stationary A case)
- Enabled examples to be used as smoke tests to verify library installation
- Numerous bug fixes

2022.07.00
- Improved performance of QR factorization on GPUs by moving panel to GPU:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cmake_minimum_required( VERSION 3.18 )

project(
slate
VERSION 2022.07.00
VERSION 2023.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 = "2022.07.00"
PROJECT_NUMBER = "2023.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.07.00
#define SLATE_VERSION 20220700
// Version 2023.06.00
#define SLATE_VERSION 20230600

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

0 comments on commit 30873c6

Please sign in to comment.