I'm having a bit of trouble understanding SIMT execution on a GPU. So far I have that threads are placed in 'warps' (eg. 32 threads/warp). These threads will be of the same type and can run in parallel (but can branch & run independently).
The book I'm reading then goes on to confuse me. 'It is then up to the instruction unit to select warps that are ready to execute their next instruction, and this instruction is then issued to the active threads of the warp. Each SP core executes an instruction for four individual threads of a warp using four clocks'.
The architecture chosen had 8 SPs, and 32 threads per warp. Therefore each SP is assigned 4 threads. Why not just assign 1 thread/SP? What does it mean by 'using four clocks?' does each instruction take 1 clock and do it does it 4 times (1 for each thread)?
Another problem I have is what if you have a warp with 32 threads each containing a conditional. What If half branch one way and half the other? From what I've read, the threads execute both outcomes? How does this work? i.e. how does it obey the program rules