error when calling variables in GPU memory
11 次查看(过去 30 天)
显示 更早的评论
When I try to call a variable stored in GPU after some calculations, the session seems to be no response.
a sample code looks like this:
a=gpuArray.rand(1e3)
for i=1:1e9
a.^3;
end
a
Then, Matlab has no response.
I am using Ubuntu 14.04 and three GeForce 680 cards. The GPU driver is at the version 370, and CUDA is 7.5. And Matlab can recongize these three GPUs by the function gpuDevice.
0 个评论
回答(1 个)
Joss Knight
2016-11-17
When you issue the command to display the variable a, MATLAB has to wait for all the one billion GPU kernel calls you have issued to finish. Did you intend to take the cube of a a billion times? or did you mean to cube each element of a, in which case you just need a = a.^3.
2 个评论
Joss Knight
2016-11-24
编辑:Joss Knight
2016-11-24
On my K20 GPU gputimeit tells me it takes 0.6 milliseconds to compute the element-wise cube of a 1000x1000 matrix. To do this 1 billion times therefore will take 171 hours.
I believe you have a fundamental misunderstanding here. Do you understand that your code has asked your GPU to take the cube of a million billion (1000000000000000) numbers?
另请参阅
类别
在 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!