File tree Expand file tree Collapse file tree 7 files changed +18
-8
lines changed
Expand file tree Collapse file tree 7 files changed +18
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
88OLD_ROCBLAS_VERSION=" 5.1.0"
99NEW_ROCBLAS_VERSION=" 5.2.0"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ if(TENSILE_STATIC_ONLY)
6060endif ()
6161
6262if (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" )
6464endif ()
6565
6666if (NOT TENSILE_DISABLE_CTEST)
Original file line number Diff line number Diff line change 2626from __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
3131def PrintTensileRoot ():
3232 import os .path
Original file line number Diff line number Diff line change 2424
2525# hardcoded tensile version; also in Tensile/__init__.py
2626set (TENSILE_VERSION_MAJOR 4)
27- set (TENSILE_VERSION_MINOR 45 )
27+ set (TENSILE_VERSION_MINOR 46 )
2828set (TENSILE_VERSION_PATCH 0)
2929
3030# export version
Original file line number Diff line number Diff line change 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
3333OLD_MINIMUM_REQUIRED_VERSION=" MinimumRequiredVersion: 4.7.2"
3434NEW_MINIMUM_REQUIRED_VERSION=" MinimumRequiredVersion: 4.8.0"
You can’t perform that action at this time.
0 commit comments