From 9764f96427876b73c419ffbf82b7bc26100d4c26 Mon Sep 17 00:00:00 2001 From: "Bhardwaj, Gopesh" Date: Tue, 18 Mar 2025 01:51:12 +0530 Subject: [PATCH] removing gfx940 and gfx941 targets (#286) * removing gfx940 and gfx941 targets * updated changelog [ROCm/rocprofiler-sdk commit: f5c9663c515ee21fc886748f49070294afba3af6] --- projects/rocprofiler-sdk/CHANGELOG.md | 14 ++------------ .../samples/openmp_target/CMakeLists.txt | 2 -- projects/rocprofiler-sdk/source/scripts/run-ci.py | 2 +- .../rocprofiler-sdk/tests/common/CMakeLists.txt | 2 -- 4 files changed, 3 insertions(+), 17 deletions(-) diff --git a/projects/rocprofiler-sdk/CHANGELOG.md b/projects/rocprofiler-sdk/CHANGELOG.md index 21547848f2..c78e92f87a 100644 --- a/projects/rocprofiler-sdk/CHANGELOG.md +++ b/projects/rocprofiler-sdk/CHANGELOG.md @@ -170,6 +170,7 @@ Full documentation for ROCprofiler-SDK is available at [rocm.docs.amd.com/projec - Added support for rocJPEG API Tracing - Added MI350X/MI355X support - Added rocprofiler_create_counter to allow for adding custom derived counters at runtime. +- Added support for iteration based counter multiplexing to rocprofv3 (see documentation) ### Changed @@ -182,15 +183,4 @@ Full documentation for ROCprofiler-SDK is available at [rocm.docs.amd.com/projec ### Removed -## ROCprofiler-SDK 0.7.0 for ROCm release 6.5 - -### Added - -- Added support for rocJPEG API Tracing. -- Added support for iteration based counter multiplexing to rocprofv3 (see documentation) - -### Changed - -### Resolved issues - -### Removed +- Support of gfx940 and gfx941 targets from compilation diff --git a/projects/rocprofiler-sdk/samples/openmp_target/CMakeLists.txt b/projects/rocprofiler-sdk/samples/openmp_target/CMakeLists.txt index ba91806c2b..dd07d730b3 100644 --- a/projects/rocprofiler-sdk/samples/openmp_target/CMakeLists.txt +++ b/projects/rocprofiler-sdk/samples/openmp_target/CMakeLists.txt @@ -34,8 +34,6 @@ set(DEFAULT_GPU_TARGETS "gfx906" "gfx908" "gfx90a" - "gfx940" - "gfx941" "gfx942" "gfx1100" "gfx1101" diff --git a/projects/rocprofiler-sdk/source/scripts/run-ci.py b/projects/rocprofiler-sdk/source/scripts/run-ci.py index 3d357c1531..77127a39a4 100755 --- a/projects/rocprofiler-sdk/source/scripts/run-ci.py +++ b/projects/rocprofiler-sdk/source/scripts/run-ci.py @@ -28,7 +28,7 @@ _DEFAULT_INSTALL_PREFIX = ( ) _DEFAULT_GPU_TARGETS = os.environ.get( "GPU_TARGETS", - "gfx900 gfx906 gfx908 gfx90a gfx940 gfx941 gfx942 gfx1030 gfx1100 gfx1101 gfx1102", + "gfx900 gfx906 gfx908 gfx90a gfx942 gfx1030 gfx1100 gfx1101 gfx1102", ).split() diff --git a/projects/rocprofiler-sdk/tests/common/CMakeLists.txt b/projects/rocprofiler-sdk/tests/common/CMakeLists.txt index bd2acb4115..137d9dcfa8 100644 --- a/projects/rocprofiler-sdk/tests/common/CMakeLists.txt +++ b/projects/rocprofiler-sdk/tests/common/CMakeLists.txt @@ -17,8 +17,6 @@ set(DEFAULT_GPU_TARGETS "gfx906" "gfx908" "gfx90a" - "gfx940" - "gfx941" "gfx942" "gfx1030" "gfx1010"