From 74844142d7ece86696dd9031709f0f64df73d42e Mon Sep 17 00:00:00 2001 From: Alex Liu <35415350+zaliu@users.noreply.github.com> Date: Mon, 16 Sep 2019 13:09:48 -0400 Subject: [PATCH] hot fix to restore loading of DGEMM replacement kernels --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c872ca3d..7c549db0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -140,7 +140,7 @@ include( ROCMPackageConfigHelpers ) include( ROCMInstallSymlinks ) # Versioning via rocm-cmake -set ( VERSION_STRING "2.8.0" ) +set ( VERSION_STRING "2.8.1" ) rocm_setup_version( VERSION ${VERSION_STRING} ) # Append our library helper cmake path and the cmake path for hip (for convenience) @@ -182,12 +182,12 @@ 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 015477ad8c8ea0ef6f59b8d49a65015b46b8a48e CACHE STRING "Tensile tag to download" ) + set( tensile_tag 3f69739ed495346e243beef51b1f3f3ebe6d09a5 CACHE STRING "Tensile tag to download" ) virtualenv_install("git+https://github.com/${tensile_fork}/Tensile.git@${tensile_tag}") message (STATUS "using GIT Tensile fork=${tensile_fork} from branch=${tensile_tag}") endif() list(APPEND CMAKE_PREFIX_PATH ${VIRTUALENV_HOME_DIR}) - find_package(Tensile 4.11.0 EXACT REQUIRED HIP LLVM OpenMP PATHS "${INSTALLED_TENSILE_PATH}") + find_package(Tensile 4.12.0 EXACT REQUIRED HIP LLVM OpenMP PATHS "${INSTALLED_TENSILE_PATH}") endif() # Find HCC/HIP dependencies