Not using GPU for trainNetwork?

조회 수: 78 (최근 30일)
Reid Demass
Reid Demass 2022년 3월 22일
답변: Joss Knight 2022년 3월 24일
Hello,
I am looking to train a network using the trainNetwork command. I have set up the network, options, and data. I have installed the Parallel Processing Toolbox and my GPU is NVIDIA QuadroM1000M with compute capability 5.0 (which should be enough compute capability per https://www.mathworks.com/help/parallel-computing/gpu-support-by-release.html). It was suggested in the Matlab Deep Learning Onramp that the GPU would be automatically used if I had the processing toolbox and my GPU was compatible. However, when running trainNetwork() it does not use the GPU. Using code gpuDeviceTable returns nothing. Does this suggest my GPU actually is not compatible or is there some other way I can access it?
Thank you

채택된 답변

Joss Knight
Joss Knight 2022년 3월 24일
Nearly always in cases like this you just need to install your GPU drivers from NVIDIA: https://www.nvidia.co.uk/Download/driverResults.aspx/187247/en-uk
However with laptops there are sometimes also issues with ensuring that your system is allowing MATLAB to access the GPU, because power limitations often restrict GPU use to particular applications. You can try opening the NVIDIA Control Panel and making sure MATLAB is enabled under the "Manage 3D Settings -> Program Settings". Your system may have slightly different ways of managing this.
After you've done this run gpuDevice and hopefully your device will appear.
I should warn you that often the performance results on laptop GPUs (especially old ones like yours) are not that great compared to the CPU.

추가 답변 (1개)

yanqi liu
yanqi liu 2022년 3월 23일
yes,sir,may be use
>> gpuDevice
to check your ExecutionEnvironment
or in train option,set
'ExecutionEnvironment','gpu'
'ExecutionEnvironment','cpu'
to make the device type when training

카테고리

Help CenterFile Exchange에서 Parallel and Cloud에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by