Skip to content

Commit

Permalink
update develop branch versions for hipBLAS rocBLAS (#583)
Browse files Browse the repository at this point in the history
* update develop branch versions for hipBLAS rocBLAS

* correct SOVERSION
  • Loading branch information
amcamd authored Apr 6, 2023
1 parent 040a606 commit f1db069
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ include( ROCMInstallSymlinks )
include( ROCMClients )
include( ROCMHeaderWrapper )

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

# Append our library helper cmake path and the cmake path for hip (for convenience)
Expand Down Expand Up @@ -193,7 +193,7 @@ endif( )

# Package specific CPACK vars
if( NOT USE_CUDA )
rocm_package_add_dependencies(DEPENDS "rocblas >= 4.0.0" "rocsolver >= 3.23.0")
rocm_package_add_dependencies(DEPENDS "rocblas >= 3.1.0" "rocsolver >= 3.23.0")
endif( )

set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md" )
Expand Down
6 changes: 3 additions & 3 deletions bump_develop_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
# For the develop branch, bump hipblas version and rocblas/rocsolver dependency versions

OLD_HIPBLAS_VERSION="1.0.0"
NEW_HIPBLAS_VERSION="2.0.0"
NEW_HIPBLAS_VERSION="1.1.0"

OLD_MINIMUM_ROCBLAS_VERSION="3.0.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.0.0"
NEW_MINIMUM_ROCBLAS_VERSION="3.1.0"

OLD_MINIMUM_ROCSOLVER_VERSION="3.22.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.23.0"

OLD_SO_VERSION="hipblas_SOVERSION 0.1"
NEW_SO_VERSION="hipblas_SOVERSION 2.0"
NEW_SO_VERSION="hipblas_SOVERSION 1.0"

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
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.0 )
set( hipblas_SOVERSION 1.1.0 )

list( APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake )

Expand Down

0 comments on commit f1db069

Please sign in to comment.