フィルターのクリア

Accessing complex workspace data from a CUDA kernel

1 回表示 (過去 30 日間)
Jeremy Dillon
Jeremy Dillon 2011 年 11 月 5 日
In my MATLAB workspace, I have some complex data that I wish to transfer to the GPU for further processing with a CUDA kernel. Transferring the data to the GPU is easy with the gpuArray command.
However, what data type should I specify in the .cu kernel prototype to access a complex gpuArray? In the Parallel Computing Toolbox documentation, cuComplex is not listed as a supported data type for the C prototype, and when I use float2 I receive an error message about the complexity of the input not matching the prototype:
"parallel.gpu.GPUArray must match the complexity specified on the kernel prototype"
Regards, Jeremy Dillon
  1 件のコメント
King Fisher
King Fisher 2011 年 11 月 27 日
Have you written CUDA Kernel? and you are activating it by parallel.gpu.kernel('.ptx','.cu') command? if yes Would you please share your code?

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

採用された回答

Edric Ellis
Edric Ellis 2011 年 11 月 7 日
You should use 'double2' to match complex double MATLAB data, and 'float2' for complex single MATLAB data.
  1 件のコメント
Jeremy Dillon
Jeremy Dillon 2011 年 11 月 7 日
Thank you Edric, that worked. When I tried float2 I had forgotten to initialize my output array as complex, e.g.
o = complex(parallel.gpu.GPUArray.zeros([1 N],'single'));

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by