Files
rocm-systems/source/lib/rocprofiler-sdk/counters/metrics.hpp
T
Rawat, Swati 97b7a6315d update copyright date to 2025 (#102)
* 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>
2025-01-22 19:11:20 -06:00

199 wiersze
5.6 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.
#pragma once
#include <cstdint>
#include <string>
#include <unordered_map>
#include <vector>
#include "rocprofiler-sdk/fwd.h"
#include <fmt/core.h>
#include <fmt/ranges.h>
#include <hsa/hsa_ven_amd_aqlprofile.h>
namespace rocprofiler
{
namespace counters
{
// Base metrics (w/o instance information) defined in gfx_metrics/derived.xml
class Metric
{
public:
Metric() = default;
Metric(const std::string&, // Get rid of this...
std::string name,
std::string block,
std::string event,
std::string dsc,
std::string expr,
std::string special,
uint64_t id)
: name_(std::move(name))
, block_(std::move(block))
, event_(std::move(event))
, description_(std::move(dsc))
, expression_(std::move(expr))
, special_(std::move(special))
, id_(id)
{}
const std::string& name() const { return name_; }
const std::string& block() const { return block_; }
const std::string& event() const { return event_; }
const std::string& description() const { return description_; }
const std::string& expression() const { return expression_; }
const std::string& special() const { return special_; }
uint64_t id() const { return id_; }
uint32_t flags() const { return flags_; }
bool empty() const { return empty_; }
void setflags(uint32_t flags) { this->flags_ = flags; }
friend bool operator<(Metric const& lhs, Metric const& rhs);
friend bool operator==(Metric const& lhs, Metric const& rhs);
private:
std::string name_ = {};
std::string block_ = {};
std::string event_ = {};
std::string description_ = {};
std::string expression_ = {};
std::string special_ = {};
int64_t id_ = -1;
bool empty_ = false;
uint32_t flags_ = 0;
};
struct CustomCounterDefinition
{
std::string data = {};
bool append = {false};
bool loaded = {false};
};
using MetricMap = std::unordered_map<std::string, std::vector<Metric>>;
using MetricIdMap = std::unordered_map<uint64_t, Metric>;
/**
* Get base hardware counters for all GFXs Map<GFX Name, Counters>
*/
MetricMap
getBaseHardwareMetrics();
/**
* Get derived hardware metrics for all GFXs Map<GFX Name, Counters>
*/
MetricMap
getDerivedHardwareMetrics();
/**
* Combined map containing both base and derived counters
*/
const MetricMap*
getMetricMap();
/**
* Get the metrics that apply to a specific agent. Supplied parameter
* is the GFXIP of the agent.
*/
std::vector<Metric>
getMetricsForAgent(const std::string&);
/**
* Get a map of metric::id() -> metric
*/
const MetricIdMap*
getMetricIdMap();
/**
* Get the metric event ids for perfcounters options in thread trace
* applicable only for GFX9 agents and SQ block counters
*/
std::unordered_map<uint64_t, int>
getPerfCountersIdMap();
/**
* Checks if a metric is valid for a given agent
**/
bool
checkValidMetric(const std::string& agent, const Metric& metric);
/**
* Set a custom counter definition
*/
rocprofiler_status_t
setCustomCounterDefinition(const CustomCounterDefinition& def);
} // namespace counters
} // namespace rocprofiler
namespace fmt
{
// fmt::format support for metric
template <>
struct formatter<rocprofiler::counters::Metric>
{
template <typename ParseContext>
constexpr auto parse(ParseContext& ctx)
{
return ctx.begin();
}
template <typename Ctx>
auto format(rocprofiler::counters::Metric const& metric, Ctx& ctx) const
{
return fmt::format_to(
ctx.out(),
"Metric: {} [Block: {}, Event: {}, Expression: {}, Description: {}, id: {}]",
metric.name(),
metric.block(),
metric.event(),
metric.expression().empty() ? "<None>" : metric.expression(),
metric.description(),
metric.id());
}
};
// fmt::format support for MetricMap
template <>
struct formatter<rocprofiler::counters::MetricMap>
{
template <typename ParseContext>
constexpr auto parse(ParseContext& ctx)
{
return ctx.begin();
}
template <typename Ctx>
auto format(rocprofiler::counters::MetricMap const& map, Ctx& ctx) const
{
std::string out;
for(const auto& [gfxName, counters] : map)
{
out += fmt::format("Counters for {}\n\t{}\n", gfxName, fmt::join(counters, "\n\t"));
}
return fmt::format_to(ctx.out(), "{}", out);
}
};
} // namespace fmt