From 4af73d078f046750ef25df2a2ed2728421030bca Mon Sep 17 00:00:00 2001 From: "Tumakaev, Aleksei" Date: Tue, 15 Jul 2025 18:15:22 +0200 Subject: [PATCH] [rocprofv3] Fix incorrect position of Allocation_Size header in memory_allocation csv (#510) Fix incorrect position of Allocation_Size header in memory_allocation csv --- source/lib/output/generateCSV.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/output/generateCSV.cpp b/source/lib/output/generateCSV.cpp index bb68d12017..aa848566c3 100644 --- a/source/lib/output/generateCSV.cpp +++ b/source/lib/output/generateCSV.cpp @@ -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(); }