From e948034c835e10c8e8af22f81ccebc4171281352 Mon Sep 17 00:00:00 2001 From: "Gill, Harkirat" Date: Tue, 22 Jul 2025 13:46:01 -0400 Subject: [PATCH] Update output file fields docs to correctly define Grid_Size (#526) Co-authored-by: Bhardwaj, Gopesh --- source/docs/how-to/using-rocprofv3.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/docs/how-to/using-rocprofv3.rst b/source/docs/how-to/using-rocprofv3.rst index a2b00c46b6..d335373f31 100644 --- a/source/docs/how-to/using-rocprofv3.rst +++ b/source/docs/how-to/using-rocprofv3.rst @@ -1528,16 +1528,16 @@ The following table lists the various fields or the columns in the output CSV fi - The group segment memory required by a workgroup in bytes. This does not include any dynamically allocated group segment memory that may be added when the kernel is dispatched. * - Workgroup_Size - - Size of the workgroup as declared by the compute shader. + - The total number of work-items (or, threads) in each workgroup (or, block) launched as part of the kernel dispatch. In HIP, this is equivalent to the total block size. * - Workgroup_Size_n - Size of the workgroup in the nth dimension as declared by the compute shader, where n = X, Y, or Z. * - Grid_Size - - Number of thread blocks required to launch the kernel. + - The total number of work-items (or, threads) launched as a part of the kernel dispatch. In HIP, this is equivalent to the total grid size multiplied by the total workgroup (or, block) size. * - Grid_Size_n - - Number of thread blocks in the nth dimension required to launch the kernel, where n = X, Y, or Z. + - Number of work-items (or, threads) in the nth dimension required to launch the kernel, where n = X, Y, or Z. * - LDS_Block_Size - Thread block size for the kernel's Local Data Share (LDS) memory.