parallel perfix sum in matlab

Respuestas (1)

Edric Ellis
Edric Ellis el 20 de Oct. de 2014

0 votos

In MATLAB, CUMSUM calculates the prefix sum. You can run this in parallel on a gpuArray like so:
x = gpuArray.rand(1, 100); % random vector
c = cumsum(x);

2 comentarios

hadi
hadi el 20 de Oct. de 2014
Editada: hadi el 20 de Oct. de 2014
thanks
but gpuarray have error in matlab:
Cannot find an exact (case-sensitive) match for 'gpuarray'.
Do you want: gpuArray (in C:\Program Files\MATLAB\R2011b\toolbox\distcomp\gpu\gpuArray.m)?
what can I do?
Edric Ellis
Edric Ellis el 20 de Oct. de 2014
You need to use gpuArray as the error suggests, not gpuarray.

Iniciar sesión para comentar.

Categorías

Etiquetas

Preguntada:

el 19 de Oct. de 2014

Comentada:

el 20 de Oct. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by