97b7a6315d
* Update LICENSE * Update conf.py * Update copyright year * [fix] Update copyright year * Update copyright year "ROCm Developer Tools" * Add license headers to c++ files * Add license to *.py * Update licenses in rocdecode sources --------- Co-authored-by: srawat <120587655+SwRaw@users.noreply.github.com> Co-authored-by: Mythreya <mythreya.kuricheti@amd.com> Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
94 行
4.0 KiB
C++
94 行
4.0 KiB
C++
// 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 <hsa/hsa_ven_amd_aqlprofile.h>
|
|
#include <unordered_map>
|
|
|
|
#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<DimensionMap>::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<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},
|
|
{"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<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;
|
|
}
|
|
|
|
} // namespace counters
|
|
} // namespace rocprofiler
|