How do I construct a complex gpuArray directly on the GPU?
Ältere Kommentare anzeigen
I am trying to initialize a complex gpuArray directly on the GPU (i.e. without first creating a complex array in host memory and then copying it over to the device).
So far the only thing I've found that works is:
foo = gpuArray(complex(0));
bar = zeros(4, 1, 'like',foo);
which seems kinda silly. Is there a way to allocate a complex gpuArray directly using something like gpuArray.zeros?
Akzeptierte Antwort
Weitere Antworten (1)
KSSV
am 12 Sep. 2017
G = gpuArray(rand(10,1)+1i*rand(10,1));
2 Kommentare
Kevin
am 12 Sep. 2017
Jacob Lynch August
am 9 Nov. 2018
Alternatively:
complex(gpuArray.rand(size,type),gpuArray(size,type))
Kategorien
Mehr zu GPU Computing in MATLAB finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!