Skip to content

Commit

Permalink
Version 2023.01.00
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Jan 25, 2023
1 parent 684c828 commit e6a8720
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
2023.01.00
- Added oneAPI port (currently Makefile only)
- Added queue argument to `device_malloc, device_free`, etc.;
deprecated old versions
- Deprecated `set_device, get_device`
- Renamed `device_malloc_pinned` to `host_malloc_pinned`
- Added `device_copy_{matrix,vector}`;
deprecated `device_{set,get}{matrix,vector}`
- Added more Level 1 BLAS on GPU device: axpy, dot, nrm2
- Moved main repo to https://github.com/icl-utk-edu/blaspp/
- Refactored routines for better maintainability
- Use python3

2022.07.00
- Added workspace in queue; used in LAPACK++
- Set device in memcpy, etc.
Expand All @@ -11,7 +24,7 @@
- Fixed CMake when BLAS_LIBRARIES is empty

2021.04.01
- Fixed bug in test_trsm_device for row-major
- Fixed bug in `test_trsm_device` for row-major

2021.04.00
- Added HIP/ROCm support
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 2022.07.00
VERSION 2023.01.00
LANGUAGES CXX
)

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

.PHONY: $(pkg)
$(pkg):
perl -pe "s'#VERSION'2021.04.01'; \
perl -pe "s'#VERSION'2023.01.00'; \
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 = "2022.07.00"
PROJECT_NUMBER = "2023.01.00"

# 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 @@ -9,8 +9,8 @@
#include "blas/defines.h"

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2022.07.00
#define BLASPP_VERSION 20220700
// Version 2023.01.00
#define BLASPP_VERSION 20230100

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 "2021.04.00" )
set( tag "v2023.01.00" )
message( "" )
message( "---------- TestSweeper" )
message( STATUS "Fetching TestSweeper ${tag} from ${url}" )
Expand Down

0 comments on commit e6a8720

Please sign in to comment.