Speed up 'dlgradient' with parallelism?

조회 수: 9 (최근 30일)
Evan Scope Crafts
Evan Scope Crafts 2021년 4월 11일
편집: Enrico 2025년 2월 18일
Hi all,
I am wondering if there is a way to speed up the 'dlgradient' function evaluation using parallelism or GPUs.

답변 (1개)

Jon Cherrie
Jon Cherrie 2021년 4월 12일
You can use a GPU for the dlgradient computation by using a gpuArray with dlarray.
In this example, the minibtachqueue, puts data on to the GPU and thus the GPU is used for the rest of the computation, both the "forward" pass the "backward" (gradient) pass:
  댓글 수: 2
Luis Hernandez
Luis Hernandez 2023년 11월 14일
Hello.
I've been trying to use the functions 'dlgradient' and 'dlfeval' with gpuArray inputs so that matlab will use my GPU. Unofrtunately, they only work when I pass dlarray inputs.
What is the workaround for this? what is the minibatch doing that allows you to work with gpuArray?
Thanks!
-L
Enrico
Enrico 2025년 2월 18일
편집: Enrico 2025년 2월 18일
I have a similar problem, I have a 169x72x21 output and I would like to compute the dlgradient with respect to one input and pointwise (so not with the sum(y,'all') trick). I have tried defining a function
function dT_dt = derive_output(y,t)
dT_dt = dlgradient(y,t);
end
and then to run
dT_dt = arrayfun(@derive_output,y,repmat(t,1,num_PL));
where y is the output of my nn and t the scalar input value (replicated num_PL times so that the inputs to derive_output have the same size)
I get this error:
Error using gpuArray/arrayfun
Unable to read file 'dlarray'.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by