Skip to content

Commit f8153c6

Browse files
[Tensile] Bump version 4.46.0 and update changelog (#4937)
## Motivation Bump version to 4.46.0 and include changes in CHANGELOG ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests. --------- Co-authored-by: Jeffrey Novotny <jnovotny@amd.com>
1 parent 4ca3b9f commit f8153c6

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

projects/rocblas/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ if(NOT SKIP_LIBRARY)
176176
set( Tensile_ARCHITECTURE "${GPU_TARGETS}" CACHE STRING "Tensile to use which architecture?" FORCE)
177177
list_replace( Tensile_ARCHITECTURE "gfx90a" "gfx90a:xnack+\;gfx90a:xnack-")
178178

179-
set( TENSILE_VERSION 4.45.0 CACHE STRING "The version of Tensile to be used")
179+
set( TENSILE_VERSION 4.46.0 CACHE STRING "The version of Tensile to be used")
180180

181181
set( Tensile_NO_ENUMERATE ON CACHE BOOL "Disable enumerating GPU targets for Tensile builds" FORCE)
182182

projects/rocblas/bump_develop_version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# for the develop branch this script bumps the Tensile version and hash and the rocBLAS version
44

5-
OLD_TENSILE_VERSION="TENSILE_VERSION 4.44.0"
6-
NEW_TENSILE_VERSION="TENSILE_VERSION 4.45.0"
5+
OLD_TENSILE_VERSION="TENSILE_VERSION 4.45.0"
6+
NEW_TENSILE_VERSION="TENSILE_VERSION 4.46.0"
77

88
OLD_ROCBLAS_VERSION="5.1.0"
99
NEW_ROCBLAS_VERSION="5.2.0"

shared/tensile/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog for Tensile
22

3+
## Tensile 4.46.0 (Unreleased)
4+
5+
## Changed
6+
7+
- Disable optimizations for `RunGEMMKernel_test`.
8+
9+
## Resolved issues
10+
11+
- Fixed how the toolchain handles an empty Windows ROCm directory.
12+
313
## Tensile 4.45.0 for ROCm 7.2.0
414

515
### Removed

shared/tensile/HostLibraryTests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if(TENSILE_STATIC_ONLY)
6060
endif()
6161

6262
if(NOT Tensile_FOUND)
63-
find_package(Tensile 4.45.0 EXACT REQUIRED ${TENSILE_COMPONENTS} PATHS "${CMAKE_CURRENT_SOURCE_DIR}/../Tensile")
63+
find_package(Tensile 4.46.0 EXACT REQUIRED ${TENSILE_COMPONENTS} PATHS "${CMAKE_CURRENT_SOURCE_DIR}/../Tensile")
6464
endif()
6565

6666
if(NOT TENSILE_DISABLE_CTEST)

shared/tensile/Tensile/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from __future__ import print_function
2727

2828
# hardcoded tensile version; also in Tensile/Source/TensileConfigVersion.cmake
29-
__version__ = "4.45.0"
29+
__version__ = "4.46.0"
3030

3131
def PrintTensileRoot():
3232
import os.path

shared/tensile/Tensile/cmake/TensileConfigVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
# hardcoded tensile version; also in Tensile/__init__.py
2626
set(TENSILE_VERSION_MAJOR 4)
27-
set(TENSILE_VERSION_MINOR 45)
27+
set(TENSILE_VERSION_MINOR 46)
2828
set(TENSILE_VERSION_PATCH 0)
2929

3030
# export version

shared/tensile/bump-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# This script needs to be edited to bump version for new release.
2828
# Version will be bumped in Tensile/__init__.py and in .yaml files
2929

30-
OLD_VERSION="4.44.0"
31-
NEW_VERSION="4.45.0"
30+
OLD_VERSION="4.45.0"
31+
NEW_VERSION="4.46.0"
3232

3333
OLD_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.7.2"
3434
NEW_MINIMUM_REQUIRED_VERSION="MinimumRequiredVersion: 4.8.0"

0 commit comments

Comments
 (0)