파일
rocm-systems/source/lib/rocprofiler-sdk/counters/id_decode.cpp
T

94 라인
4.0 KiB
C++
Raw 일반 보기 히스토리

2023-11-14 10:58:33 -06:00
// MIT License
//
2025-01-23 06:41:20 +05:30
// Copyright (c) 2023-2025 Advanced Micro Devices, Inc. All rights reserved.
2023-11-14 10:58:33 -06:00
//
// 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"
2023-11-03 23:10:40 -05:00
2024-02-07 20:03:21 -08:00
#include <hsa/hsa_ven_amd_aqlprofile.h>
2023-11-03 23:10:40 -05:00
#include <unordered_map>
2024-02-07 20:03:21 -08:00
#include "lib/common/static_object.hpp"
2023-11-03 23:10:40 -05:00
#include "lib/common/utility.hpp"
2024-02-07 20:03:21 -08:00
#include "lib/rocprofiler-sdk/aql/aql_profile_v2.h"
2023-11-03 23:10:40 -05:00
namespace rocprofiler
{
namespace counters
{
2024-03-13 07:28:33 -07:00
const DimensionMap&
2023-11-03 23:10:40 -05:00
dimension_map()
{
2024-03-13 07:28:33 -07:00
static auto*& _v = common::static_object<DimensionMap>::construct(DimensionMap{
2024-02-07 20:03:21 -08:00
{ROCPROFILER_DIMENSION_NONE, std::string_view("DIMENSION_NONE")},
{ROCPROFILER_DIMENSION_XCC, std::string_view("DIMENSION_XCC")},
2024-05-29 15:09:56 -05:00
{ROCPROFILER_DIMENSION_AID, std::string_view("DIMENSION_AID")},
2024-02-07 20:03:21 -08:00
{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")},
2024-02-07 20:03:21 -08:00
{ROCPROFILER_DIMENSION_INSTANCE, std::string_view("DIMENSION_INSTANCE")},
2024-03-13 07:28:33 -07:00
});
return *_v;
2023-11-03 23:10:40 -05:00
}
2024-02-07 20:03:21 -08:00
const std::unordered_map<int, rocprofiler_profile_counter_instance_types>&
aqlprofile_id_to_rocprof_instance()
{
using dims_map_t = std::unordered_map<int, rocprofiler_profile_counter_instance_types>;
static auto*& aql_to_rocprof_dims =
common::static_object<dims_map_t>::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<std::string_view,
rocprofiler_profile_counter_instance_types>
aql_string_to_dim = {
{"XCD", ROCPROFILER_DIMENSION_XCC},
2024-05-29 15:09:56 -05:00
{"AID", ROCPROFILER_DIMENSION_AID},
2024-02-07 20:03:21 -08:00
{"SE", ROCPROFILER_DIMENSION_SHADER_ENGINE},
{"SA", ROCPROFILER_DIMENSION_SHADER_ARRAY},
{"WGP", ROCPROFILER_DIMENSION_WGP},
2024-02-07 20:03:21 -08:00
{"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<int, rocprofiler_profile_counter_instance_types>*>(
userdata);
map.emplace(id, *inst_type);
}
return HSA_STATUS_SUCCESS;
},
static_cast<void*>(&data));
return data;
}());
return *aql_to_rocprof_dims;
}
2023-11-03 23:10:40 -05:00
} // namespace counters
2023-11-14 10:58:33 -06:00
} // namespace rocprofiler