010693b795
* Migrate XML counter defs and reader from v1/v2 * Current Working Set * Modified parser * Evaluate AST Start * Update lib/common/xml - move definitions out of class declaration * Update lib/rocprofiler/counters/parser - update build of bison and flex build - reproducible generation - add ROCPROFILER_REGENERATE_COUNTERS_PARSER option - fix namespacing * Update lib/rocprofiler/counters/xml - change location of XML files and install them * Update lib/rocprofiler/counter/tests - normalize the test names - improve test failures (more clear about where failure is) * Update lib/rocprofiler/counters - fix namespace - update to new XML metrics directory * Update lib/rocprofiler/CMakeLists.txt - link to object library * Update lib/rocprofiler/hsa/types.hpp - reorganize includes * Add metric loading class/printers * Agent Implementation * Queue Implementation (#79) * Queue Implementation * API Implementation For Counters (part 1) (#80) * API Implementation For Counters * Bewelton/counter collection 3 (#84) * Added counter sample * More changes * More changes * Update samples/counter_collection - mostly formatting * Update include/rocprofiler/counters.h - formatting * Add lib.common/synchronized.hpp - Synchronized struct * Update lib/rocprofiler/counters/xml/basic_counters.xml - whitespace * Update scripts/patch-parser.cmake - tweaks for consistency * Update lib/rocprofiler/counters/parser/tests/parser_tests.cpp - formatting * Update lib/rocprofiler/counters/parser - improve consistency in rocprofiler-expr-parser-patch - update parser.{h,cpp} and scanner.cpp - formatting + regenerated * Update lib/rocprofiler/aql - formatting - clang-tidy fixes - guard against memory pool access errors * Update lib/rocprofiler/aql/tests - formatting - update use of get_val - normalize test names * Update lib/rocprofiler/counters/tests - formatting - patch basic_counters and derived_counters - normalize test names * Update lib/rocprofiler/aql/tests - set_tests_properties * Update test labels - fix minor issue with gtest labels * Update lib/rocprofiler/counters - formatting - clang-tidy fixes * Update lib/rocprofiler/hsa - fix includes - formatting - clang-tidy fixes - tweak to queue_controller_init interface * Update lib/rocprofiler - include fixes - namespace fixes - clang-tidy fixes - formatting * Update scripts/run-ci.py - exclude counters/parser from code coverage (generated files) * Update include/rocprofiler/counters.h - fix doxygen comment * Update lib/rocprofiler/aql/packet_construct.cpp - guard against HSA_AMD_MEMORY_POOL_ACCESS_DISALLOWED_BY_DEFAULT and HSA_AMD_MEMORY_POOL_ACCESS_NEVER_ALLOWED * Update lib/rocprofiler/counters/parser/raw_ast.hpp - clang-tidy fixes * Update lib/rocprofiler/counters/evaluate_ast.hpp - clang-tidy fixes * Update lib/rocprofiler/aql/tests - disable packet_generation_single and packet_generation_multi tests - the entire implementation rocprofiler::get_ext_table() is incorrect * Minor fixes before cleanup * More changes * More fixes * More fixes * source formatting (clang-format v11) (#99) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Revert PTL submodule * Update scripts/run-ci.py - exclude counters/parser from code coverage (generated files) * Migrating counters state to context * Linting * source formatting (clang-format v11) (#101) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * revert run-ci * Testing fixes * More test changes * Fix minor typo * Small queue change * Small queue change * source formatting (clang-format v11) (#102) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * source formatting (clang-format v11) (#105) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Documentation Change * More documentation fixes * source formatting (clang-format v11) (#106) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Threading fixes * Threading fixes * source formatting (clang-format v11) (#107) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Threading fixes * More test fixes * More agent fixes * More build fixes * source formatting (clang-format v11) (#109) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * changed test timeouts * Build fix * Build fix * Updates to agent * source formatting (clang-format v11) (#114) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * cmake formatting (cmake-format) (#113) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * remove git worktree folder * Doc update * testing fix * Another test fix * More test changes * Rebase * source formatting (clang-format v11) (#116) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Documentation * source formatting (clang-format v11) (#119) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * PTL Changes * Minor agent fix for empty labels * source formatting (clang-format v11) (#120) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Minor agent fix for empty labels * Refactor read_map * source formatting (clang-format v11) (#121) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Refactor read_map * Cache fixes * source formatting (clang-format v11) (#122) Co-authored-by: bwelton <bwelton@users.noreply.github.com> --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: bwelton <bwelton@users.noreply.github.com>
238 lines
8.3 KiB
C++
238 lines
8.3 KiB
C++
/* Copyright (c) 2022 Advanced Micro Devices, Inc.
|
|
|
|
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 <atomic>
|
|
#include <functional>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#include <hsa/amd_hsa_kernel_code.h>
|
|
#include <hsa/hsa.h>
|
|
#include <hsa/hsa_api_trace.h>
|
|
#include <hsa/hsa_ext_amd.h>
|
|
#include <hsa/hsa_ven_amd_aqlprofile.h>
|
|
#include <hsa/hsa_ven_amd_loader.h>
|
|
|
|
#include <rocprofiler/fwd.h>
|
|
#include "lib/common/synchronized.hpp"
|
|
#include "lib/rocprofiler/hsa/agent_cache.hpp"
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace hsa
|
|
{
|
|
/**
|
|
* Struct containing AQL packet information. Including start/stop/read
|
|
* packets along with allocated buffers
|
|
*/
|
|
struct AQLPacket
|
|
{
|
|
hsa_ven_amd_aqlprofile_profile_t profile;
|
|
hsa_ext_amd_aql_pm4_packet_t start{.header = 0,
|
|
.pm4_command = {0},
|
|
.completion_signal = {.handle = 0}};
|
|
hsa_ext_amd_aql_pm4_packet_t stop{.header = 0,
|
|
.pm4_command = {0},
|
|
.completion_signal = {.handle = 0}};
|
|
hsa_ext_amd_aql_pm4_packet_t read{.header = 0,
|
|
.pm4_command = {0},
|
|
.completion_signal = {.handle = 0}};
|
|
bool command_buf_mallocd{false};
|
|
bool output_buffer_malloced{false};
|
|
std::function<decltype(hsa_amd_memory_pool_free)> free_func;
|
|
AQLPacket(std::function<decltype(hsa_amd_memory_pool_free)> func)
|
|
: free_func(std::move(func))
|
|
{}
|
|
|
|
~AQLPacket()
|
|
{
|
|
if(!command_buf_mallocd)
|
|
{
|
|
free_func(profile.command_buffer.ptr);
|
|
}
|
|
else
|
|
{
|
|
free(profile.command_buffer.ptr);
|
|
}
|
|
|
|
if(!output_buffer_malloced)
|
|
{
|
|
free_func(profile.output_buffer.ptr);
|
|
}
|
|
else
|
|
{
|
|
free(profile.output_buffer.ptr);
|
|
}
|
|
}
|
|
|
|
// Keep move constuctors (i.e. std::move())
|
|
AQLPacket(AQLPacket&& other) = default;
|
|
AQLPacket& operator=(AQLPacket&& other) = default;
|
|
|
|
// Do not allow copying this class
|
|
AQLPacket(const AQLPacket&) = delete;
|
|
AQLPacket& operator=(const AQLPacket&) = delete;
|
|
};
|
|
|
|
using ClientID = int64_t;
|
|
|
|
// Interceptor for a single specific queue
|
|
class Queue
|
|
{
|
|
public:
|
|
// Internal session information that is used by write interceptor
|
|
// to track state of the intercepted kernel.
|
|
struct queue_info_session_t
|
|
{
|
|
Queue& queue;
|
|
std::unique_ptr<AQLPacket> inst_pkt;
|
|
ClientID inst_pkt_id;
|
|
hsa_ext_amd_aql_pm4_packet_t kernel_pkt;
|
|
hsa_signal_t interrupt_signal;
|
|
};
|
|
|
|
Queue(const AgentCache& agent,
|
|
uint32_t size,
|
|
hsa_queue_type32_t type,
|
|
void (*callback)(hsa_status_t status, hsa_queue_t* source, void* data),
|
|
void* data,
|
|
uint32_t private_segment_size,
|
|
uint32_t group_segment_size,
|
|
CoreApiTable core_api,
|
|
AmdExtTable ext_api,
|
|
hsa_queue_t** queue);
|
|
|
|
const hsa_queue_t* intercept_queue() const { return _intercept_queue; };
|
|
const AgentCache& get_agent() const { return _agent; }
|
|
|
|
void create_signal(uint32_t attribute, hsa_signal_t* signal) const;
|
|
void signal_async_handler(const hsa_signal_t& signal, Queue::queue_info_session_t* data) const;
|
|
|
|
rocprofiler_queue_id_t get_id() const
|
|
{
|
|
return {.handle = reinterpret_cast<uint64_t>(intercept_queue())};
|
|
};
|
|
|
|
template <class Func>
|
|
void signal_callback(Func&& func) const
|
|
{
|
|
_callbacks.rlock([&func](const auto& data) { func(data); });
|
|
}
|
|
|
|
// Fast check to see if we have any callbacks we need to notify
|
|
int get_notifiers() const { return _notifiers; }
|
|
|
|
// Tracks the number of in flight kernel executions we
|
|
// are waiting on. We cannot destroy Queue until all kernels
|
|
// have comleted.
|
|
void async_started() { _active_async_packets++; }
|
|
void async_complete() { _active_async_packets--; }
|
|
|
|
~Queue()
|
|
{
|
|
// Potentially replace with condition variable at some point
|
|
// but performance may not matter here.
|
|
while(_active_async_packets > 0)
|
|
{}
|
|
}
|
|
|
|
// Function prototype used to notify consumers that a kernel has been
|
|
// enqueued. An AQL packet can be returned that will be injected into
|
|
// the queue.
|
|
using QueueCB = std::function<
|
|
std::unique_ptr<AQLPacket>(const Queue&, ClientID, const hsa_ext_amd_aql_pm4_packet_t&)>;
|
|
// Signals the completion of the kernel packet.
|
|
using CompletedCB = std::function<void(const Queue&,
|
|
ClientID,
|
|
const hsa_ext_amd_aql_pm4_packet_t&,
|
|
std::unique_ptr<AQLPacket>)>;
|
|
|
|
void register_callback(ClientID id, QueueCB enqueue_cb, CompletedCB complete_cb);
|
|
void remove_callback(ClientID id);
|
|
|
|
const CoreApiTable& core_api() const { return _core_api; }
|
|
const AmdExtTable& ext_api() const { return _ext_api; }
|
|
|
|
private:
|
|
std::atomic<int64_t> _active_async_packets{0};
|
|
CoreApiTable _core_api;
|
|
AmdExtTable _ext_api;
|
|
const AgentCache& _agent;
|
|
std::atomic<int> _notifiers;
|
|
rocprofiler::common::Synchronized<std::unordered_map<ClientID, std::pair<QueueCB, CompletedCB>>>
|
|
_callbacks;
|
|
hsa_queue_t* _intercept_queue;
|
|
};
|
|
|
|
// Tracks and manages HSA queues
|
|
class QueueController
|
|
{
|
|
public:
|
|
QueueController() = default;
|
|
// Initializes the QueueInterceptor. This must be delayed until
|
|
// HSA has been inited.
|
|
void Init(CoreApiTable& core_table, AmdExtTable& ext_table);
|
|
// Called to add a queue that was created by the user program
|
|
void add_queue(hsa_queue_t*, std::unique_ptr<Queue>);
|
|
void destory_queue(hsa_queue_t*);
|
|
|
|
// Add callback to queues associated with the agent. Returns a client
|
|
// id that can be used by callers to remove the callback.
|
|
ClientID add_callback(const rocprofiler_agent_t&, Queue::QueueCB, Queue::CompletedCB);
|
|
void remove_callback(ClientID);
|
|
|
|
const CoreApiTable& get_core_table() const { return _core_table; }
|
|
const AmdExtTable& get_ext_table() const { return _ext_table; }
|
|
|
|
// Gets the list of supported HSA agents that can be intercepted
|
|
const std::unordered_map<uint32_t, AgentCache>& get_supported_agents() const
|
|
{
|
|
return _supported_agents;
|
|
}
|
|
|
|
std::unordered_map<uint32_t, AgentCache>& get_supported_agents() { return _supported_agents; }
|
|
|
|
private:
|
|
CoreApiTable _core_table;
|
|
AmdExtTable _ext_table;
|
|
rocprofiler::common::Synchronized<std::unordered_map<hsa_queue_t*, std::unique_ptr<Queue>>>
|
|
_queues;
|
|
rocprofiler::common::Synchronized<
|
|
std::unordered_map<ClientID,
|
|
std::tuple<rocprofiler_agent_t, Queue::QueueCB, Queue::CompletedCB>>>
|
|
_callback_cache;
|
|
|
|
std::unordered_map<uint32_t, AgentCache> _supported_agents;
|
|
};
|
|
|
|
QueueController&
|
|
get_queue_controller();
|
|
|
|
void
|
|
queue_controller_init(HsaApiTable* table);
|
|
|
|
} // namespace hsa
|
|
} // namespace rocprofiler
|