-
Notifications
You must be signed in to change notification settings - Fork 29
GcnTimings
The almost instructions are executed within 4 cycles (scalar and vector). Hence, to achieve maximum performance, 4 wavefront per compute units must be ran.
NOTE: Simple single dword (4-byte) instruction is executed in 4 cycles (thanks fast dispatching from cache). However, 2 dword instruction requires more cycles (2 or 3) to execution due to bigger size in memory and limits of instruction dispatching. To achieve best performance, we recommend to use single dword instructions.
The best place to put 2-dword instruction is 16-byte aligned address. It possible to put 2 subsequent 2-dword instructions in that address. Any misalignment can give penalty.
The 'Delay' column contains instruction's delays (how many cycles needed to execute instruction). The 'Throughput' contains instruction's throughputs (maximum number of instructions per cycle).
Aligmnent Rules for 2-dword instructions (GCN 1.0):
- any penalty costs 4 cycles
- program divided by in 32-byte blocks
- only first 3 places (dwords) in 32-byte block is free (no penalty). Any 2-dword instruction outside these first 3 dwords adds single penalty.
- if instructions is longer (more than four cycles) then last (cycles-4)/4 dwords are free
Instruction | Delay | Throughput |
---|---|---|
S_ABSDIFF_I32 | 4 | 1 |
S_ADDC_U32 | 4 | 1 |
S_ADD_I32 | 4 | 1 |
S_ADD_U32 | 4 | 1 |
S_ANDN2_B32 | 4 | 1 |
S_ANDN2_B64 | 4 | 1 |
S_AND_B32 | 4 | 1 |
S_AND_B64 | 4 | 1 |
S_ASHR_I32 | 4 | 1 |
S_ASHR_I64 | 4 | 1 |
S_BFE_I32 | 4 | 1 |
S_BFE_I64 | 4 | 1 |
S_BFE_U32 | 4 | 1 |
S_BFE_U64 | 4 | 1 |
S_BFM_B32 | 4 | 1 |
S_BFM_B64 | 4 | 1 |
S_CBRANCH_G_FORK | ||
S_CSELECT_B32 | 4 | 1 |
S_CSELECT_B64 | 4 | 1 |
S_LSHL_B32 | 4 | 1 |
S_LSHL_B64 | 4 | 1 |
S_LSHR_B32 | 4 | 1 |
S_LSHR_B64 | 4 | 1 |
S_MAX_I32 | 4 | 1 |
S_MAX_U32 | 4 | 1 |
S_MIN_I32 | 4 | 1 |
S_MIN_U32 | 4 | 1 |
S_MUL_I32 | 4 | 1 |
S_NAND_B32 | 4 | 1 |
S_NAND_B64 | 4 | 1 |
S_NOR_B32 | 4 | 1 |
S_NOR_B64 | 4 | 1 |
S_ORN2_B32 | 4 | 1 |
S_ORN2_B64 | 4 | 1 |
S_OR_B32 | 4 | 1 |
S_OR_B64 | 4 | 1 |
S_SUBB_U32 | 4 | 1 |
S_SUB_I32 | 4 | 1 |
S_SUB_U32 | 4 | 1 |
S_XNOR_B32 | 4 | 1 |
S_XNOR_B64 | 4 | 1 |
S_XOR_B32 | 4 | 1 |
S_XOR_B64 | 4 | 1 |
Instruction | Delay | Throughput |
---|---|---|
S_ADDK_I32 | 4 | 1 |
S_CBRANCH_I_FORK | ||
S_CMOVK_I32 | 4 | 1 |
S_CMPK_EQ_I32 | 4 | 1 |
S_CMPK_EQ_U32 | 4 | 1 |
S_CMPK_GE_I32 | 4 | 1 |
S_CMPK_GE_U32 | 4 | 1 |
S_CMPK_GT_I32 | 4 | 1 |
S_CMPK_GT_U32 | 4 | 1 |
S_CMPK_LE_I32 | 4 | 1 |
S_CMPK_LE_U32 | 4 | 1 |
S_CMPK_LG_I32 | 4 | 1 |
S_CMPK_LG_U32 | 4 | 1 |
S_CMPK_LT_I32 | 4 | 1 |
S_CMPK_LT_U32 | 4 | 1 |
S_GETREG_B32 | ||
S_GETREG_REGRD_B32 | ||
S_MOVK_I32 | 4 | 1 |
S_MULK_I32 | 4 | 1 |
S_SETREG_B32 | ||
S_SETREG_IMM32_B32 |