From e1a89d19c2d56a20d008df00a58e10180a6fc81b Mon Sep 17 00:00:00 2001 From: James Sandham <33790278+jsandham@users.noreply.github.com> Date: Fri, 11 Mar 2022 11:56:21 -0800 Subject: [PATCH] Update changelog for 5.1 (#248) * updated changelog * Hotfix: Set RPM license type (#244) * 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 6ef24054..6b99a8fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,19 @@ Full documentation for rocSPARSE is available at [rocsparse.readthedocs.io](https://rocsparse.readthedocs.io/en/latest/). -## (Unreleased) rocSPARSE 2.0.0 +## rocSPARSE 2.1.0 for ROCm 5.1.0 +### Added +- gtsv_interleaved_batch +- gpsv_interleaved_batch +- SpGEMM_reuse +- Allow copying of mat info struct +### Improved +- Optimization for SDDMM +- Allow unsorted matrices in csrgemm multipass algorithm +### Known Issues +- none + +## rocSPARSE 2.0.0 for ROCm 5.0.0 ### Added - csrmv, coomv, ellmv, hybmv for (conjugate) transposed matrices - csrmv for symmetric matrices diff --git a/CMakeLists.txt b/CMakeLists.txt index e5730a9c..0d0c6441 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -168,7 +168,7 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang" ) endif( ) # Setup version -set(VERSION_STRING "2.0.0") +set(VERSION_STRING "2.1.0") rocm_setup_version(VERSION ${VERSION_STRING}) set(rocsparse_SOVERSION 0.1) diff --git a/library/CMakeLists.txt b/library/CMakeLists.txt index 976be76f..3324d66f 100644 --- a/library/CMakeLists.txt +++ b/library/CMakeLists.txt @@ -129,6 +129,7 @@ rocm_install_symlink_subdir(rocsparse) set(CPACK_DEBIAN_PACKAGE_DEPENDS "hip-rocclr (>= 3.5.0)") set(CPACK_RPM_PACKAGE_REQUIRES "hip-rocclr >= 3.5.0") set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/../LICENSE.md") +set(CPACK_RPM_PACKAGE_LICENSE "MIT") if(WIN32) set(CPACK_SOURCE_GENERATOR "ZIP")