[rocprofv3] Fix incorrect position of Allocation_Size header in memory_allocation csv (#510)

Fix incorrect position of Allocation_Size header in memory_allocation csv
这个提交包含在:
Tumakaev, Aleksei
2025-07-15 18:15:22 +02:00
提交者 GitHub
父节点 d2393c97f8
当前提交 4af73d078f
+2 -2
查看文件
@@ -498,11 +498,11 @@ generate_csv(const output_config&
tool_metadata.get_kind_name(record.kind),
api_name,
agent_info,
record.allocation_size,
rocprofiler::sdk::utility::as_hex(record.address.handle, 16),
record.correlation_id.internal,
record.start_timestamp,
record.end_timestamp);
record.end_timestamp,
record.allocation_size);
ofs << row_ss.str();
}