for loop and data in GPU memory
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
If the for loop is parallelizable, does the Parallel Computing Toolbox execute for loop in a parallel fashion when it is acting on data stored in GPU memory?
2 commentaires
Jill Reese
le 8 Nov 2012
It would be a bit easier to answer your question if you provided some sample code.
Thanks, Jill
Réponse acceptée
Jill Reese
le 9 Nov 2012
The for loop is not performed in parallel when you write code like this:
A = gpuArray(X);
for i = 1:length(A)
B(i) = f(A(i));
end
However, if your function f contains only elementwise operations, then you could achieve more parallelism by using arrayfun like so:
B = arrayfun(@f, A);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur GPU Computing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!