From 96932a8c9f96451b35777dee4405cb16195cca42 Mon Sep 17 00:00:00 2001 From: Mark Gates Date: Tue, 14 Jun 2022 13:46:44 -0400 Subject: [PATCH] Version 2022.06.00 --- CHANGELOG.md | 8 ++++++++ CMakeLists.txt | 2 +- docs/doxygen/doxyfile.conf | 2 +- include/slate/slate.hh | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6189b29d..5c65acacc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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, diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b6a96870..297673d36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ cmake_minimum_required( VERSION 3.18 ) project( slate - VERSION 2022.05.00 + VERSION 2022.06.00 LANGUAGES CXX Fortran ) diff --git a/docs/doxygen/doxyfile.conf b/docs/doxygen/doxyfile.conf index 3df9662e1..590113825 100644 --- a/docs/doxygen/doxyfile.conf +++ b/docs/doxygen/doxyfile.conf @@ -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 diff --git a/include/slate/slate.hh b/include/slate/slate.hh index d8adfbd43..e0727987f 100644 --- a/include/slate/slate.hh +++ b/include/slate/slate.hh @@ -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();