Does nvidia K20c use the old flow control method?

From K20, various flows become completely parallel (used simultaneously at the edge).

However, my program needs an old way. Or I need to do a lot of synchronization to solve the dependency problem.

Is it possible to switch flow control to the previous path?

+5
source share
2 answers

CUDA C Programming Reference for Asynchronous Current Execution

(, ), . , , ; (, undefined).

Compute Capability 2. * 3.0, CUDA (, ) .

, . , , , .

+6

cudaEvent_t?

Concurrency Webinar , . pre-Kepler, , , , , .

+1

All Articles