Skip to content

Commit

Permalink
version for master branch release 14.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amcamd committed Sep 12, 2018
1 parent dd05b47 commit e969647
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ include( ROCMInstallTargets )
include( ROCMPackageConfigHelpers )
include( ROCMInstallSymlinks )

rocm_setup_version( VERSION 0.15.1.1 NO_GIT_TAG_VERSION )
rocm_setup_version( VERSION 0.14.1.2 NO_GIT_TAG_VERSION )

# Append our library helper cmake path and the cmake path for hip (for convenience)
# Users may override HIP path by specifying their own in CMAKE_MODULE_PATH
Expand Down Expand Up @@ -164,7 +164,7 @@ if( BUILD_WITH_TENSILE )
else()
# Use the virtual-env setup and download package from specified repot:
set( tensile_fork "ROCmSoftwarePlatform" CACHE STRING "Tensile fork to use" )
set( tensile_tag "develop" CACHE STRING "Tensile tag to download" )
set( tensile_tag v4.5.0 CACHE STRING "Tensile tag to download" )
virtualenv_install("git+https://github.com/ROCmSoftwarePlatform/Tensile.git@${tensile_tag}")
message (STATUS "using GIT Tensile fork=${tensile_fork} from branch=${tensile_tag}")
endif()
Expand Down
6 changes: 3 additions & 3 deletions bump_develop_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
# - run this script in master branch
# - after running this script merge master into develop

OLD_ROCBLAS_VERSION="14.1.1"
NEW_ROCBLAS_VERSION="15.1.1"
OLD_ROCBLAS_VERSION="14.1.2"
NEW_ROCBLAS_VERSION="15.1.2"

OLD_TENSILE_VERSION="tensile_tag v4.4.0"
OLD_TENSILE_VERSION="tensile_tag v4.5.0"
NEW_TENSILE_VERSION="tensile_tag \"develop\""

sed -i "s/${OLD_ROCBLAS_VERSION}/${NEW_ROCBLAS_VERSION}/g" CMakeLists.txt
Expand Down
19 changes: 10 additions & 9 deletions bump_master_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,20 @@
# - after running this script and merging develop into master, run bump_develop_version.sh in master and
# merge master into develop

OLD_ROCBLAS_VERSION="15.1.0"
NEW_ROCBLAS_VERSION="14.1.1"
OLD_ROCBLAS_VERSION="15.1.1"
NEW_ROCBLAS_VERSION="14.1.2"

OLD_TENSILE_VERSION="tensile_tag \"develop\""
NEW_TENSILE_VERSION="tensile_tag v4.4.0"
NEW_TENSILE_VERSION="tensile_tag v4.5.0"

OLD_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.3.0"
NEW_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.4.0"
OLD_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.4.0"
NEW_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.5.0"

sed -i "s/${OLD_ROCBLAS_VERSION}/${NEW_ROCBLAS_VERSION}/g" CMakeLists.txt
sed -i "s/${OLD_TENSILE_VERSION}/${NEW_TENSILE_VERSION}/g" CMakeLists.txt

for FILE in library/src/blas3/Tensile/Logic/*/*yaml
do
sed -i "s/${OLD_MINIMUM_REQUIRED_VERSION}/${NEW_MINIMUM_REQUIRED_VERSION}/" $FILE
done
#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

0 comments on commit e969647

Please sign in to comment.