4ca156e572
* Adding test and samples to decoder
* Fix sample
* Formatting
* Fix multi test
* Disable sample
* Fix tests
* Format
* Version fix
* Locking the decoder
* Add atomic
* Review comments
* Format
* Adding readme
* merge conflict and adding PCS+ATT test
* Review comments
* Properly disable PCS test
* Update tests/rocprofv3/advanced-thread-trace/CMakeLists.txt
* Adding back env var test
* Name fix
* Preload sample
* Addressing review comments
* Update docs
---------
Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com>
[ROCm/rocprofiler-sdk commit: e898079a13]
392 lines
15 KiB
C++
392 lines
15 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2024-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.
|
|
//
|
|
// undefine NDEBUG so asserts are implemented
|
|
#ifdef NDEBUG
|
|
# undef NDEBUG
|
|
#endif
|
|
|
|
#include <rocprofiler-sdk/cxx/codeobj/code_printing.hpp>
|
|
|
|
#include <rocprofiler-sdk/buffer.h>
|
|
#include <rocprofiler-sdk/callback_tracing.h>
|
|
#include <rocprofiler-sdk/experimental/thread_trace.h>
|
|
#include <rocprofiler-sdk/fwd.h>
|
|
#include <rocprofiler-sdk/registration.h>
|
|
#include <rocprofiler-sdk/rocprofiler.h>
|
|
|
|
#include <algorithm>
|
|
#include <atomic>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#define ROCPROFILER_CALL(result, msg) \
|
|
if(auto ec = (result); ec != ROCPROFILER_STATUS_SUCCESS) \
|
|
{ \
|
|
std::cerr << "rocprofiler-sdk error at " << __FILE__ << ":" << __LINE__ \
|
|
<< " :: " << #result << std::endl; \
|
|
std::cerr << "rocprofiler-sdk error code " << ec << ": " \
|
|
<< rocprofiler_get_status_string(ec) << " :: " << msg << std::endl; \
|
|
abort(); \
|
|
}
|
|
|
|
#define DECODER_CALL(result) \
|
|
if(auto ec = (result); ec != ROCPROFILER_STATUS_SUCCESS) \
|
|
{ \
|
|
std::cerr << "Decoder error at " << __FILE__ << ":" << __LINE__ << std::endl; \
|
|
std::cerr << "rocprofiler-sdk error code " << ec << ": " \
|
|
<< rocprofiler_get_status_string(ec) << std::endl; \
|
|
}
|
|
|
|
#define CHECK_NOTNULL(x) \
|
|
if(!(x)) \
|
|
{ \
|
|
abort(); \
|
|
};
|
|
|
|
namespace
|
|
{
|
|
constexpr uint64_t TARGET_CU = 1; // CU (gfx9) or WGP (gfx10+)
|
|
constexpr uint64_t SHADER_MASK = 0x1; // Only enable SE=0
|
|
constexpr uint64_t BUFFER_SIZE = 0x10000000; // 256MB
|
|
}; // namespace
|
|
|
|
namespace Results
|
|
{
|
|
using pcinfo_t = rocprofiler_thread_trace_decoder_pc_t;
|
|
|
|
struct address_sort_t
|
|
{
|
|
bool operator()(const pcinfo_t& a, const pcinfo_t& b) const
|
|
{
|
|
if(a.marker_id == b.marker_id) return a.addr < b.addr;
|
|
return a.marker_id < b.marker_id;
|
|
}
|
|
};
|
|
|
|
struct Latency
|
|
{
|
|
uint64_t latency{0};
|
|
uint64_t hitcount{0};
|
|
};
|
|
|
|
// Maps address to latency
|
|
using LatencyTable = std::map<rocprofiler_thread_trace_decoder_pc_t, Latency, address_sort_t>;
|
|
// Used to disassemble instructions at (id, vaddr) pair
|
|
using AddressTable = rocprofiler::sdk::codeobj::disassembly::CodeobjAddressTranslate;
|
|
|
|
AddressTable* table{nullptr};
|
|
LatencyTable* latencies{nullptr};
|
|
|
|
// used to calculate mean wave lifetime
|
|
int64_t wave_lifetime = 0;
|
|
int64_t waves_started = 0;
|
|
int64_t waves_ended = 0;
|
|
|
|
void
|
|
gen_output_stream()
|
|
{
|
|
CHECK_NOTNULL(Results::latencies);
|
|
CHECK_NOTNULL(Results::table);
|
|
|
|
const char* OUTPUT_OFSTREAM = "thread_trace.log";
|
|
std::ofstream file(OUTPUT_OFSTREAM);
|
|
|
|
if(!file.is_open())
|
|
std::cout << "Could not open log file: " << OUTPUT_OFSTREAM << ", writing to stdout\n";
|
|
else
|
|
std::cout << "Writing log to: " << OUTPUT_OFSTREAM << std::endl;
|
|
|
|
std::ostream& output = file.is_open() ? file : std::cout;
|
|
|
|
// Sort map by instruction cost
|
|
using Element = std::pair<pcinfo_t, Latency>;
|
|
|
|
std::vector<Element> sorted(latencies->begin(), latencies->end());
|
|
std::stable_sort(sorted.begin(), sorted.end(), [](const Element& a, const Element& b) {
|
|
return a.second.latency > b.second.latency;
|
|
});
|
|
|
|
output << "Top 50 hotspots for trace (cycles):\n";
|
|
for(size_t i = 0; i < sorted.size() && i < 50; i++)
|
|
{
|
|
auto& addr = sorted.at(i).first;
|
|
auto& latency = sorted.at(i).second;
|
|
auto inst = table->get(addr.marker_id, addr.addr);
|
|
|
|
auto comment = inst->comment;
|
|
size_t pos = comment.rfind('/');
|
|
if(pos != std::string::npos && pos + 1 < comment.size()) comment = comment.substr(pos + 1);
|
|
|
|
output << "Latency:" << latency.latency << "\tHit:" << latency.hitcount << " \t"
|
|
<< inst->inst << " [" << comment << "]\n";
|
|
}
|
|
|
|
if(waves_started != waves_ended)
|
|
std::cerr << "Error: Some waves have not ended!" << std::endl;
|
|
else if(waves_started == 0)
|
|
std::cerr << "Error: No waves started!" << std::endl;
|
|
else
|
|
output << "\nMean wave lifetime: " << wave_lifetime / waves_started << " cycles";
|
|
|
|
output << "\nWaves started: " << waves_started << "\nWaves ended: " << waves_ended << "\n";
|
|
};
|
|
} // namespace Results
|
|
|
|
namespace Decoder
|
|
{
|
|
rocprofiler_thread_trace_decoder_id_t decoder{};
|
|
|
|
void
|
|
tool_codeobj_tracing_callback(rocprofiler_callback_tracing_record_t record,
|
|
rocprofiler_user_data_t* /* user_data */,
|
|
void* /* userdata */)
|
|
{
|
|
if(record.kind != ROCPROFILER_CALLBACK_TRACING_CODE_OBJECT) return;
|
|
if(record.operation != ROCPROFILER_CODE_OBJECT_LOAD) return;
|
|
|
|
CHECK_NOTNULL(Results::table);
|
|
auto* data = static_cast<rocprofiler_callback_tracing_code_object_load_data_t*>(record.payload);
|
|
|
|
if(data->storage_type == ROCPROFILER_CODE_OBJECT_STORAGE_TYPE_FILE)
|
|
{
|
|
Results::table->addDecoder(
|
|
data->uri, data->code_object_id, data->load_delta, data->load_size);
|
|
return;
|
|
}
|
|
|
|
auto* memorybase = reinterpret_cast<const void*>(data->memory_base);
|
|
CHECK_NOTNULL(memorybase);
|
|
|
|
DECODER_CALL(rocprofiler_thread_trace_decoder_codeobj_load(decoder,
|
|
data->code_object_id,
|
|
data->load_delta,
|
|
data->load_size,
|
|
memorybase,
|
|
data->memory_size));
|
|
|
|
Results::table->addDecoder(
|
|
memorybase, data->memory_size, data->code_object_id, data->load_delta, data->load_size);
|
|
}
|
|
|
|
void
|
|
shader_data_callback(rocprofiler_agent_id_t /* agent */,
|
|
int64_t /* se_id */,
|
|
void* se_data,
|
|
size_t data_size,
|
|
rocprofiler_user_data_t /* userdata */)
|
|
{
|
|
CHECK_NOTNULL(Results::latencies);
|
|
|
|
auto parse = [](rocprofiler_thread_trace_decoder_record_type_t record_type_id,
|
|
void* events,
|
|
uint64_t num_events,
|
|
void* /* userdata */) {
|
|
if(record_type_id == ROCPROFILER_THREAD_TRACE_DECODER_RECORD_OCCUPANCY)
|
|
{
|
|
for(size_t i = 0; i < num_events; i++)
|
|
{
|
|
auto& event = static_cast<rocprofiler_thread_trace_decoder_occupancy_t*>(events)[i];
|
|
|
|
if(event.start)
|
|
{
|
|
Results::wave_lifetime -= static_cast<int64_t>(event.time);
|
|
Results::waves_started++;
|
|
}
|
|
else
|
|
{
|
|
Results::wave_lifetime += static_cast<int64_t>(event.time);
|
|
Results::waves_ended++;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(record_type_id != ROCPROFILER_THREAD_TRACE_DECODER_RECORD_WAVE) return;
|
|
|
|
for(size_t w = 0; w < num_events; w++)
|
|
{
|
|
auto* wave = static_cast<rocprofiler_thread_trace_decoder_wave_t*>(events);
|
|
for(size_t i = 0; i < wave->instructions_size; i++)
|
|
{
|
|
auto& inst = wave->instructions_array[i];
|
|
auto& latency = (*Results::latencies)[inst.pc];
|
|
latency.latency += inst.duration;
|
|
latency.hitcount += 1;
|
|
}
|
|
}
|
|
};
|
|
|
|
DECODER_CALL(rocprofiler_trace_decode(decoder, parse, se_data, data_size, nullptr));
|
|
}
|
|
|
|
} // namespace Decoder
|
|
|
|
namespace ThreadTracer
|
|
{
|
|
rocprofiler_client_id_t* client_id = nullptr;
|
|
rocprofiler_context_id_t agent_ctx = {};
|
|
rocprofiler_context_id_t tracing_ctx = {};
|
|
|
|
rocprofiler_status_t
|
|
query_available_agents(rocprofiler_agent_version_t /* version */,
|
|
const void** agents,
|
|
size_t num_agents,
|
|
void* user_data)
|
|
{
|
|
rocprofiler_user_data_t user{};
|
|
user.ptr = user_data;
|
|
|
|
for(size_t idx = 0; idx < num_agents; idx++)
|
|
{
|
|
const auto* agent = static_cast<const rocprofiler_agent_v0_t*>(agents[idx]);
|
|
if(agent->type != ROCPROFILER_AGENT_TYPE_GPU) continue;
|
|
|
|
auto parameters = std::vector<rocprofiler_thread_trace_parameter_t>{};
|
|
parameters.push_back({ROCPROFILER_THREAD_TRACE_PARAMETER_TARGET_CU, TARGET_CU});
|
|
parameters.push_back({ROCPROFILER_THREAD_TRACE_PARAMETER_BUFFER_SIZE, BUFFER_SIZE});
|
|
parameters.push_back({ROCPROFILER_THREAD_TRACE_PARAMETER_SHADER_ENGINE_MASK, SHADER_MASK});
|
|
|
|
ROCPROFILER_CALL(
|
|
rocprofiler_configure_device_thread_trace_service(agent_ctx,
|
|
agent->id,
|
|
parameters.data(),
|
|
parameters.size(),
|
|
Decoder::shader_data_callback,
|
|
user),
|
|
"thread trace service configure");
|
|
}
|
|
return ROCPROFILER_STATUS_SUCCESS;
|
|
}
|
|
|
|
void
|
|
cntrl_tracing_callback(rocprofiler_callback_tracing_record_t record,
|
|
rocprofiler_user_data_t* /* user_data */,
|
|
void* /* cb_data */)
|
|
{
|
|
if(record.kind != ROCPROFILER_CALLBACK_TRACING_MARKER_CONTROL_API) return;
|
|
|
|
if(record.phase == ROCPROFILER_CALLBACK_PHASE_ENTER &&
|
|
record.operation == ROCPROFILER_MARKER_CONTROL_API_ID_roctxProfilerPause)
|
|
{
|
|
ROCPROFILER_CALL(rocprofiler_stop_context(agent_ctx), "stopping context");
|
|
}
|
|
else if(record.phase == ROCPROFILER_CALLBACK_PHASE_EXIT &&
|
|
record.operation == ROCPROFILER_MARKER_CONTROL_API_ID_roctxProfilerResume)
|
|
{
|
|
ROCPROFILER_CALL(rocprofiler_start_context(agent_ctx), "starting context");
|
|
}
|
|
}
|
|
|
|
int
|
|
tool_init(rocprofiler_client_finalize_t /* fini_func */, void* /* tool_data */)
|
|
{
|
|
Results::latencies = new Results::LatencyTable{};
|
|
Results::table = new Results::AddressTable{};
|
|
|
|
// This is set by ctests: TODO: move to client.cpp
|
|
// If nullptr, searches rocprofiler-sdk install location
|
|
const char* lib_path = std::getenv("ROCPROFILER_TRACE_DECODER_LIB_PATH");
|
|
|
|
DECODER_CALL(rocprofiler_thread_trace_decoder_create(&Decoder::decoder, lib_path));
|
|
|
|
ROCPROFILER_CALL(rocprofiler_create_context(&tracing_ctx), "context creation");
|
|
ROCPROFILER_CALL(rocprofiler_create_context(&agent_ctx), "context creation");
|
|
|
|
ROCPROFILER_CALL(
|
|
rocprofiler_configure_callback_tracing_service(tracing_ctx,
|
|
ROCPROFILER_CALLBACK_TRACING_CODE_OBJECT,
|
|
nullptr,
|
|
0,
|
|
Decoder::tool_codeobj_tracing_callback,
|
|
nullptr),
|
|
"code object tracing service configure");
|
|
|
|
ROCPROFILER_CALL(rocprofiler_configure_callback_tracing_service(
|
|
tracing_ctx,
|
|
ROCPROFILER_CALLBACK_TRACING_MARKER_CONTROL_API,
|
|
nullptr,
|
|
0,
|
|
cntrl_tracing_callback,
|
|
nullptr),
|
|
"marker tracing callback service configure");
|
|
|
|
ROCPROFILER_CALL(rocprofiler_query_available_agents(ROCPROFILER_AGENT_INFO_VERSION_0,
|
|
&query_available_agents,
|
|
sizeof(rocprofiler_agent_t),
|
|
nullptr),
|
|
"Failed to find GPU agents");
|
|
|
|
int valid_ctx = 0;
|
|
ROCPROFILER_CALL(rocprofiler_context_is_valid(agent_ctx, &valid_ctx), "validity check");
|
|
assert(valid_ctx != 0);
|
|
ROCPROFILER_CALL(rocprofiler_context_is_valid(tracing_ctx, &valid_ctx), "validity check");
|
|
assert(valid_ctx != 0);
|
|
|
|
ROCPROFILER_CALL(rocprofiler_start_context(tracing_ctx), "context start");
|
|
|
|
// no errors
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
tool_fini(void* /* tool_data */)
|
|
{
|
|
rocprofiler_thread_trace_decoder_destroy(Decoder::decoder);
|
|
|
|
Results::gen_output_stream();
|
|
|
|
delete Results::latencies;
|
|
delete Results::table;
|
|
}
|
|
|
|
} // namespace ThreadTracer
|
|
|
|
extern "C" rocprofiler_tool_configure_result_t*
|
|
rocprofiler_configure(uint32_t /* version */,
|
|
const char* /* runtime_version */,
|
|
uint32_t priority,
|
|
rocprofiler_client_id_t* id)
|
|
{
|
|
// only activate if main tool
|
|
if(priority > 0) return nullptr;
|
|
|
|
// set the client name
|
|
id->name = "Thread Trace Sample";
|
|
|
|
// store client info
|
|
ThreadTracer::client_id = id;
|
|
|
|
// create configure data
|
|
static auto cfg =
|
|
rocprofiler_tool_configure_result_t{sizeof(rocprofiler_tool_configure_result_t),
|
|
&ThreadTracer::tool_init,
|
|
&ThreadTracer::tool_fini,
|
|
nullptr};
|
|
|
|
// return pointer to configure data
|
|
return &cfg;
|
|
}
|