Skip to content

Commit

Permalink
Version 2023.08.25
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Aug 25, 2023
1 parent 2667d0d commit 62680a1
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2023.08.25
- Use yyyy.mm.dd version scheme, instead of yyyy.mm.release
- Added oneAPI support to CMake
- Fixed int64 support
- More robust Makefile configure doesn't require CUDA or ROCm to be in
compiler search paths (CPATH, LIBRARY_PATH, etc.)
- Added `gemqrt` to multiply by Q from QR

2023.06.00
- Updates for BLAS++ changes to Queue class

Expand Down Expand Up @@ -33,7 +41,7 @@
- Added `make check`

2020.09.00
- Initial release.
- Supports LAPACK >= 3.2.1.
- Includes routines through LAPACK 3.7.0.
- Initial release
- Supports LAPACK >= 3.2.1
- Includes routines through LAPACK 3.7.0
- Makefile and CMake build options
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(
lapackpp
VERSION 2023.06.00
VERSION 2023.08.25
LANGUAGES CXX
)

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

.PHONY: $(pkg)
$(pkg):
perl -pe "s'#VERSION'2023.06.00'; \
perl -pe "s'#VERSION'2023.08.25'; \
s'#PREFIX'${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 = "LAPACK++"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2023.06.00"
PROJECT_NUMBER = "2023.08.25"

# 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/lapack.hh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#include "lapack/defines.h"

// Version is updated by make_release.py; DO NOT EDIT.
// Version 2023.06.00
#define LAPACKPP_VERSION 20230600
// Version 2023.08.25
#define LAPACKPP_VERSION 20230825

namespace lapack {

Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (NOT TARGET testsweeper)
message( " Found TestSweeper library: ${testsweeper_DIR}" )
else()
set( url "https://github.com/icl-utk-edu/testsweeper" )
set( tag "v2023.01.00" )
set( tag "v2023.08.25" )
message( "" )
message( "---------- TestSweeper" )
message( STATUS "Fetching TestSweeper ${tag} from ${url}" )
Expand Down

0 comments on commit 62680a1

Please sign in to comment.