From 1241417cacc73de3e981886817516a6f4f9a8c43 Mon Sep 17 00:00:00 2001 From: James Sandham <33790278+jsandham@users.noreply.github.com> Date: Fri, 11 Mar 2022 13:03:01 -0800 Subject: [PATCH] Update changelog for 5.1 (#258) * updated changelog * Hotfix: Set RPM license type (#243) * update changelog for 5.1 Co-authored-by: Nico Trost Co-authored-by: Liam Wrubleski Co-authored-by: jsandham --- CHANGELOG.md | 14 +++++++++++++- CMakeLists.txt | 2 +- library/CMakeLists.txt | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 880a6487..7c6f025c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Change Log for hipSPARSE -## (Unreleased) hipSPARSE 2.0.0 +## hipSPARSE 2.1.0 for ROCm 5.1.0 +### Added +- Added gtsv_interleaved_batch and gpsv_interleaved_batch routines +- Add SpGEMM_reuse +### Changed +- Changed BUILD_CUDA with USE_CUDA in install script and cmake files +- Update googletest to 11.1 +### Improved +- Fixed a bug in SpMM Alg versioning +### Known Issues +- none + +## hipSPARSE 2.0.0 for ROCm 5.0.0 ### Added - Added (conjugate) transpose support for csrmv, hybmv and spmv routines diff --git a/CMakeLists.txt b/CMakeLists.txt index 400b97d4..e5cabe9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -104,7 +104,7 @@ endif() include(cmake/Dependencies.cmake) # Setup version -rocm_setup_version(VERSION 2.0.0) +rocm_setup_version(VERSION 2.1.0) set(hipsparse_SOVERSION 0.1) # hipSPARSE library diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index ff2c7946..86645e58 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -134,6 +134,7 @@ if(NOT USE_CUDA) set(CPACK_RPM_PACKAGE_REQUIRES "rocsparse >= 1.12.10") endif() set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE.md") +set(CPACK_RPM_PACKAGE_LICENSE "MIT") if(WIN32) set(CPACK_SOURCE_GENERATOR "ZIP")