フィルターのクリア

Obtain memory usage and class for GPU variable

6 ビュー (過去 30 日間)
Peter
Peter 2016 年 5 月 2 日
コメント済み: Peter 2021 年 8 月 4 日
How can I get the amount of memory space (bytes) and the class (single/double/int) of a GPU variable? 'whos' doens't provide what I need. E.g.:
A=rand(1000,gpuArray);
infoA=whos('A');
gives: infoA =
name: 'A'
size: [1000 1000]
bytes: 108
class: 'gpuArray'
global: 0
sparse: 0
complex: 0
nesting: [1x1 struct]
persistent: 0
but i still don't know how many bytes of GPU memory A is taking and whether A is a single / double etc.

採用された回答

Matt J
Matt J 2021 年 3 月 1 日
See whosGPU.
  1 件のコメント
Peter
Peter 2021 年 8 月 4 日
awesome, thanks!

サインインしてコメントする。

その他の回答 (1 件)

Edric Ellis
Edric Ellis 2016 年 5 月 3 日
編集済み: Edric Ellis 2016 年 5 月 3 日
Unfortunately, whos only reports the memory usage on the CPU of a gpuArray. For non-sparse gpuArray data, you can compute the number of bytes consumed like so:
dataType = classUnderlying(A);
switch dataType
case 'double'
bytesPerElem = 8;
case 'single'
bytesPerElem = 4;
case 'logical'
bytesPerElem = 1;
otherwise
bytesPerElem = str2double(regexprep(dataType, '[a-z]', '')) / 8;
end
if ~isreal(A)
bytesPerElem = 2 * bytesPerElem;
end
totalBytes = bytesPerElem * numel(A);
  1 件のコメント
Peter
Peter 2016 年 5 月 3 日
Thanks Edric!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGPU Computing in MATLAB についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by