From 8d770a94797e000bea098776e1fce7590e9363b2 Mon Sep 17 00:00:00 2001 From: Mark Gates Date: Sat, 26 Oct 2024 09:59:09 -0400 Subject: [PATCH] Version 2024.10.26 --- CHANGELOG.md | 4 ++++ CMakeLists.txt | 2 +- GNUmakefile | 2 +- docs/doxygen/doxyfile.conf | 2 +- include/blas.hh | 4 ++-- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd72125e..86ec9295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +2024.10.26 + - Added PAPI SDE that counts flops. + - Use to_blas_int to convert int32 to int64. + 2024.05.31 - Added shared library version (ABI version 1.0.0) - Updated enum parameters to have `to_string`, `from_string`; diff --git a/CMakeLists.txt b/CMakeLists.txt index 77e4e7e3..e10f259c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 ) project( blaspp - VERSION 2024.05.31 + VERSION 2024.10.26 LANGUAGES CXX ) diff --git a/GNUmakefile b/GNUmakefile index f3700042..18517eca 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -295,7 +295,7 @@ LDFLAGS_clean = ${filter-out -fPIC, ${LDFLAGS}} .PHONY: ${pkg} ${pkg}: - perl -pe "s'#VERSION'2024.05.31'; \ + perl -pe "s'#VERSION'2024.10.26'; \ s'#PREFIX'${abs_prefix}'; \ s'#CXX\b'${CXX}'; \ s'#CXXFLAGS'${CXXFLAGS_clean}'; \ diff --git a/docs/doxygen/doxyfile.conf b/docs/doxygen/doxyfile.conf index 31df16ef..70828636 100644 --- a/docs/doxygen/doxyfile.conf +++ b/docs/doxygen/doxyfile.conf @@ -40,7 +40,7 @@ PROJECT_NAME = "BLAS++" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "2024.05.31" +PROJECT_NUMBER = "2024.10.26" # 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/blas.hh b/include/blas.hh index d25546ec..6c22c9bc 100644 --- a/include/blas.hh +++ b/include/blas.hh @@ -11,8 +11,8 @@ #include "blas/counter.hh" // Version is updated by make_release.py; DO NOT EDIT. -// Version 2024.05.31 -#define BLASPP_VERSION 20240531 +// Version 2024.10.26 +#define BLASPP_VERSION 20241026 namespace blas {