Conversion to double from gpuArray is not possible.

조회 수: 27 (최근 30일)
Raza Ali
Raza Ali 2020년 9월 1일
댓글: Raza Ali 2020년 9월 3일
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.?

답변 (1개)

Raymond Norris
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
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;
Raza Ali
Raza Ali 2020년 9월 3일
Thank you Edric Ellis, although the code is still not executable but 'like' and 'dbstop' helped alot to understand the process.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by