SWDEV-493402: Changing the header format for counter collection (#1148)

* SWDEV-493402: Changing the header format for counter collection

* Adding column widths
This commit is contained in:
Manjunath P Jakaraddi
2024-10-28 21:41:29 -07:00
committed by GitHub
parent 4a5b1d98c2
commit f087debe84
2 changed files with 9 additions and 9 deletions
+8 -8
View File
@@ -1,9 +1,9 @@
"Correlation_Id","Dispatch_Id","Agent_Id","Queue_Id","Process_Id","Thread_Id","Grid_Size","Kernel_Id","Kernel_Name","Workgroup_Size","LDS_Block_Size","Scratch_Size","VGPR_Count","SGPR_Count","Counter_Name","Counter_Value"
1,1,1,1,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
2,2,1,1,19396,19396,1048576,19,"subtract_kernel(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
5,5,1,2,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
9,9,1,3,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
13,13,1,4,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
3,3,1,1,19396,19396,1048576,17,"multiply_kernel(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
6,6,1,2,19396,19396,1048576,19,"subtract_kernel(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384
"Correlation_Id","Dispatch_Id","Agent_Id","Queue_Id","Process_Id","Thread_Id","Grid_Size","Kernel_Id","Kernel_Name","Workgroup_Size","LDS_Block_Size","Scratch_Size","VGPR_Count","SGPR_Count","Counter_Name","Counter_Value","Start_Timestamp","End_Timestamp"
1,1,1,1,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
2,2,1,1,19396,19396,1048576,19,"subtract_kernel(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
5,5,1,2,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
9,9,1,3,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
13,13,1,4,19396,19396,1048576,16,"void addition_kernel<float>(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
3,3,1,1,19396,19396,1048576,17,"multiply_kernel(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
6,6,1,2,19396,19396,1048576,19,"subtract_kernel(float*, float const*, float const*, int, int)",64,0,0,8,16,"SQ_WAVES",16384,2228955885095594,2228955885119754
1 Correlation_Id Dispatch_Id Agent_Id Queue_Id Process_Id Thread_Id Grid_Size Kernel_Id Kernel_Name Workgroup_Size LDS_Block_Size Scratch_Size VGPR_Count SGPR_Count Counter_Name Counter_Value Start_Timestamp End_Timestamp
2 1 1 1 1 19396 19396 1048576 16 void addition_kernel<float>(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
3 2 2 1 1 19396 19396 1048576 19 subtract_kernel(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
4 5 5 1 2 19396 19396 1048576 16 void addition_kernel<float>(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
5 9 9 1 3 19396 19396 1048576 16 void addition_kernel<float>(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
6 13 13 1 4 19396 19396 1048576 16 void addition_kernel<float>(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
7 3 3 1 1 19396 19396 1048576 17 multiply_kernel(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
8 6 6 1 2 19396 19396 1048576 19 subtract_kernel(float*, float const*, float const*, int, int) 64 0 0 8 16 SQ_WAVES 16384 2228955885095594 2228955885119754
9
+1 -1
View File
@@ -580,7 +580,7 @@ Here are the contents of ``counter_collection.csv`` file:
.. csv-table:: Counter collection
:file: /data/counter_collection.csv
:widths: 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
:widths: 10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10
:header-rows: 1
For the description of the fields in the output file, see :ref:`output-file-fields`.