Code optimization with GPU

1 visualización (últimos 30 días)
POHL Michel
POHL Michel el 16 de En. de 2021
Comentada: Joss Knight el 16 de En. de 2021
Hi everyone, I have the following line of codes which I would like to parallelize on the GPU :
U = zeros(q, M, q, 'gpuArray');
for j=1:q
U(j,:,j) = my_line_vector;
end
Is there any way to suppress the loop?
Thes are the lines of code that run the slowest in my program.
Thank you in advance
Michel

Respuesta aceptada

Joss Knight
Joss Knight el 16 de En. de 2021
Editada: Joss Knight el 16 de En. de 2021
I = reshape(gpuArray.eye(q),q,1,q);
U = I.*my_line_vector;
  4 comentarios
POHL Michel
POHL Michel el 16 de En. de 2021
Thank you, it works!
I did not know that the element wise product worked with matrices with different size.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre GPU Computing in MATLAB 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