Skip to content

Commit

Permalink
bump versions and prepare changelog for new dev cycle (ROCm#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
tfalders authored Sep 22, 2023
1 parent df23a9d commit 96e4dd2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Full documentation for hipSOLVER is available at [hipsolver.readthedocs.io](https://hipsolver.readthedocs.io/en/latest/).


## (Unreleased) hipSOLVER
### Added
### Optimized
### Changed
### Deprecated
### Removed
### Fixed
### Known Issues
### Security


## hipSOLVER 2.0.0 for ROCm 6.0.0
### Added
- Added hipBLAS as an optional dependency to hipsolver-test. Use the `BUILD_HIPBLAS_TESTS` CMake option to test compatibility between hipSOLVER and hipBLAS.
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ include( ROCMInstallSymlinks )
include( ROCMClients )
include( ROCMHeaderWrapper )

set ( VERSION_STRING "2.0.0" )
set ( VERSION_STRING "2.1.0" )
rocm_setup_version( VERSION ${VERSION_STRING} )

if( NOT DEFINED ENV{HIP_PATH})
Expand Down Expand Up @@ -214,7 +214,7 @@ endif( )

# Package specific CPACK vars
if( NOT USE_CUDA )
rocm_package_add_dependencies(DEPENDS "rocblas >= 4.0.0" "rocsolver >= 3.24.0")
rocm_package_add_dependencies(DEPENDS "rocblas >= 4.1.0" "rocsolver >= 3.25.0")
endif( )

set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md" )
Expand Down
12 changes: 6 additions & 6 deletions bump_hipsolver_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
# Edit script to bump versions for new development cycle/release.

# for hipSOLVER version string
OLD_HIPSOLVER_VERSION="2.0.0"
NEW_HIPSOLVER_VERSION="2.1.0"
OLD_HIPSOLVER_VERSION="2.1.0"
NEW_HIPSOLVER_VERSION="2.2.0"
sed -i "s/${OLD_HIPSOLVER_VERSION}/${NEW_HIPSOLVER_VERSION}/g" CMakeLists.txt

# for rocBLAS/rocSOLVER package requirements
OLD_MINIMUM_ROCBLAS_VERSION="4.0.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.1.0"
OLD_MINIMUM_ROCSOLVER_VERSION="3.24.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.25.0"
OLD_MINIMUM_ROCBLAS_VERSION="4.1.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.2.0"
OLD_MINIMUM_ROCSOLVER_VERSION="3.25.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.26.0"
sed -i "s/${OLD_MINIMUM_ROCBLAS_VERSION}/${NEW_MINIMUM_ROCBLAS_VERSION}/g" CMakeLists.txt
sed -i "s/${OLD_MINIMUM_ROCSOLVER_VERSION}/${NEW_MINIMUM_ROCSOLVER_VERSION}/g" CMakeLists.txt

0 comments on commit 96e4dd2

Please sign in to comment.