MATLAB: Can I GEFORCE GTX 960M for deeplearning

deep learninggpu

Dear All,
When I check my NVIDIA control panel, it shows that my laptop has GEFORCE GTX 960M GPU, I am not sure I can use it during deep learning or not?
if yes, I only need to set the 'execution environment' to GPU in training option, right?or is there any other setting that I should do?
Reagrds

Best Answer

Considering CUDA and cuDNN installed. To access and get information about GPU, run the following command:
GpuDevice
GPU, multi-GPU, and parallel options require Parallel Computing Toolbox. To use a GPU for deep learning, you must also have a CUDA® enabled NVIDIA® GPU with compute capability 3.0 or higher.
To use GPU for deep learning, set 'ExecutionEnvironment' in ‘trainingOptions’ as 'gpu'. By default, ‘trainingOptions’ take GPU by default.
Hope this helps.
Related Question