parallel perfix sum in matlab

Réponses (1)

Edric Ellis
Edric Ellis le 20 Oct 2014

0 votes

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 commentaires

hadi
hadi le 20 Oct 2014
Modifié(e) : hadi le 20 Oct 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 le 20 Oct 2014
You need to use gpuArray as the error suggests, not gpuarray.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange

Tags

Question posée :

le 19 Oct 2014

Commenté :

le 20 Oct 2014

Community Treasure Hunt

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

Start Hunting!

Translated by