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>
130 linhas
5.0 KiB
C++
130 linhas
5.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.
|
|
|
|
#pragma once
|
|
|
|
#include "lib/rocprofiler-sdk/hsa/aql_packet.hpp"
|
|
|
|
#include <rocprofiler-sdk/fwd.h>
|
|
#include <rocprofiler-sdk/hsa.h>
|
|
#include <rocprofiler-sdk/rocprofiler.h>
|
|
#include <cstddef>
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace context
|
|
{
|
|
struct context;
|
|
}
|
|
|
|
namespace counters
|
|
{
|
|
struct profile_config;
|
|
|
|
struct agent_callback_data
|
|
{
|
|
uint64_t context_idx = 0;
|
|
hsa_queue_t* queue = nullptr;
|
|
std::unique_ptr<hsa::CounterAQLPacket> packet = {};
|
|
|
|
// Tri-state signal used to know what the current state of processing
|
|
// a sample is. The states are:
|
|
// 1: allow next sample to start (i.e. no in progress work)
|
|
// 0: sample in progress
|
|
// -1: sample complete (i.e. signal for caller that sample is ready)
|
|
hsa_signal_t completion = {.handle = 0};
|
|
hsa_signal_t start_signal = {.handle = 0};
|
|
rocprofiler_user_data_t user_data = {.value = 0};
|
|
rocprofiler_user_data_t callback_data = {.value = 0};
|
|
|
|
std::shared_ptr<rocprofiler::counters::profile_config> profile = {};
|
|
rocprofiler_agent_id_t agent_id = {.handle = 0};
|
|
rocprofiler_device_counting_service_callback_t cb = nullptr;
|
|
rocprofiler_buffer_id_t buffer = {.handle = 0};
|
|
bool set_profile = false;
|
|
std::vector<rocprofiler_record_counter_t>* cached_counters = nullptr;
|
|
|
|
agent_callback_data() = default;
|
|
agent_callback_data(agent_callback_data&& rhs) noexcept
|
|
: queue(rhs.queue)
|
|
, packet(std::move(rhs.packet))
|
|
, completion(rhs.completion)
|
|
, start_signal(rhs.start_signal)
|
|
, user_data(rhs.user_data)
|
|
, callback_data(rhs.callback_data)
|
|
, profile(rhs.profile)
|
|
, agent_id(rhs.agent_id)
|
|
, cb(rhs.cb)
|
|
, buffer(rhs.buffer)
|
|
{
|
|
rhs.completion.handle = 0;
|
|
rhs.start_signal.handle = 0;
|
|
}
|
|
|
|
agent_callback_data& operator=(const agent_callback_data&) = delete;
|
|
agent_callback_data(const agent_callback_data&) = delete;
|
|
|
|
~agent_callback_data();
|
|
};
|
|
|
|
// Stop all contexts and prevent any further requests to start/stop/read.
|
|
// Waits until any current operation is complete before exiting.
|
|
rocprofiler_status_t
|
|
device_counting_service_finalize();
|
|
|
|
// If we have contexts that are started before HSA init. This
|
|
// function will start those contexts. Should only be called
|
|
// as part of the HSA init process in rocprofiler.
|
|
rocprofiler_status_t
|
|
device_counting_service_hsa_registration();
|
|
|
|
// Send the AQL start packet to a queue on the agent to start
|
|
// collecting counter data. This function is synchronous and will
|
|
// return when the agent has started collecting data (or if there
|
|
// is an error).
|
|
rocprofiler_status_t
|
|
start_agent_ctx(const context::context* ctx);
|
|
|
|
// Send the AQL end packet to a queue on the agent to stop
|
|
// collecting counter data. This function is synchronous and will
|
|
// return when the agent has stopped collecting data (or if there
|
|
// is an error).
|
|
rocprofiler_status_t
|
|
stop_agent_ctx(const context::context* ctx);
|
|
|
|
// Read the counter data from the agent. This function is synchronous
|
|
// if flags is not set to ASYNC. If ASYNC is set, the function will
|
|
// return before data has been written to the buffer. Overlapping
|
|
// read calls are not allowed in ASYNC mode and will result in
|
|
// this call waiting for the previous sample to complete.
|
|
rocprofiler_status_t
|
|
read_agent_ctx(const context::context* ctx,
|
|
rocprofiler_user_data_t user_data,
|
|
rocprofiler_counter_flag_t flags,
|
|
std::vector<rocprofiler_record_counter_t>* out_counters);
|
|
|
|
uint64_t
|
|
submitPacket(hsa_queue_t* queue, const void* packet);
|
|
|
|
} // namespace counters
|
|
} // namespace rocprofiler
|