Is there a way to run this loop in gpu and will it consume lesser time compared to parallel cpu computation time?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
N=50;
for n=1:8
b=rand(300,103);
w=rand(300,1);
[Q,R]=qr(b,0);
A(:,:,n);=R
end
8 Kommentare
Joss Knight
am 2 Apr. 2018
No, you cannot. See answers to the equivalent questions from you and others e.g.
Antworten (1)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!