Speed up 'dlgradient' with parallelism?

8 views (last 30 days)
Evan Scope Crafts
Evan Scope Crafts on 11 Apr 2021
Commented: Luis Hernandez on 14 Nov 2023
Hi all,
I am wondering if there is a way to speed up the 'dlgradient' function evaluation using parallelism or GPUs.

Answers (1)

Jon Cherrie
Jon Cherrie on 12 Apr 2021
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:
  1 Comment
Luis Hernandez
Luis Hernandez on 14 Nov 2023
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

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!