Check gpuArray double or single?

I'm pretty sure a gpuArray has a type (e.g., single or double). But i'm not sure how to check it. The function isa does not work for gpuArray.
A = gpuArray(single(1));
B = gpuArray(double(1));
isa(B,'double')
isa(B,'single')
You get both 0s.
Ref: https://www.mathworks.com/help/matlab/ref/isa.html
Thanks!

回答 (1 件)

Steven Lord
Steven Lord 2017 年 11 月 27 日

2 投票

The isa function works fine, but it answers a different question than you want to be answered. Instead, ask your question using the classUnderlying function.

2 件のコメント

Joss Knight
Joss Knight 2017 年 11 月 27 日
isaUnderlying is the direct analogue.
Steven Lord
Steven Lord 2017 年 11 月 27 日
Right, classUnderlying came to my mind first and I forgot to check for a function that is to isa like classUnderlying is to class. Use isaUnderlying as Joss suggested.

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

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

質問済み:

2017 年 11 月 27 日

コメント済み:

2017 年 11 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by