Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump versions #198

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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