What happen to the CUDA cache mem?

7 visualizzazioni (ultimi 30 giorni)
fpexp
fpexp il 14 Dic 2017
Commentato: Joss Knight il 18 Lug 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 Commenti
Walter Roberson
Walter Roberson il 14 Dic 2017
Have you tried calling gather() after the permute?
fpexp
fpexp il 14 Dic 2017
nope, in fact the result is not stored anywhere. I would have expected the RAM area to be released immediately

Accedi per commentare.

Risposte (2)

Joss Knight
Joss Knight il 19 Dic 2017
The result is stored as the variable ans, which means you have less memory the second time round.
  4 Commenti
giovanni esposito
giovanni esposito il 18 Lug 2018
Modificato: giovanni esposito il 18 Lug 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 il 18 Lug 2018
No, you are calling clear b on the client. You need to do it inside the SPMD block.

Accedi per commentare.


Jeffrey Daniels
Jeffrey Daniels il 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.

Community Treasure Hunt

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

Start Hunting!

Translated by