are there GPU settings in matlab?

17 次查看(过去 30 天)
I just bought a new NVIDIA Titan RTX in the hopes of increasing the speed of some code but have been most disappointed in the results. It was actually slower than the same code (on a different machine) with a NVidia RTX 2080 Qmax. Are there Matlab setttings that can help me take mroe advantage of my new GPU?
  4 个评论
Walter Roberson
Walter Roberson 2020-6-28
Odd... the specifications I find on that device imply it should be about twice as fast as the RTX 2080 Max-Q for double precision, and a bit faster (about 3%) as the Max-Q for single precision.
steve solomon
steve solomon 2020-6-28
yup, and at $2500 it trancends odd and crosses over to annoying. dowloaded and ran GPUbench on both machines using same version of Matlab (2020a) and found the Titan faster as expected. so it must be my code but that's pretty simple and should show the expected improvement, hence my question.

请先登录,再进行评论。

采纳的回答

Jason Ross
Jason Ross 2020-7-1
编辑:Jason Ross 2020-7-1
For a Titan board, you have the option of putting it in "compute only" (TCC) mode, which frees it from the Windows GUI timeout. These are nVidia settings, not MATLAB settings, we just pick up the GPU and use it. This has helped with performance in some instances. Keep in mind that for the Turing architecture, it's going to favor singles math performance over doubles. TCC mode cannot be set for every nvidia card, but nvidia-smi will till you if it's not supported. Generally it's allowed for Titan, Tesla, and some Quadro cards.
To set it to compute only you can use the nvidia-smi command run in an elevated (Administrator) command prompt. You must also not have a monitor connected to the card. The command will look something like
"C:\Program Files\Nvidia corporation\nvsmi\nvidia-smi.exe" -i 2 -dm 1
where "-i" is the index of the Titan RTX card. You can find this by just running nvidia-smi.exe without any options:
"C:\Program Files\Nvidia corporation\nvsmi\nvidia-smi.exe"
  2 个评论
Walter Roberson
Walter Roberson 2020-7-1
Good point, I tend to forget about that.
steve solomon
steve solomon 2020-7-1
thanks Jason, that sounds very promising. the Titan board i have does support TCC mode but i can't put it into TCC mode while it's driving the display and since i don't have a second card, can't try this mode at the moment.

请先登录,再进行评论。

更多回答(1 个)

Sindar
Sindar 2020-6-28
Most code will not be run on the GPU without adjustment
There are guides here and it looks pretty easy for many applications: https://www.mathworks.com/solutions/gpu-computing.html

类别

Help CenterFile Exchange 中查找有关 Get Started with GPU Coder 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by