From 6f3ccbae558065e66a7769aec85be024c8d6a0fe Mon Sep 17 00:00:00 2001 From: amd-garydeng Date: Wed, 2 Oct 2024 13:56:25 -0600 Subject: [PATCH] Add gfx1151 target (#547) * Add gfx1151 target * Revert "Add gfx1151 target" This reverts commit 302b02a20c6dcd1ec9af29c908eda3368e351b78. * Add gfx1151 target * update changelog --------- Co-authored-by: Stanley Tsang --- CHANGELOG.md | 6 ++++++ CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce34c6191..ac3306c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Documentation for rocRAND is available at [https://rocm.docs.amd.com/projects/rocRAND/en/latest/](https://rocm.docs.amd.com/projects/rocRAND/en/latest/) +## (Unreleased) rocRAND-3.1.1 for ROCm 6.2.4 + +### Additions + +* GFX1151 Support + ## (Unreleased) rocRAND-3.1.0 for ROCm 6.2.0 ### Additions diff --git a/CMakeLists.txt b/CMakeLists.txt index ec9950641..d7ff8d6f4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -91,7 +91,7 @@ set_property(CACHE GPU_TARGETS PROPERTY STRINGS "all") if(GPU_TARGETS STREQUAL "all") rocm_check_target_ids(DEFAULT_AMDGPU_TARGETS - TARGETS "gfx803;gfx900:xnack-;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack-;gfx90a:xnack+;gfx940;gfx941;gfx942;gfx1030;gfx1100;gfx1101;gfx1102" + TARGETS "gfx803;gfx900:xnack-;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack-;gfx90a:xnack+;gfx940;gfx941;gfx942;gfx1030;gfx1100;gfx1101;gfx1102;gfx1151" ) set(GPU_TARGETS "${DEFAULT_AMDGPU_TARGETS}" CACHE STRING "GPU architectures to compile for" FORCE) endif()