Skip to content

Commit 1cb5459

Browse files
committed
Update output file fields docs to correctly define Grid_Size
1 parent 5c45c77 commit 1cb5459

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/docs/how-to/using-rocprofv3.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1522,16 +1522,16 @@ The following table lists the various fields or the columns in the output CSV fi
15221522
- 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.
15231523

15241524
* - Workgroup_Size
1525-
- Size of the workgroup as declared by the compute shader.
1525+
- 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.
15261526

15271527
* - Workgroup_Size_n
15281528
- Size of the workgroup in the nth dimension as declared by the compute shader, where n = X, Y, or Z.
15291529

15301530
* - Grid_Size
1531-
- Number of thread blocks required to launch the kernel.
1531+
- 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.
15321532

15331533
* - Grid_Size_n
1534-
- Number of thread blocks in the nth dimension required to launch the kernel, where n = X, Y, or Z.
1534+
- Number of work-items (or, threads) in the nth dimension required to launch the kernel, where n = X, Y, or Z.
15351535

15361536
* - LDS_Block_Size
15371537
- Thread block size for the kernel's Local Data Share (LDS) memory.

0 commit comments

Comments
 (0)