Skip to content

Commit d73089b

Browse files
[rocm-libraries] ROCm/rocm-libraries#744 (commit 2dc4f0c)
Add gfx1150 support and rocBLAS yaml files for gfx1151 (#744) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Adding initial support for gfx1150 - Add Strix Halo yaml files that are copy of Navi33 yaml files (the same changes added for Strix Point) - Need to update tensile_tag.txt after PR with Tensile changes is merged ROCm/rocm-libraries#697
1 parent 5bac9cf commit d73089b

76 files changed

Lines changed: 1199093 additions & 6 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@ rocBLAS documentation is available at
4949

5050
* Deprecated the use of negative indices to indicate the default solution is being used for `gemm_ex` with `rocblas_gemm_algo_solution_index`
5151

52+
## rocBLAS 4.4.2 for ROCm 6.4.3
53+
54+
### Added
55+
56+
* gfx1150 support
57+
* gfx1151 yaml files
58+
5259
## rocBLAS 4.4.1 for ROCm 6.4.2
5360

5461
### Resolved issues

CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ if (NOT BUILD_ADDRESS_SANITIZER)
8585
set( TARGET_LIST_ROCM_5.7 "gfx803;gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack+;gfx90a:xnack-;gfx942;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102")
8686
set( TARGET_LIST_ROCM_6.0 "gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack+;gfx90a:xnack-;gfx942;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102")
8787
set( TARGET_LIST_ROCM_6.3 "gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a;gfx942;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102;gfx1151;gfx1200;gfx1201")
88-
set( TARGET_LIST_ROCM_6.5 "gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a;gfx942;gfx950;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102;gfx1151;gfx1200;gfx1201")
88+
set( TARGET_LIST_ROCM_7.0 "gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a;gfx942;gfx950;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102;gfx1150;gfx1151;gfx1200;gfx1201")
8989
else()
9090
set( TARGET_LIST_ROCM_5.6 "gfx908:xnack+;gfx90a:xnack+")
9191
set( TARGET_LIST_ROCM_5.7 "gfx908:xnack+;gfx90a:xnack+;gfx942:xnack+")
9292
set( TARGET_LIST_ROCM_6.0 "gfx908:xnack+;gfx90a:xnack+;gfx942:xnack+")
9393
set( TARGET_LIST_ROCM_6.3 "gfx908:xnack+;gfx90a:xnack+;gfx942:xnack+")
94-
set( TARGET_LIST_ROCM_6.5 "gfx908:xnack+;gfx90a:xnack+;gfx942:xnack+;gfx950:xnack+")
94+
set( TARGET_LIST_ROCM_7.0 "gfx908:xnack+;gfx90a:xnack+;gfx942:xnack+;gfx950:xnack+")
9595
endif()
9696

9797
if(ROCM_PLATFORM_VERSION)
@@ -101,15 +101,15 @@ if(ROCM_PLATFORM_VERSION)
101101
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_5.7}")
102102
elseif(${ROCM_PLATFORM_VERSION} VERSION_LESS 6.3.0)
103103
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_6.0}")
104-
elseif(${ROCM_PLATFORM_VERSION} VERSION_LESS 6.5.0)
104+
elseif(${ROCM_PLATFORM_VERSION} VERSION_LESS 7.0.0)
105105
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_6.3}")
106106
else()
107-
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_6.5}")
107+
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_7.0}")
108108
endif()
109109
message(STATUS "ROCM Platform Version: ${ROCM_PLATFORM_VERSION} default supported gfx list")
110110
else()
111111
message(STATUS "ROCM Platform Version: ${ROCM_PLATFORM_VERSION} is not set, using latest supported gfx list")
112-
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_6.5}")
112+
set(SUPPORTED_TARGETS "${TARGET_LIST_ROCM_7.0}")
113113
endif()
114114

115115
if( AMDGPU_TARGETS AND NOT GPU_TARGETS )

0 commit comments

Comments
 (0)