What happen to the CUDA cache mem?

7 vues (au cours des 30 derniers jours)
fpexp
fpexp le 14 Déc 2017
Commenté : Joss Knight le 18 Juil 2018
Hello there. I am a newbie with the GPU computing with Matlab, so apologize if the question sounds silly. I am trying to optimise some computation I am doing with the GPU. I believe it is well configured. I am doing some testing to understand how the GPU reacts to different commands and choose the best programming strategy. I have incurred in the following thing. I would appreciate some elucidation about the mechanism by which this feature happens. I am running a Geforce GTX 1080 ti. I do the following:
A = rand([100 100 100 100 10],'single','gpuArray')
tic,permute(A,[3 2 1 5 4]),wait(M.SelectedDevice()),toc
(trying to see how long does it take to permute a matrix)
now, if I ask the parallel.gpu.GPUDeviceManager.instance.SelectedDevice().AvailableMemory (read the available memory), then I can run a permute again. However, if I run two consecutive permute, I get the following
Error using gpuArray/permute Out of memory on device. To view more detail about available memory on the GPU, use 'gpuDevice()'. If the problem persists, reset the GPU by calling 'gpuDevice(1)'.
WHY?
  2 commentaires
Walter Roberson
Walter Roberson le 14 Déc 2017
Have you tried calling gather() after the permute?
fpexp
fpexp le 14 Déc 2017
nope, in fact the result is not stored anywhere. I would have expected the RAM area to be released immediately

Connectez-vous pour commenter.

Réponses (2)

Joss Knight
Joss Knight le 19 Déc 2017
The result is stored as the variable ans, which means you have less memory the second time round.
  4 commentaires
giovanni esposito
giovanni esposito le 18 Juil 2018
Modifié(e) : giovanni esposito le 18 Juil 2018
hence, for example this code shall free all gpus memory ad the end of each loop, correct ? I try to do this but memory is still busy at the end of each loop.
clear all
RefreshGPU = 100;
NW = gpuDeviceCount;
nw = 1:NW;
poolobj = gcp('nocreate'); % If no pool, do not create new one.
if isempty(poolobj)
ParObj = parpool('local',NW);
else
delete(gcp);
ParObj = parpool('local',NW);
end
a=rand(NW,1e5);
Nloop = 1e5;
for kk=1:Nloop
spmd
b = somefunction(a(labindex,:)); % this function do something on GPUs
end
clear b
end
Joss Knight
Joss Knight le 18 Juil 2018
No, you are calling clear b on the client. You need to do it inside the SPMD block.

Connectez-vous pour commenter.


Jeffrey Daniels
Jeffrey Daniels le 12 Mar 2018
FYI - For anyone else having similar problems, I get similar errors when I run too many workers. The GPU is being shared by each of the CPU workers and if you have too large or too many GPU matricies you will run out of memory on the GPU. One solution is to open the Cluster Profile Manager from the Parallel menu and reduce the number of workers in your Cluster Profile.

Catégories

En savoir plus sur GPU Computing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by