Conversion to double from gpuArray is not possible.
24 次查看(过去 30 天)
显示 更早的评论
I am training a CNN with some modification in classification layer. I have called a function in loss layer but when i start training the netwrok i get the folowing error:
Error using 'forwardLoss' in Layer ClassificationLayer. The function threw an error and could not be executed.
Caused by:
The following error occurred converting from gpuArray to double:
Conversion to double from gpuArray is not possible.
How to resolve this issue.?
0 个评论
回答(1 个)
Raymond Norris
2020-9-1
Raza,
My guess is that forwardLoss takes one or more input arguments, one of which is being passed a gpuArray instead of a double. Before calling forwardLoss, you can gather the data from the GPU to the CPU as such:
% GPU array "ga"
ga = ...
% Copy the data from the GPU to the CPU into "a"
a = gather(ga);
% Call forwardLoss fcn
forwardLoss(a,...);
3 个评论
Edric Ellis
2020-9-2
The specific error that you're receiving typically occurs when you try to assign gpuArray data into a double array, like this:
doubleData = zeros(1,10);
doubleData(3) = gpuArray(7);
The code you posted doesn't appear to do that in any way that I can see... You might want to try running with dbstop if all error to see exactly where the problem is showing up.
Sometimes this sort of thing can be fixed by using the 'like' syntax to build output arrays, like so:
myArray = gpuArray(7); % perhaps this is a function input on the GPU
outputData = zeros(1, 10, 'like', myArray); % outputData is on the GPU if myArray is on the GPU
outputData(3) = myArray;
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!