4cd121e27b
* Make sure all structs/enums can be forward declared
* Updates to counter collection
- consistency updates and cleanup
* Conversion of dimension information to info struct
* Added deprecated folder
* Testing changes
* merge changes
* Fix shadowed variable
* Source code formatting
* Fix shadowed variable
* Update rocprofiler_counter_info_v1_t member names
* Split version.h into version.h and ext_version.h
- ext_version.h contains external version info, e.g. ROCPROFILER_HSA_API_TABLE_MAJOR_VERSION, ROCPROFILER_HSA_RUNTIME_VERSION
- this reduces amount of recompilation after a commit since version.h gets updated with the git revision
* profile_config -> counter_config
* EOF new line
* [Samples] Reduce header includes + reorg counter collection samples
* Misc compilation fixes
- shadowed variables
- use of [[deprecated("...")]] in C code
- unused variables
* Minor misc modifications
- use common:: instead of rocprofiler::common:: when inside rocprofiler namespace
- counters.cpp
- move local anon namespace functions into rocprofiler::counters:: anon namespace
- use std::string_view for get_static_string
- const ref for get_static_ptr
- misc namespace shortening
* [Public API] rocprofiler_get_version_triplet + rocprofiler_version_triplet_t
- struct rocprofiler_version_triplet_t containing fields for the major, minor, and patch version
- public API function: rocprofiler_get_version_triplet
- define C++ operators for rocprofiler_version_triplet_t
- C++ function compute_version_triplet
* [Tests] Improve async-copy-testing test
- relax constraints
- improve logging
* Update counter_config.h doxygen docs
* ROCPROFILER_SDK_BETA_COMPAT
- ppdef which helps with renaming when set to 1
* Remove spurious include
* Fix includes for cxx/version.hpp
* Doxygen fixes for rocprofiler_get_version and rocprofiler_get_version_triplet
* Public API Experimental Designation
- ROCPROFILER_SDK_EXPERIMENTAL added to experimental function
- "(experimental)" added to doxygen @brief entries
* Fix use of assert instead of static_assert in hip/stream.cpp
* Use typedef instead of define for rocprofiler_profile_config_id_t
* Use inline rocprofiler_{create,destroy}_profile_config instead of ppdef
- added <rocprofiler-sdk/deprecated/profile_config.h>
* Doxygen for rocprofiler_{create,destroy}_profile_config
* ROCPROFILER_SDK_DEPRECATED_WARNINGS
* Temporarily comment out ROCPROFILER_SDK_DEPRECATED_WARNINGS=1
* cmake formatting
* Misc variable renaming in samples and tests
* Fix declarations of types
* Fix hip stream tracing service struct name
- rocprofiler_callback_tracing_stream_handle_data_t renamed to rocprofiler_callback_tracing_hip_stream_api_data_t
* Rename "HIP_STREAM_API" to "HIP_STREAM"
---------
Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com>
Co-authored-by: Benjamin Welton <bewelton@amd.com>
257 lines
10 KiB
C++
257 lines
10 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/core.hpp"
|
|
|
|
#include "lib/common/container/small_vector.hpp"
|
|
#include "lib/common/synchronized.hpp"
|
|
#include "lib/common/utility.hpp"
|
|
#include "lib/rocprofiler-sdk/aql/packet_construct.hpp"
|
|
#include "lib/rocprofiler-sdk/context/context.hpp"
|
|
#include "lib/rocprofiler-sdk/counters/dispatch_handlers.hpp"
|
|
#include "lib/rocprofiler-sdk/counters/sample_processing.hpp"
|
|
#include "lib/rocprofiler-sdk/hsa/queue_controller.hpp"
|
|
#include "lib/rocprofiler-sdk/kernel_dispatch/profiling_time.hpp"
|
|
|
|
#include <rocprofiler-sdk/fwd.h>
|
|
#include <rocprofiler-sdk/rocprofiler.h>
|
|
|
|
namespace rocprofiler
|
|
{
|
|
namespace counters
|
|
{
|
|
rocprofiler_status_t
|
|
counter_callback_info::setup_counter_config(std::shared_ptr<counter_config>& profile)
|
|
{
|
|
if(profile->pkt_generator || !profile->reqired_hw_counters.empty())
|
|
{
|
|
return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
|
|
// Sets up the packet generator for the profile. This must be delayed until after HSA is loaded.
|
|
// This call needs to be thread protected in that only one thread must be setting up profile at
|
|
// the same time.
|
|
|
|
auto& config = *profile;
|
|
auto agent_name = std::string(config.agent->name);
|
|
for(const auto& metric : config.metrics)
|
|
{
|
|
const auto asts = get_ast_map();
|
|
auto req_counters =
|
|
get_required_hardware_counters(asts->arch_to_counter_asts, agent_name, metric);
|
|
|
|
if(!req_counters)
|
|
{
|
|
ROCP_ERROR << fmt::format("Could not find counter {}", metric.name());
|
|
return ROCPROFILER_STATUS_ERROR_PROFILE_COUNTER_NOT_FOUND;
|
|
}
|
|
|
|
// Special metrics are those that are not hw counters but other
|
|
// constants like MAX_WAVE_SIZE
|
|
for(const auto& req_metric : *req_counters)
|
|
{
|
|
if(req_metric.constant().empty())
|
|
{
|
|
config.reqired_hw_counters.insert(req_metric);
|
|
}
|
|
else
|
|
{
|
|
config.required_special_counters.insert(req_metric);
|
|
}
|
|
}
|
|
|
|
const auto* agent_map =
|
|
rocprofiler::common::get_val(asts->arch_to_counter_asts, agent_name);
|
|
if(!agent_map)
|
|
{
|
|
ROCP_ERROR << fmt::format("Coult not build AST for {}", agent_name);
|
|
return ROCPROFILER_STATUS_ERROR_AST_GENERATION_FAILED;
|
|
}
|
|
|
|
const auto* counter_ast = rocprofiler::common::get_val(*agent_map, metric.name());
|
|
if(!counter_ast)
|
|
{
|
|
ROCP_ERROR << fmt::format("Coult not find AST for {}", metric.name());
|
|
return ROCPROFILER_STATUS_ERROR_AST_NOT_FOUND;
|
|
}
|
|
config.asts.push_back(*counter_ast);
|
|
|
|
try
|
|
{
|
|
config.asts.back().set_dimensions();
|
|
} catch(std::runtime_error& e)
|
|
{
|
|
ROCP_ERROR << metric.name() << " has improper dimensions"
|
|
<< " " << e.what();
|
|
return ROCPROFILER_STATUS_ERROR_AST_NOT_FOUND;
|
|
}
|
|
}
|
|
|
|
profile->pkt_generator = std::make_unique<rocprofiler::aql::CounterPacketConstruct>(
|
|
config.agent->id,
|
|
std::vector<counters::Metric>{profile->reqired_hw_counters.begin(),
|
|
profile->reqired_hw_counters.end()});
|
|
return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
counter_callback_info::get_packet(std::unique_ptr<rocprofiler::hsa::AQLPacket>& ret_pkt,
|
|
std::shared_ptr<counter_config>& profile)
|
|
{
|
|
rocprofiler_status_t status;
|
|
// Check packet cache
|
|
profile->packets.wlock([&](auto& pkt_vector) {
|
|
status = counter_callback_info::setup_counter_config(profile);
|
|
if(!pkt_vector.empty() && status == ROCPROFILER_STATUS_SUCCESS)
|
|
{
|
|
ret_pkt = std::move(pkt_vector.back());
|
|
pkt_vector.pop_back();
|
|
}
|
|
});
|
|
|
|
if(status != ROCPROFILER_STATUS_SUCCESS) return status;
|
|
if(!ret_pkt)
|
|
{
|
|
// If we do not have a packet in the cache, create one.
|
|
ret_pkt = profile->pkt_generator->construct_packet(
|
|
CHECK_NOTNULL(hsa::get_queue_controller())->get_core_table(),
|
|
CHECK_NOTNULL(hsa::get_queue_controller())->get_ext_table());
|
|
}
|
|
|
|
ret_pkt->clear();
|
|
packet_return_map.wlock([&](auto& data) { data.emplace(ret_pkt.get(), profile); });
|
|
|
|
return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
|
|
void
|
|
start_context(const context::context* ctx)
|
|
{
|
|
if(!ctx || !ctx->counter_collection) return;
|
|
|
|
auto* controller = hsa::get_queue_controller();
|
|
|
|
bool already_enabled = true;
|
|
CHECK_NOTNULL(controller)->enable_serialization();
|
|
ctx->counter_collection->enabled.wlock([&](auto& enabled) {
|
|
if(enabled) return;
|
|
already_enabled = false;
|
|
enabled = true;
|
|
});
|
|
|
|
if(!already_enabled)
|
|
{
|
|
callback_thread_start();
|
|
|
|
for(auto& cb : ctx->counter_collection->callbacks)
|
|
{
|
|
// Insert our callbacks into HSA Interceptor. This
|
|
// turns on counter instrumentation.
|
|
if(cb->queue_id != rocprofiler::hsa::ClientID{-1}) continue;
|
|
cb->queue_id = controller->add_callback(
|
|
std::nullopt,
|
|
[=](const hsa::Queue& q,
|
|
const hsa::rocprofiler_packet& kern_pkt,
|
|
rocprofiler_kernel_id_t kernel_id,
|
|
rocprofiler_dispatch_id_t dispatch_id,
|
|
rocprofiler_user_data_t* user_data,
|
|
const hsa::Queue::queue_info_session_t::external_corr_id_map_t& extern_corr_ids,
|
|
const context::correlation_id* correlation_id) {
|
|
return queue_cb(ctx,
|
|
cb,
|
|
q,
|
|
kern_pkt,
|
|
kernel_id,
|
|
dispatch_id,
|
|
user_data,
|
|
extern_corr_ids,
|
|
correlation_id);
|
|
},
|
|
// Completion CB
|
|
[=](const hsa::Queue& /* q */,
|
|
hsa::rocprofiler_packet /* kern_pkt */,
|
|
std::shared_ptr<hsa::Queue::queue_info_session_t>& session,
|
|
inst_pkt_t& aql,
|
|
kernel_dispatch::profiling_time dispatch_time) {
|
|
completed_cb(ctx, cb, session, aql, dispatch_time);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
stop_context(const context::context* ctx)
|
|
{
|
|
if(!ctx || !ctx->counter_collection) return;
|
|
|
|
auto* controller = hsa::get_queue_controller();
|
|
|
|
ctx->counter_collection->enabled.wlock([&](auto& enabled) {
|
|
if(!enabled) return;
|
|
enabled = false;
|
|
});
|
|
|
|
if(controller) controller->disable_serialization();
|
|
|
|
callback_thread_stop();
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
configure_agent_collection(rocprofiler_context_id_t context_id,
|
|
rocprofiler_buffer_id_t buffer_id,
|
|
rocprofiler_agent_id_t agent_id,
|
|
rocprofiler_device_counting_service_cb_t cb,
|
|
void* user_data)
|
|
{
|
|
return get_controller().configure_agent_collection(
|
|
context_id, buffer_id, agent_id, cb, user_data);
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
configure_buffered_dispatch(rocprofiler_context_id_t context_id,
|
|
rocprofiler_buffer_id_t buffer,
|
|
rocprofiler_dispatch_counting_service_cb_t callback,
|
|
void* callback_args)
|
|
{
|
|
CHECK_NE(buffer.handle, 0);
|
|
return get_controller().configure_dispatch(
|
|
context_id, buffer, callback, callback_args, nullptr, nullptr);
|
|
}
|
|
|
|
rocprofiler_status_t
|
|
configure_callback_dispatch(rocprofiler_context_id_t context_id,
|
|
rocprofiler_dispatch_counting_service_cb_t callback,
|
|
void* callback_data_args,
|
|
rocprofiler_dispatch_counting_record_cb_t record_callback,
|
|
void* record_callback_args)
|
|
{
|
|
return get_controller().configure_dispatch(context_id,
|
|
{.handle = 0},
|
|
callback,
|
|
callback_data_args,
|
|
record_callback,
|
|
record_callback_args);
|
|
}
|
|
|
|
} // namespace counters
|
|
} // namespace rocprofiler
|