Does gather() clear memory

조회 수: 16 (최근 30일)
James
James 2025년 1월 18일
댓글: James 2025년 1월 21일
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?

채택된 답변

Joss Knight
Joss Knight 2025년 1월 18일

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
Joss Knight
Joss Knight 2025년 1월 21일
편집: Joss Knight 2025년 1월 21일
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 2025년 1월 21일
Perfect, thank you!

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

추가 답변 (1개)

Matt J
Matt J 2025년 1월 18일
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
James
James 2025년 1월 18일
Great, thanks, I have the same

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

카테고리

Help CenterFile Exchange에서 GPU Computing에 대해 자세히 알아보기

제품


릴리스

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by