Is there a way to run this loop in gpu and will it consume lesser time compared to parallel cpu computation time?
2 次查看(过去 30 天)
显示 更早的评论
N=50;
for n=1:8
b=rand(300,103);
w=rand(300,1);
[Q,R]=qr(b,0);
A(:,:,n);=R
end
8 个评论
Joss Knight
2018-4-2
No, you cannot. See answers to the equivalent questions from you and others e.g.
回答(1 个)
另请参阅
类别
在 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!