Skip to content

Commit

Permalink
Develop branch for release after ROCm 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
daineAMD committed Aug 6, 2024
1 parent b6989b8 commit 13fb384
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 32 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ list( APPEND CMAKE_PREFIX_PATH ${ROCM_PATH}/lib/cmake/hip /opt/rocm /opt/rocm/ll
# rocm-cmake contains common cmake code for rocm projects to help setup and install
include(dependencies)

set ( VERSION_STRING "2.3.0" )
set ( VERSION_STRING "2.4.0" )
rocm_setup_version( VERSION ${VERSION_STRING} )

option( BUILD_VERBOSE "Output additional build information" OFF )
Expand Down Expand Up @@ -202,8 +202,8 @@ endif( )

# Package specific CPACK vars
if(HIP_PLATFORM STREQUAL amd)
set(rocblas_minimum 4.3.0)
set(rocsolver_minimum 3.27.0)
set(rocblas_minimum 4.4.0)
set(rocsolver_minimum 3.28.0)
rocm_package_add_dependencies(SHARED_DEPENDS "rocblas >= ${rocblas_minimum}" "rocsolver >= ${rocsolver_minimum}")
rocm_package_add_rpm_dependencies(STATIC_DEPENDS "rocblas-static-devel >= ${rocblas_minimum}" "rocsolver-static-devel >= ${rocsolver_minimum}")
rocm_package_add_deb_dependencies(STATIC_DEPENDS "rocblas-static-dev >= ${rocblas_minimum}" "rocsolver-static-dev >= ${rocsolver_minimum}")
Expand Down
16 changes: 8 additions & 8 deletions bump_develop_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

# For the develop branch, bump hipblas version and rocblas/rocsolver dependency versions

OLD_HIPBLAS_VERSION="2.2.0"
NEW_HIPBLAS_VERSION="2.3.0"
OLD_HIPBLAS_VERSION="2.3.0"
NEW_HIPBLAS_VERSION="2.4.0"

OLD_MINIMUM_ROCBLAS_VERSION="4.2.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.3.0"
OLD_MINIMUM_ROCBLAS_VERSION="4.3.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.4.0"

OLD_MINIMUM_ROCSOLVER_VERSION="3.26.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.27.0"
OLD_MINIMUM_ROCSOLVER_VERSION="3.27.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.28.0"

OLD_SO_VERSION="hipblas_SOVERSION 2.2"
NEW_SO_VERSION="hipblas_SOVERSION 2.3"
OLD_SO_VERSION="hipblas_SOVERSION 2.3"
NEW_SO_VERSION="hipblas_SOVERSION 2.4"

sed -i "s/${OLD_HIPBLAS_VERSION}/${NEW_HIPBLAS_VERSION}/g" CMakeLists.txt
sed -i "s/${OLD_MINIMUM_ROCBLAS_VERSION}/${NEW_MINIMUM_ROCBLAS_VERSION}/g" CMakeLists.txt
Expand Down
20 changes: 0 additions & 20 deletions bump_master_version.sh

This file was deleted.

2 changes: 1 addition & 1 deletion library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# ########################################################################

# This is incremented when the ABI to the library changes
set( hipblas_SOVERSION 2.3 )
set( hipblas_SOVERSION 2.4 )

list( APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake )

Expand Down

0 comments on commit 13fb384

Please sign in to comment.