Asynchronous GPU calculations
3 ビュー (過去 30 日間)
古いコメントを表示
In the latest release, GPU calls execute asynchronously to the CPU. But do also GPU calls themselves run asynchronously? I.e. does multiple calls using e.g. feval(CUDA_kernel, ...) execute at the same time, or does the GPU wait for subsequent calls to finish? Does one need to impose wait() between feval to guarantee that the calls execute in order on the GPU? Experimental tests indicate that wait() is not needed, but it would be nice with a proper guarantee.
0 件のコメント
採用された回答
Edric Ellis
2012 年 4 月 17 日
The asynchronous nature of the kernel invocations should be completely transparent in terms of functionality (if it isn't, then that would be a bug), the "wait()" is required only when attempting to get timings for portions of code.
2 件のコメント
Jill Reese
2012 年 4 月 17 日
Yes, this code will be executed properly. And gather does wait for the variable it is transferring to be completely evaluated before the transfer starts.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で GPU Computing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!