Skip to content

Commit f8f983d

Browse files
committed
Version 2023.08.25
1 parent 3347f08 commit f8f983d

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1+
2023.08.25
2+
- Use yyyy.mm.dd version scheme, instead of yyyy.mm.release
3+
- Added oneAPI support to CMake
4+
- Fixed int64 support
5+
- More robust Makefile configure doesn't require CUDA or ROCm to be in
6+
compiler search paths (CPATH, LIBRARY_PATH, etc.)
7+
18
2023.06.00
29
- Revised Queue class to allow creating Queue from an existing
310
CUDA/HIP stream, cuBLAS/rocBLAS handle, or SYCL queue. Also
411
allocates streams and workspace on demand, to make Queue creation
512
much lighter weight.
6-
- Improved oneAPI support.
13+
- Improved oneAPI support
714

815
2023.01.00
916
- Added oneAPI port (currently Makefile only)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cmake_minimum_required( VERSION 3.17 )
1515

1616
project(
1717
blaspp
18-
VERSION 2023.06.00
18+
VERSION 2023.08.25
1919
LANGUAGES CXX
2020
)
2121

GNUmakefile

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

236236
.PHONY: $(pkg)
237237
$(pkg):
238-
perl -pe "s'#VERSION'2023.06.00'; \
238+
perl -pe "s'#VERSION'2023.08.25'; \
239239
s'#PREFIX'${abs_prefix}'; \
240240
s'#CXX\b'${CXX}'; \
241241
s'#CXXFLAGS'${CXXFLAGS_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 = "2023.06.00"
43+
PROJECT_NUMBER = "2023.08.25"
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 2023.06.00
13-
#define BLASPP_VERSION 20230600
12+
// Version 2023.08.25
13+
#define BLASPP_VERSION 20230825
1414

1515
namespace blas {
1616

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (NOT TARGET testsweeper)
2323
message( "" )
2424
else()
2525
set( url "https://github.com/icl-utk-edu/testsweeper" )
26-
set( tag "v2023.01.00" )
26+
set( tag "v2023.08.25" )
2727
message( "" )
2828
message( "---------- TestSweeper" )
2929
message( STATUS "Fetching TestSweeper ${tag} from ${url}" )

tools/release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
2929
'version.c' is a source file containing the following #define for the id:
3030
31-
// PROJECT_ID is the Mercurial or git commit hash ID, either
32-
// defined by `hg id` or `git rev-parse --short HEAD` in Makefile,
31+
// PROJECT_ID is the git commit hash ID, either
32+
// defined by `git rev-parse --short HEAD` in Makefile,
3333
// or defined here by make_release.py for release tar files. DO NOT EDIT.
3434
#ifndef PROJECT_ID
3535
#define PROJECT_ID "unknown"

0 commit comments

Comments
 (0)