Skip to content

Commit

Permalink
Version 2023.11.05
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Nov 6, 2023
1 parent a4631cf commit f1c8490
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 8 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
2023.11.05
- Fix variable block sizes
- Fix tau in LQ tester
- Update examples for Users Guide
- Fix CUDA sync in Frobenius norm
- Add random butterfly transform (RBT) solver
- Use `blas_int` in scalapack wrappers, towards supporting int64
- Fix Cholesky QR test with well-conditioned matrix
- Add info check in LU for singular matrix
- Fix SVD tester for all vectors
- Use multi-threaded Intel MKL to improve eig and svd
- Add arbitrary batch regions in `set`
- Add timers in `gesv`, `posv`, `gels`, `heev`, `svd`
- Improve support for 2D GPU grids and lambda constructors
- Fix ROCm complex for ROCm 5.6
- Merge Cholesky potrf Host and Device implementations
- Remove tile life from QR, LQ, add routines
- Fix test matrix generation
- Cleanup MOSI, move to Tile class
- Add zerocol test matrix variant
- Fix receive count
- Use GPU-to-GPU copies
- Fix `tileMB`, `tileNb`
- Improve LU left pivoting for target device

2023.08.25
- Added oneMKL/SYCL support
- Added singular value decomposition (SVD) vectors
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ cmake_minimum_required( VERSION 3.18 )

project(
slate
VERSION 2023.08.25
VERSION 2023.11.05
LANGUAGES CXX Fortran
)

Expand Down
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ LDFLAGS_clean = ${filter-out -fPIC -L./%, ${LDFLAGS}}

.PHONY: ${pkg}
${pkg}:
perl -pe "s'#VERSION'2023.08.25'; \
perl -pe "s'#VERSION'2023.11.05'; \
s'#PREFIX'${abs_prefix}'; \
s'#CXX\b'${CXX}'; \
s'#CXXFLAGS'${CXXFLAGS_clean}'; \
Expand Down
2 changes: 1 addition & 1 deletion blaspp
Submodule blaspp updated 243 files
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 = "2023.08.25"
PROJECT_NUMBER = "2023.11.05"

# 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 @@ -28,8 +28,8 @@
namespace slate {

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2023.08.25
#define SLATE_VERSION 20230825
// Version 2023.11.05
#define SLATE_VERSION 20231105

int version();
const char* id();
Expand Down
2 changes: 1 addition & 1 deletion lapackpp
Submodule lapackpp updated 650 files

0 comments on commit f1c8490

Please sign in to comment.