forked from ROCm/rocBLAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbump_master_version.sh
executable file
·25 lines (19 loc) · 1.01 KB
/
bump_master_version.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# This script needs to be edited to bump old develop version to new master version for new release.
# - run this script in develop branch
# - after running this script merge develop into master
# - after running this script and merging develop into master, run bump_develop_version.sh in master and
# merge master into develop
OLD_ROCBLAS_VERSION="2.2.9."
NEW_ROCBLAS_VERSION="2.2.10"
OLD_TENSILE_VERSION="tensile_tag 8b8549b61c3adb56ffe4d71b55857107ec0aff80"
NEW_TENSILE_VERSION="tensile_tag d19a268b89ba98778646fcb5360b2a9548b53e45"
OLD_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.6.0"
NEW_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.7.1"
sed -i "s/${OLD_ROCBLAS_VERSION}/${NEW_ROCBLAS_VERSION}/g" CMakeLists.txt
sed -i "s/${OLD_TENSILE_VERSION}/${NEW_TENSILE_VERSION}/g" CMakeLists.txt
#only update yaml files for a Tensile major version change
#for FILE in library/src/blas3/Tensile/Logic/*/*yaml
#do
# sed -i "s/${OLD_MINIMUM_REQUIRED_VERSION}/${NEW_MINIMUM_REQUIRED_VERSION}/" $FILE
#done