Are parallel for loops available on GPUs ?

3 次查看(过去 30 天)
Does matlab PCT have capabilities to run parallel for loops on GPUs? (like the GFOR equivalent in Jacket ? Or even Matlab's own parfor that does parallel for loops on multiple processors/workers )

采纳的回答

Jill Reese
Jill Reese 2013-9-18
While there is no general capability to execute for loops directly on the GPU, if all of the operations inside the for loop are element-wise operations you can try to convert your code to call arrayfun to execute the for loop directly on the GPU.
If the loop body involves matrix multiplication over pages of a gpuArray, then you can replace the for loop with a single call to pagefun.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Parallel for-Loops (parfor) 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by