forked from ROCm/rocBLAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bump_master_version.sh
executable file
·29 lines (22 loc) · 1.16 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
26
27
28
29
#!/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.17.0"
NEW_ROCBLAS_VERSION="2.18.0"
OLD_TENSILE_VERSION="Tensile 4.16.0"
NEW_TENSILE_VERSION="Tensile 4.17.0"
OLD_TENSILE_HASH="c381a385613317065809be1d83d149927888a470"
NEW_TENSILE_HASH="fdd9ef8d5a0687596efee85b7ec187f1fb097087"
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
sed -i "s/${OLD_TENSILE_HASH}/${NEW_TENSILE_HASH}/g" tensile_tag.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
#a9379f4e42efb754c9a618047bfbf292d74dfd0fdone