From b61ab17c4fd192665be68aabafc0363abca7f203 Mon Sep 17 00:00:00 2001 From: Ammar ELWazir Date: Tue, 23 Sep 2025 09:26:05 -0500 Subject: [PATCH 1/3] Clean up Merge issues --- tests/bin/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/bin/CMakeLists.txt b/tests/bin/CMakeLists.txt index a56dfa01bf..9cd3b0ec00 100644 --- a/tests/bin/CMakeLists.txt +++ b/tests/bin/CMakeLists.txt @@ -39,5 +39,4 @@ if(rocJPEG_FOUND AND rocJPEG_VERSION VERSION_GREATER 0.6.0) endif() add_subdirectory(hsa-code-object) add_subdirectory(hip-streams) -add_subdirectory(hip-streams-per-thread) add_subdirectory(attachment-test) From 68542956fa09a85f55698f16f73d6a7745e6b488 Mon Sep 17 00:00:00 2001 From: Ammar ELWazir Date: Tue, 23 Sep 2025 09:26:50 -0500 Subject: [PATCH 2/3] Remove rocpd-kernel-rename subdirectory Removed rocpd-kernel-rename subdirectory from CMakeLists. --- tests/rocprofv3/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/rocprofv3/CMakeLists.txt b/tests/rocprofv3/CMakeLists.txt index 2174ed6d89..fb2f62f9d5 100644 --- a/tests/rocprofv3/CMakeLists.txt +++ b/tests/rocprofv3/CMakeLists.txt @@ -46,5 +46,4 @@ add_subdirectory(minimum-bytes) add_subdirectory(conversion-script) add_subdirectory(python-bindings) add_subdirectory(rocpd) -add_subdirectory(rocpd-kernel-rename) add_subdirectory(attachment) From b7c0e8e34c646656cfecb5ebc085ef9b0586971c Mon Sep 17 00:00:00 2001 From: itrowbri Date: Tue, 23 Sep 2025 15:32:24 +0000 Subject: [PATCH 3/3] Update enum_string.hpp to fix HIP_STEP error --- source/include/rocprofiler-sdk/cxx/enum_string.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/include/rocprofiler-sdk/cxx/enum_string.hpp b/source/include/rocprofiler-sdk/cxx/enum_string.hpp index 8cfc6f1fad..36989b6a85 100644 --- a/source/include/rocprofiler-sdk/cxx/enum_string.hpp +++ b/source/include/rocprofiler-sdk/cxx/enum_string.hpp @@ -980,6 +980,8 @@ static_assert(ROCPROFILER_HIP_RUNTIME_API_ID_LAST == 474); static_assert(ROCPROFILER_HIP_RUNTIME_API_ID_LAST == 476); #elif HIP_RUNTIME_API_TABLE_STEP_VERSION == 12 static_assert(ROCPROFILER_HIP_RUNTIME_API_ID_LAST == 477); +#elif HIP_RUNTIME_API_TABLE_STEP_VERSION == 13 +static_assert(ROCPROFILER_HIP_RUNTIME_API_ID_LAST == 477); #else # if !defined(ROCPROFILER_UNSAFE_NO_VERSION_CHECK) && \ (defined(ROCPROFILER_CI) && ROCPROFILER_CI > 0)