// MIT License // // Copyright (c) 2023-2025 Advanced Micro Devices, Inc. All rights reserved. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #include "lib/rocprofiler-sdk/counters/id_decode.hpp" #include #include #include "lib/common/static_object.hpp" #include "lib/common/utility.hpp" #include "lib/rocprofiler-sdk/aql/aql_profile_v2.h" namespace rocprofiler { namespace counters { const DimensionMap& dimension_map() { static auto*& _v = common::static_object::construct(DimensionMap{ {ROCPROFILER_DIMENSION_NONE, std::string_view("DIMENSION_NONE")}, {ROCPROFILER_DIMENSION_XCC, std::string_view("DIMENSION_XCC")}, {ROCPROFILER_DIMENSION_AID, std::string_view("DIMENSION_AID")}, {ROCPROFILER_DIMENSION_SHADER_ENGINE, std::string_view("DIMENSION_SHADER_ENGINE")}, {ROCPROFILER_DIMENSION_AGENT, std::string_view("DIMENSION_AGENT")}, {ROCPROFILER_DIMENSION_SHADER_ARRAY, std::string_view("DIMENSION_SHADER_ARRAY")}, {ROCPROFILER_DIMENSION_WGP, std::string_view("DIMENSION_WGP")}, {ROCPROFILER_DIMENSION_INSTANCE, std::string_view("DIMENSION_INSTANCE")}, }); return *_v; } const std::unordered_map& aqlprofile_id_to_rocprof_instance() { using dims_map_t = std::unordered_map; static auto*& aql_to_rocprof_dims = common::static_object::construct([]() -> dims_map_t { dims_map_t data; aqlprofile_iterate_event_ids( [](int id, const char* name, void* userdata) -> hsa_status_t { const std::unordered_map aql_string_to_dim = { {"XCD", ROCPROFILER_DIMENSION_XCC}, {"AID", ROCPROFILER_DIMENSION_AID}, {"SE", ROCPROFILER_DIMENSION_SHADER_ENGINE}, {"SA", ROCPROFILER_DIMENSION_SHADER_ARRAY}, {"WGP", ROCPROFILER_DIMENSION_WGP}, {"INSTANCE", ROCPROFILER_DIMENSION_INSTANCE}, }; if(const auto* inst_type = rocprofiler::common::get_val(aql_string_to_dim, name)) { // Supported instance type auto& map = *static_cast< std::unordered_map*>( userdata); map.emplace(id, *inst_type); } return HSA_STATUS_SUCCESS; }, static_cast(&data)); return data; }()); return *aql_to_rocprof_dims; } } // namespace counters } // namespace rocprofiler