From 8e35c6bb67abe469e5a6d0632fc9a84d11c3d9a8 Mon Sep 17 00:00:00 2001 From: Piotr Luszczek Date: Wed, 7 Aug 2024 20:58:08 +0000 Subject: [PATCH] Add new version 24.8.7 --- CMakeLists.txt | 2 +- ChangeLog | 15 +++++++++++++-- include/plasma_types.h | 4 ++-- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72e88fc..63b6d1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) -project( PLASMA VERSION 23.8.2 LANGUAGES C +project( PLASMA VERSION 24.8.7 LANGUAGES C HOMEPAGE_URL "https://github.com/icl-utk-edu/plasma" DESCRIPTION "Software library for solving dense linear algebra systems using OpenMP") set(CMAKE_SUPPRESS_REGENERATION on) diff --git a/ChangeLog b/ChangeLog index 9618dc2..83ef32a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,17 +4,28 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [24.8.7] - 2024-08-07 ### Added -- Add an attempt to generate missing precision files if Python present +- Add an attempt to generate missing precision files if Python present during configuration +- Add generation of pkg-config files during installation +- Add generation of CMake expored configuration during installation +- Add timeout to the basic testing script +- Add SOVERSION to the installed libraries to track API changes +- Add detection of CBLAS and LAPACKE headers and libraries based on CMake's FindBLAS() and FindLAPACK() +- Add description of the CMake installation process with system-level details ### Fixed - Fix variable pointing to OpenBLAS installation - Fix name of Python executable when launching code generation +- Fix download link for available releases in documentation +- Fix compatibility of basic testing script with Python 3 versions +- Fix error codes to be negative unlike numerical issues reported as positive integers +- Fix generation of Fortran wrappers ## [23.8.2] - 2023-08-02 ### Added -- Add support for OpenBLAS and exported CMake configuration +- Add support for OpenBLAS and its exported CMake configuration - Add PLASMA prefix to remaining config macros ### Removed diff --git a/include/plasma_types.h b/include/plasma_types.h index 71db235..616ff50 100644 --- a/include/plasma_types.h +++ b/include/plasma_types.h @@ -16,9 +16,9 @@ /* * RELEASE is a, b, c */ -#define PLASMA_VERSION_MAJOR 23 +#define PLASMA_VERSION_MAJOR 24 #define PLASMA_VERSION_MINOR 8 -#define PLASMA_VERSION_PATCH 2 +#define PLASMA_VERSION_PATCH 7 #ifdef __cplusplus extern "C" {