Skip to content

Commit 314bafc

Browse files
committed
Version 2021.04.01
1 parent 6d4d11f commit 314bafc

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021.04.01
2+
- Fix bug in test_trsm_device for row-major
3+
14
2021.04.00
25
- Add HIP/ROCm support
36
- Added include/blas/defines.h based on configuration

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cmake_minimum_required( VERSION 3.15 )
1717

1818
project(
1919
blaspp
20-
VERSION 2021.04.00
20+
VERSION 2021.04.01
2121
LANGUAGES CXX
2222
)
2323

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ LDFLAGS_clean = $(filter-out -fPIC, $(LDFLAGS))
226226

227227
.PHONY: $(pkg)
228228
$(pkg):
229-
perl -pe 's:#VERSION:2021.04.00:; \
229+
perl -pe 's:#VERSION:2021.04.01:; \
230230
s:#PREFIX:${prefix}:; \
231231
s:#CXXFLAGS:${CXXFLAGS_clean}:; \
232232
s:#CPPFLAGS:${CPPFLAGS_clean}:; \

docs/doxygen/doxyfile.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PROJECT_NAME = "BLAS++"
4040
# could be handy for archiving the generated documentation or if some version
4141
# control system is used.
4242

43-
PROJECT_NUMBER = "2021.04.00"
43+
PROJECT_NUMBER = "2021.04.01"
4444

4545
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4646
# for a project that appears at the top of each page and should give viewer a

include/blas.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#include "blas/defines.h"
1010

1111
// Version is updated by make_release.py; DO NOT EDIT.
12-
// Version 2021.04.00
13-
#define BLASPP_VERSION 20210400
12+
// Version 2021.04.01
13+
#define BLASPP_VERSION 20210401
1414

1515
namespace blas {
1616

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (NOT TARGET testsweeper)
2222
message( " Found TestSweeper library: ${testsweeper_DIR}" )
2323
else()
2424
set( url "https://bitbucket.org/icl/testsweeper" )
25-
set( tag "2020.09.00" )
25+
set( tag "2021.04.00" )
2626
message( "" )
2727
message( "---------- TestSweeper" )
2828
message( STATUS "Fetching TestSweeper ${tag} from ${url}" )

0 commit comments

Comments
 (0)