There is no deterministic order for threads' execution and if you need a specific order then you should be programming it sequentially instead of using a parallel execution model.
There is something that can be said about thread execution, though. In CUDA's execution model, threads are grouped in "warps". Depending on the compute capability of the underlying device, each warp (or half-warp) is executed simultaneously - literally at the same time. The execution proceeds until the code locks due to waiting for memory transference and another warp (or half-warp) is scheduled to run.
The documentation, though, is very specific about what assumptions you can make on the matter: the best execution barrier you have is a kernel call ending.