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!