Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 2024.05.31 #85

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2024.05.31
- Added shared library version (ABI version 1.0.0)
- Updated enum parameters to have `to_string`, `from_string`;
deprecate `<enum>2str`, `str2<enum>`
- Removed some deprecated functions. Deprecated MemcpyKind
- Added PAPI SDE counters (manually enable for now)
- Support ROCm 5.6.0 (rocBLAS 3.0), trmm with 3 matrices (A, B, C)
- Fixed bug in her2k with complex alpha and row-major matrix
- Fixed bug in example_gemm
- Use `sqrt`, etc. without `std::` to enable argument dependent lookup (ADL)

2023.11.05
- Fix Queue workspace
- Update Fortran strlen handling
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 )

project(
blaspp
VERSION 2023.11.05
VERSION 2024.05.31
LANGUAGES CXX
)

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

.PHONY: ${pkg}
${pkg}:
perl -pe "s'#VERSION'2023.11.05'; \
perl -pe "s'#VERSION'2024.05.31'; \
s'#PREFIX'${abs_prefix}'; \
s'#CXX\b'${CXX}'; \
s'#CXXFLAGS'${CXXFLAGS_clean}'; \
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 = "BLAS++"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2023.11.05"
PROJECT_NUMBER = "2024.05.31"

# 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/blas.hh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include "blas/counter.hh"

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2023.11.05
#define BLASPP_VERSION 20231105
// Version 2024.05.31
#define BLASPP_VERSION 20240531

namespace blas {

Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (NOT TARGET testsweeper)
message( "" )
else()
set( url "https://github.com/icl-utk-edu/testsweeper" )
set( tag "46266dbd5b9560413a379d5c17764aadf96e1890" ) # 2024-05-24
set( tag "v2024.05.31" )
message( "" )
message( "---------- TestSweeper" )
message( STATUS "Fetching TestSweeper ${tag} from ${url}" )
Expand Down
Loading