Files
rocm-systems/source/lib/rocprofiler-sdk/counters/metrics.hpp
T
Jonathan R. Madsen a1267e1fd2 C compatibility for public headers (#566)
* C compatibility for public headers

- add tests/tools/c-tool.c
  - builds a tool (which does nothing) with C language
  - ensures that tool can be compiled in C
- add tests/c-tool/CMakeLists.txt
  - ensures that tool library build from C is a valid tool
- rocprofiler_counter_info_v0_t is_derived is int instead of bool
  - C does not have bool unless <stdbool.h> is included
- add `include/rocprofiler-sdk/hsa/api_trace_version.h
  - handles providing HSA_*_TABLE_(MAJOR|STEP)_VERSION values if compiled from C
- cmake define in version.h.in for ROCPROFILER_HSA_*_TABLE_(MAJOR|STEP)_VERSION
  - HSA table versions compiled with
- use rocprofiler_(hsa|hip|marker)_api_no_args struct to handle incompatibility b/t empty structs in C vs. C++ (size of 0 vs. size of 1)
- extern "C" in include/rocprofiler-sdk/{hsa,hip,marker}/api_args.h
- fixed spelling error: derrived -> derived
- scope YY_NO_INPUT compile definition to lib/rocprofiler-sdk/counters/parser/*

* Revert CDash dashboard
2024-02-29 23:49:54 -06:00

176 строки
5.0 KiB
C++

// MIT License
//
// Copyright (c) 2023 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 <iostream>
#include <string>
#include <unordered_map>
#include <vector>
#include <hsa/hsa_ven_amd_aqlprofile.h>
#include "fmt/core.h"
#include "fmt/ranges.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_; }
bool empty() const { return empty_; }
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;
};
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();
/**
* Checks if a metric is valid for a given agent
**/
bool
checkValidMetric(const std::string& agent, const Metric& metric);
} // 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