Skip to content

Commit

Permalink
bump versions (ROCm#618)
Browse files Browse the repository at this point in the history
Revert "Revert "bump versions and prepare changelog for next dev cycle (ROCm#606)" (ROCm#614)"

This reverts commit f67fca4.
  • Loading branch information
tfalders authored Oct 4, 2023
1 parent b7f53cf commit b8d453d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ get_os_id(OS_ID)
message(STATUS "OS detected is ${OS_ID}")

# Versioning via rocm-cmake
set(VERSION_STRING "3.24.0")
set(VERSION_STRING "3.25.0")
rocm_setup_version(VERSION ${VERSION_STRING})

# Workaround until llvm and hip CMake modules fix symlink logic in their config files
Expand Down Expand Up @@ -188,7 +188,7 @@ find_package(hip REQUIRED CONFIG PATHS ${ROCM_PATH} /opt/rocm)
find_package(rocblas REQUIRED CONFIG PATHS ${ROCM_PATH})
get_imported_target_location(location roc::rocblas)
message(STATUS "Found rocBLAS: ${location}")
set(rocsolver_pkgdeps "rocblas >= 4.0" "rocblas < 4.1")
set(rocsolver_pkgdeps "rocblas >= 4.1")

if(BUILD_WITH_SPARSE)
find_package(rocsparse REQUIRED CONFIG PATHS ${ROCM_PATH})
Expand Down
13 changes: 5 additions & 8 deletions bump_rocsolver_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@
# Edit script to bump versions for new development cycle/release.

# for rocSOLVER version string
OLD_ROCSOLVER_VERSION="3.24.0"
NEW_ROCSOLVER_VERSION="3.25.0"
OLD_ROCSOLVER_VERSION="3.25.0"
NEW_ROCSOLVER_VERSION="3.26.0"
sed -i "s/${OLD_ROCSOLVER_VERSION}/${NEW_ROCSOLVER_VERSION}/g" CMakeLists.txt

# for rocBLAS package requirements
OLD_ROCBLAS_VERSION_DOWN="4.0"
NEW_ROCBLAS_VERSION_DOWN="4.1"
OLD_ROCBLAS_VERSION_UP="4.1"
NEW_ROCBLAS_VERSION_UP="4.2"
sed -i "s/${OLD_ROCBLAS_VERSION_UP}/${NEW_ROCBLAS_VERSION_UP}/g" CMakeLists.txt
sed -i "s/${OLD_ROCBLAS_VERSION_DOWN}/${NEW_ROCBLAS_VERSION_DOWN}/g" CMakeLists.txt
OLD_ROCBLAS_VERSION="4.1"
NEW_ROCBLAS_VERSION="4.2"
sed -i "s/${OLD_ROCBLAS_VERSION}/${NEW_ROCBLAS_VERSION}/g" CMakeLists.txt

0 comments on commit b8d453d

Please sign in to comment.