Skip to content

Commit

Permalink
Version 2022.07.00
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Jul 30, 2022
1 parent 84d8fa3 commit 0e5cadf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
2022.07.00
- Improved performance of QR factorization on GPUs by moving panel to GPU:
5.5x faster on tall-skinny problem
- Added Cholesky QR `cholqr`; added as option in least squares solver, `gels`
- Added GPU implementation of `gemmA`, used when n is small (e.g., n <= nb)
- Added row and column scaling, `scale_row_col`
- Added print of individual tile
- Removed use of life counter in `gemm`, `herk`
- Removed setting MKL threads, which is no longer needed
- Removed `SLATE_NO_{HIP, CUDA}` macros in favor of
`BLAS_HAVE_{CUBLAS, ROCBLAS}` macros from BLAS++
- Introduced `tile` namespace

2022.06.00
- Fixed algorithm selection (issue #41)
- Fixed set for triangular, trapezoid, symmetric, Hermitian matrices (tzset)
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.06.00
VERSION 2022.07.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.06.00"
PROJECT_NUMBER = "2022.07.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.06.00
#define SLATE_VERSION 20220600
// Version 2022.07.00
#define SLATE_VERSION 20220700

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

0 comments on commit 0e5cadf

Please sign in to comment.