forked from ROCm/rocSOLVER
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepare 3.12 release for ROCm4.2 (ROCm#225)
- Loading branch information
1 parent
6221604
commit 124b3bc
Showing
5 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
#!/bin/sh | ||
|
||
# This script needs to be edited to bump rocsolver version for new release. | ||
# - run this script in develop before merging developi/staging into master | ||
# - run this script in develop before merging develop/staging into master | ||
|
||
OLD_ROCSOLVER_VERSION="3.10.0" #Released in October/November 2020 | ||
NEW_ROCSOLVER_VERSION="3.11.0" #To release in February 2021 | ||
OLD_ROCSOLVER_VERSION="3.11.0" #Released in February/March 2021 | ||
NEW_ROCSOLVER_VERSION="3.12.0" #To release in April/May 2021 | ||
sed -i "s/${OLD_ROCSOLVER_VERSION}/${NEW_ROCSOLVER_VERSION}/g" CMakeLists.txt | ||
|
||
# for documentation | ||
OLD_ROCSOLVER_DOCS_VERSION="3.11" | ||
NEW_ROCSOLVER_DOCS_VERSION="3.12" | ||
sed -i "s/${OLD_ROCSOLVER_DOCS_VERSION}/${NEW_ROCSOLVER_DOCS_VERSION}/g" docs/source/conf.py | ||
|
||
# for rocBLAS package requirements | ||
OLD_ROCBLAS_VERSION_DOWN="2.37" | ||
NEW_ROCBLAS_VERSION_DOWN="2.38" | ||
OLD_ROCBLAS_VERSION_UP="2.38" | ||
NEW_ROCBLAS_VERSION_UP="2.39" | ||
sed -i "s/${OLD_ROCBLAS_VERSION_UP}/${NEW_ROCBLAS_VERSION_UP}/g" library/CMakeLists.txt | ||
sed -i "s/${OLD_ROCBLAS_VERSION_DOWN}/${NEW_ROCBLAS_VERSION_DOWN}/g" library/CMakeLists.txt | ||
|
||
OLD_ROCSOLVER_VERSION="3.10" | ||
NEW_ROCSOLVER_VERSION="3.11" | ||
sed -i "s/${OLD_ROCSOLVER_VERSION}/${NEW_ROCSOLVER_VERSION}/g" docs/source/conf.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters