Does gather() clear memory

30 Ansichten (letzte 30 Tage)
James
James am 18 Jan. 2025
Kommentiert: James am 21 Jan. 2025
I am running in to memory limits on my GPUs. I know I can reset(gpuDevice) to clear all memory on the device, however, I would like to move arrays one at a time from GPU memory to memory and then clear the orginal GPU version. Does gather() also clear the GPU memory after copying/moving to memory?
If not, what would be the best way to achieve this?

Akzeptierte Antwort

Joss Knight
Joss Knight am 18 Jan. 2025

gather creates a copy of the array in main memory. Clearing a gpuArray variable will release its memory. So if you replace a gpuArray variable x with gather(x) then that will clear the gpuArray and release the memory. In other words

x = gather(x);

releases memory, but

y = gather(x);

does not, because x is still a gpuArray.

Hope that helps.

Note that MATLAB pools GPU memory, so memory available to MATLAB may continue to appear used in the Task Manager. You can get rid of this behaviour by setting the gpuDevice CachePolicy property to "minimum".

  4 Kommentare
Joss Knight
Joss Knight am 21 Jan. 2025
Bearbeitet: Joss Knight am 21 Jan. 2025
Yes, clear will release GPU memory used by the cleared variable.
tmp = rand(1000, 1, "gpuArray") <= 0.01 creates a temporary 1000-by-1 array of double on the GPU, which will be cleared at the end of the operation, but tmp will now contain a 1000-by-1 array of logical on the GPU. Also, this comparison will be performed lazily so the temporary variable will not be released unless you display tmp or do something else to cause GPU synchronization.
James
James am 21 Jan. 2025
Perfect, thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Matt J
Matt J am 18 Jan. 2025
It seems to for me:
>> A=gpuArray.rand(300,300,300);
>> gpuDevice().AvailableMemory
ans =
3.1956e+09
>> A=gather(A);
>> gpuDevice().AvailableMemory
ans =
3.4116e+09
  1 Kommentar
James
James am 18 Jan. 2025
Great, thanks, I have the same

Melden Sie sich an, um zu kommentieren.

Produkte


Version

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by