GPU gather command clarification and GPU memory usage

5 ビュー (過去 30 日間)
Octavian
Octavian 2015 年 4 月 2 日
コメント済み: Octavian 2015 年 4 月 2 日
Dear All,
1. If x is a gpuarray, and y its cpu correspondent, after the command
y=gather(x)
is x still on the GPU or is cleared (by being gathered on the cpu)?
2. Also, is there a way to see memory usage just on GPU at a certain time point, and not combined with the cpu memory usage?
3. Can x be saved on the hard drive without first being passed as y on the cpu?
Thank you,
Octavian.
  1 件のコメント
James Tursa
James Tursa 2015 年 4 月 2 日
編集済み: James Tursa 2015 年 4 月 2 日
According to the sqrt(G) example in the doc, the gpuArray G still exists after the gather function, so that implies that your x above still exists as a gpuArray after the gather function.

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

採用された回答

Edric Ellis
Edric Ellis 2015 年 4 月 2 日
  1. In this case, x still exists on the GPU - in general, input arguments to functions are not modified in MATLAB (some exceptions exist where the objects are handle types).
  2. Yes, look at the AvailableMemory field of the GPUDevice object returned by the function gpuDevice. See the documentation for more about this object
  3. Yes.
  1 件のコメント
Octavian
Octavian 2015 年 4 月 2 日
On no 3, could you confirm also that one can define a gpuArray object directly on the GPU and not occupy intermediate cpu memory during the definition? Thank you,
Octavian

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

その他の回答 (0 件)

カテゴリ

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