GPU Architecture

Good

if (ID < 64)
    a
else
    b

Bad

if (ID == 0)
    a
else
    b

Worst

if (ID%2==0)
    a
else
    b