Files
Bing Ma 171a5f5bda [aqlprofile] Enable SPM support for MI200/MI300 (#1768)
* [SPM] Enable legacy SPM aqlprofile API

* [SPM] Enable SPM aqlprofile_v2 API

* [NPI][SPM] Fix crash from ctrl test

* Adding decode v1 (#189)

Co-authored-by: Giovanni baraldi <gbaraldi@amd.com>

* Fix various issues on MI200
1. RLC_SPM_PERFMON_SEGMENT_SIZE_CORE1 support
2. ActiveCU patch for SPM delay table

* [SPM] Fix wrong SPM counter values on MI3xx

* Add mode and query blocks (#196)

Co-authored-by: Giovanni baraldi <gbaraldi@amd.com>

* [aqlprofile][spm] Use existing SpmBlockId enum info for delay table size

* [aqlprofile][spm] Remove obsolete logic

* Update projects/aqlprofile/src/core/include/aqlprofile-sdk/aql_profile_v2.h

---------

Co-authored-by: Baraldi, Giovanni <Giovanni.Baraldi@amd.com>
Co-authored-by: Giovanni baraldi <gbaraldi@amd.com>
2025-11-19 11:17:01 -08:00

300 wiersze
12 KiB
C++

// MIT License
//
// Copyright (c) 2017-2025 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.
#ifndef TEST_PGEN_TEST_PGEN_SPM_H_
#define TEST_PGEN_TEST_PGEN_SPM_H_
#include <fstream>
#include <iomanip>
#include <iostream>
#include <string>
#include <vector>
#include "pgen/test_pgen.h"
#include "util/test_assert.h"
#include "spm_common.hpp"
// C++11's solution for std::format()
template <typename... Args>
std::string string_format(const std::string& format, Args... args) {
int size_s = std::snprintf(nullptr, 0, format.c_str(), args...) + 1; // Extra space for '\0'
if (size_s <= 0) {
throw std::runtime_error("Error during formatting.");
}
auto size = static_cast<size_t>(size_s);
std::unique_ptr<char[]> buf(new char[size]);
std::snprintf(buf.get(), size, format.c_str(), args...);
return std::string(buf.get(), buf.get() + size - 1); // We don't want the '\0' inside
}
hsa_status_t TestPGenSpmCallback(hsa_ven_amd_aqlprofile_info_type_t info_type,
hsa_ven_amd_aqlprofile_info_data_t* info_data,
void* callback_data) {
hsa_status_t status = HSA_STATUS_SUCCESS;
std::clog << string_format("SPM Callback: Data = %p Size = %zu\n", info_data->trace_data.ptr,
info_data->trace_data.size);
if (callback_data) {
auto* streams_ = (std::vector<std::ofstream>*)callback_data;
(*streams_)[info_data->sample_id].write((const char*)info_data->trace_data.ptr,
info_data->trace_data.size);
} return status;
}
// Class implements SPM profiling
class TestPGenSpm : public TestPGen {
public:
explicit TestPGenSpm(TestAql* t) : TestPGen(t) {
std::clog << "Test: PGen SPM" << std::endl;
profile_ = hsa_ven_amd_aqlprofile_profile_t{};
}
bool Initialize(int arg_cnt, char** arg_list) {
std::vector<hsa_ven_amd_aqlprofile_event_t> event_vec;
for (int i = 0; i < arg_cnt; ++i) {
unsigned block_id = 0;
unsigned block_index = 0;
unsigned event_id = 0;
sscanf(arg_list[i], "%u:%u:%u", &block_id, &block_index, &event_id);
const hsa_ven_amd_aqlprofile_event_t event = {
static_cast<hsa_ven_amd_aqlprofile_block_name_t>(block_id), block_index, event_id};
event_vec.push_back(event);
}
if (!TestPMgr::Initialize(arg_cnt, arg_list)) return false;
hsa_status_t status;
hsa_agent_t agent;
uint32_t command_buffer_alignment;
uint32_t command_buffer_size;
uint32_t output_buffer_alignment;
uint32_t output_buffer_size;
// GPU identificator
agent = GetAgentInfo()->dev_id;
// Preparing events vector
std::vector<hsa_ven_amd_aqlprofile_event_t> event_vec_filtered;
for (auto it = event_vec.begin(); it != event_vec.end(); ++it) {
bool result = false;
hsa_status_t status = api_->hsa_ven_amd_aqlprofile_validate_event(agent, &(*it), &result);
if (status != HSA_STATUS_SUCCESS) {
const char* str = "";
api_->hsa_ven_amd_aqlprofile_error_string(&str);
std::cerr << "aqlprofile err: " << str << std::endl;
}
if (!result) {
std::cerr << "Bad event: block (" << it->block_name << "_" << it->block_index << ") id ("
<< it->counter_id << ")" << std::endl;
} else {
event_vec_filtered.push_back(*it);
}
}
const size_t event_count = event_vec_filtered.size();
hsa_ven_amd_aqlprofile_event_t* events = new hsa_ven_amd_aqlprofile_event_t[event_count];
for (uint32_t i = 0; i < event_count; ++i) {
events[i] = event_vec_filtered.at(i);
}
// Initialization of the profile
memset(&profile_, 0, sizeof(profile_));
profile_.agent = agent;
profile_.type = HSA_VEN_AMD_AQLPROFILE_EVENT_TYPE_TRACE;
// Set sample rate parameter
hsa_ven_amd_aqlprofile_parameter_t parameter;
parameter.parameter_name = HSA_VEN_AMD_AQLPROFILE_PARAMETER_NAME_SAMPLE_RATE;
parameter.value = spm_sample_rate_;
profile_.parameters = &parameter;
profile_.parameter_count = 1;
// Set enabled events list
profile_.events = events;
profile_.event_count = event_count;
// Profile buffers attributes
command_buffer_alignment = buffer_alignment_;
status = api_->hsa_ven_amd_aqlprofile_get_info(
&profile_, HSA_VEN_AMD_AQLPROFILE_INFO_COMMAND_BUFFER_SIZE, &command_buffer_size);
TEST_ASSERT(status == HSA_STATUS_SUCCESS);
num_xcc_ = GetAgentInfo()->xcc_num ? GetAgentInfo()->xcc_num : 1;
output_buffer_alignment = buffer_alignment_;
output_buffer_size = buffer_size_ * num_xcc_;
// Application is allocating the command buffer
// AllocateSystem(command_buffer_alignment, command_buffer_size,
// MODE_HOST_ACC|MODE_DEV_ACC|MODE_EXEC_DATA)
profile_.command_buffer.ptr =
GetRsrcFactory()->AllocateCmdMemory(GetAgentInfo(), command_buffer_size);
TEST_ASSERT(profile_.command_buffer.ptr != NULL);
profile_.command_buffer.size = command_buffer_size;
TEST_ASSERT((reinterpret_cast<uintptr_t>(profile_.command_buffer.ptr) &
(command_buffer_alignment - 1)) == 0);
// Application is allocating the output buffer
// AllocateLocal(output_buffer_alignment, output_buffer_size,
// MODE_DEV_ACC)
profile_.output_buffer.ptr =
GetRsrcFactory()->AllocateLocalMemory(GetAgentInfo(), output_buffer_size);
TEST_ASSERT(profile_.output_buffer.ptr != NULL);
profile_.output_buffer.size = output_buffer_size;
TEST_ASSERT((reinterpret_cast<uintptr_t>(profile_.output_buffer.ptr) &
(output_buffer_alignment - 1)) == 0);
// Populating the AQL start packet
status = api_->hsa_ven_amd_aqlprofile_start(&profile_, PrePacket());
TEST_ASSERT(status == HSA_STATUS_SUCCESS);
if (status != HSA_STATUS_SUCCESS) return false;
// Populating the AQL stop packet
status = api_->hsa_ven_amd_aqlprofile_stop(&profile_, PostPacket());
TEST_ASSERT(status == HSA_STATUS_SUCCESS);
streams_.resize(num_xcc_);
for (uint32_t i = 0; i < num_xcc_; i++) {
std::ostringstream oss;
oss << "spm_buffer_" << i << ".bin";
streams_[i].open(oss.str(), std::ofstream::binary | std::ofstream::out);
}
api_->hsa_ven_amd_aqlprofile_iterate_data(&profile_, TestPGenSpmCallback, &streams_);
return (status == HSA_STATUS_SUCCESS);
}
int GetMode() { return RUN_MODE; }
bool BuildPackets() { return true; }
bool DumpData() {
std::clog << "TestPGenSpm::DumpData :" << std::endl;
return true;
}
void ProcessOutput() {
SpmBufferDesc* desc = (SpmBufferDesc*)profile_.output_buffer.ptr;
uint32_t seg_size = (desc->global_num_line + desc->se_num_line * desc->num_se) * 32;
uint16_t* buffer = (uint16_t*)malloc(seg_size);
uint64_t* counter = (uint64_t*)malloc(profile_.event_count * sizeof(uint64_t));
uint64_t* counter_total = (uint64_t*)calloc(profile_.event_count, sizeof(uint64_t));
if (!buffer || !counter || !counter_total) {
if (buffer) free(buffer);
if (counter) free(counter);
if (counter_total) free(counter_total);
return;
}
std::clog << string_format("Segment Size = %d bytes\n", seg_size);
#if 0
for (int i = 0; i < profile_.event_count; i++) {
auto it = &profile_.events[i];
std::clog << string_format("block (%d_%d) id (%2d) at index %2d (%s)\n", it->block_name,
it->block_index, it->counter_id, desc->counter_map[i] & 0x3FFF,
desc->counter_map[i] & 0x8000 ? "GLOBAL" : "SE");
}
#endif
for (int i = 0; i < num_xcc_; i++) {
char name[64];
sprintf(name, "spm_buffer_%d.bin", i);
FILE* stream = fopen(name, "rb");
if (!stream) continue;
if (num_xcc_ > 1) std::cout << "XCC" << i << ":\n";
uint64_t timestamp_last = 0;
uint64_t timestamp_this;
memset(counter, 0, profile_.event_count * sizeof(uint64_t));
while (!feof(stream)) {
size_t nr = fread(buffer, 1, seg_size, stream);
if (!nr) break;
if (nr != seg_size) {
std::cerr << string_format("Incomplete segment %ld < %d\n", nr, seg_size);
break;
}
timestamp_this = *(uint64_t*)&buffer[0];
if (timestamp_this < timestamp_last) {
std::cerr << string_format("Invalid timestamp %ld (last timestamp %ld\n", timestamp_this,
timestamp_last);
break;
}
timestamp_last = timestamp_this;
for (int i = 0; i < profile_.event_count; i++) {
uint16_t index = desc->get_counter_map()[i] & 0x7FFF;
uint16_t index_j;
bool is_global = (desc->get_counter_map()[i] & 0x8000) ? true : false;
if (is_global) {
if (buffer[index] && buffer[index] != 0xFFFF) counter[i] += buffer[index];
} else {
uint16_t se_base = desc->global_num_line * 16;
uint16_t se_step = desc->se_num_line * 16;
for (int j = 0; j < desc->num_se; j++) {
index_j = index + se_base + se_step * j;
if (buffer[index_j] && buffer[index_j] != 0xFFFF) counter[i] += buffer[index_j];
}
}
}
}
fclose(stream);
for (int i = 0; i < profile_.event_count; i++) {
auto it = &profile_.events[i];
std::cout << string_format("block %d-index %d counter %3d = 0x%lX\n", it->block_name,
it->block_index, it->counter_id, counter[i]);
counter_total[i] += counter[i];
}
}
if (num_xcc_ > 1) {
std::cout << "SUM(XCC0:XCC" << num_xcc_ - 1 << "):\n";
for (int i = 0; i < profile_.event_count; i++) {
auto it = &profile_.events[i];
std::cout << string_format("block %d-index %d counter %3d = 0x%lX\n", it->block_name,
it->block_index, it->counter_id, counter_total[i]);
}
}
free(buffer);
free(counter);
free(counter_total);
}
bool Cleanup() {
api_->hsa_ven_amd_aqlprofile_iterate_data(&profile_, TestPGenSpmCallback, NULL);
for (int i; i < num_xcc_; i++) {
if (streams_[i].is_open()) {
streams_[i].close();
}
}
ProcessOutput();
return TestAql::Cleanup();
}
static const uint32_t buffer_alignment_ = 0x1000; // 4K
static const uint32_t buffer_size_ = 0x2000000; // 32M
static const uint32_t spm_sample_rate_ = 10000; // default SPM sample rate
hsa_ven_amd_aqlprofile_profile_t profile_;
std::vector<std::ofstream> streams_;
uint32_t num_xcc_;
};
#endif // TEST_PGEN_TEST_PGEN_SPM_H_