Skip to content

Commit 8490ca9

Browse files
authored
Merge pull request #362 from zaliu/master
Enable gfx906 support
2 parents e969647 + cd46424 commit 8490ca9

14 files changed

+55206
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ tags
3636
.vscode
3737

3838
# build-in-source directory
39-
build
39+
build*

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ include( ROCMInstallTargets )
126126
include( ROCMPackageConfigHelpers )
127127
include( ROCMInstallSymlinks )
128128

129-
rocm_setup_version( VERSION 0.14.1.2 NO_GIT_TAG_VERSION )
129+
rocm_setup_version( VERSION 0.14.2.5 NO_GIT_TAG_VERSION )
130130

131131
# Append our library helper cmake path and the cmake path for hip (for convenience)
132132
# Users may override HIP path by specifying their own in CMAKE_MODULE_PATH
@@ -164,7 +164,7 @@ if( BUILD_WITH_TENSILE )
164164
else()
165165
# Use the virtual-env setup and download package from specified repot:
166166
set( tensile_fork "ROCmSoftwarePlatform" CACHE STRING "Tensile fork to use" )
167-
set( tensile_tag v4.5.0 CACHE STRING "Tensile tag to download" )
167+
set( tensile_tag v4.5.1 CACHE STRING "Tensile tag to download" )
168168
virtualenv_install("git+https://github.com/ROCmSoftwarePlatform/Tensile.git@${tensile_tag}")
169169
message (STATUS "using GIT Tensile fork=${tensile_fork} from branch=${tensile_tag}")
170170
endif()
@@ -181,7 +181,7 @@ if( CMAKE_CXX_COMPILER MATCHES ".*/hcc$" )
181181
endif( )
182182

183183
# CMake list of machine targets
184-
set( AMDGPU_TARGETS gfx803;gfx900 CACHE STRING "List of specific machine types for library to target" )
184+
set( AMDGPU_TARGETS gfx803;gfx900;gfx906 CACHE STRING "List of specific machine types for library to target" )
185185

186186
add_subdirectory( library )
187187

0 commit comments

Comments
 (0)