error with gpuarray transformation

>> A3 = gpuArray(q);
Error using gpuArray
Only full arrays of fundamental numeric types or logical types are
supported for GPU arrays.
i get the following error message. q is a cell array consisting of a matrices with many thousand rows.
my gpu is a cuda card with 4 gigabytes.
thanks

 採用された回答

Matt J
Matt J 2014 年 12 月 18 日
編集済み: Matt J 2014 年 12 月 19 日

2 投票

q is not allowed to be a cell array. It must be a matrix or n-dimensional array. And it must be non-sparse.

6 件のコメント

AA
AA 2014 年 12 月 19 日
Is there a solution to this problem?
Edric Ellis
Edric Ellis 2014 年 12 月 19 日
No, you cannot put a cell array on the GPU. You can make a cell array containing gpuArrays if you wish, like so:
A = cellfun(@gpuArray, {1, 2, 3}, 'UniformOutput', false)
Not sure whether that's any use to you.
AA
AA 2014 年 12 月 19 日
so any calculations I do after this will be transformed using gpu rather than cpU?
AA
AA 2014 年 12 月 19 日
A = cellfun(@gpuArray, a, 'UniformOutput', false)
Matt J
Matt J 2014 年 12 月 19 日
All operations on A{i} will be done on the GPU.
AA
AA 2014 年 12 月 21 日
A = cellfun(@gather, a, 'UniformOutput', false) and this turns it back

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

その他の回答 (0 件)

カテゴリ

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

タグ

質問済み:

AA
2014 年 12 月 18 日

コメント済み:

AA
2014 年 12 月 21 日

Community Treasure Hunt

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

Start Hunting!

Translated by