Borrar filtros
Borrar filtros

Arrayfun for a particukar nested loop in GPU computing

1 visualización (últimos 30 días)
Damiano Capocci
Damiano Capocci el 26 de Dic. de 2017
Editada: Damiano Capocci el 26 de Dic. de 2017
Hi i've this situation (CPU):
X(1)= first_step;
for k=1:length_1
for p=0:min(k-1,length_2)
X(k+1)=X(k+1)+j(p+1)*X(k-p)
end
end
I want to make it more appropriate for GPU, so my idea is to consider arrayfun instead of for loop. I found it not so easy because here i have a nested loop with a dependence from the previous components. I use min() function so in this way the difference k-p is always positive.

Respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by