I have problem with clear GPU memory
29 ビュー (過去 30 日間)
古いコメントを表示
After executing this code, the GPU memory is use by 2 GB. Only the D matrix in GPU memory...
A=fix(gpuArray(rand(1,1000))*99)+1;
B=fix(gpuArray(rand(1,1000))*99)+1;
C=gpuArray(rand(100000,100));
E=C(:,A);
F=C(:,B);
D=E.*F;
clear E F C A B
However, if I execute this code.
D=gpuArray(rand(100000,1000));
There we see D matrix (same size) in GPU memory, but now it only use 1 GB of GPU memory. Why is there a difference? and how to clear the memory in the first variant?
2 件のコメント
Raymond Norris
2020 年 10 月 29 日
Hi Vitaly,
I don't have a GPU at my disposal. Your code, A..D, consumes 2.37 GB. D alone is 763 MB. So I think that aligns with what you're seeing, except I'm not sure why you think only D is in the GPU memory.
Have you called reset to clear the GPU?
reset(gpuDevice)
Are you using nvidia-smi to check if the memory goes up and down?
Raymond
回答 (1 件)
Joss Knight
2020 年 11 月 2 日
MATLAB does not clear all GPU memory unless all variables are released because allocating memory is a performance bottleneck. So MATLAB instead pools memory for later allocations.
To force the GPU to release all memory, you can call reset(gpuDevice).
7 件のコメント
Joss Knight
2020 年 11 月 2 日
Oh I see now. This is just because D hasn't been evaluated yet, which means E and F are still being held in memory, as is C because E and F are just slices of C which means it's being held in memory until we attempt to modify them. We use a lazy evaluation optimization and you haven't actually required D to be used or displayed. Insert gather(D) or wait(gpu) to force evaluation, and the memory will be freed.
参考
カテゴリ
Help Center および File Exchange で GPU Computing in MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!