Does MATLAB 2018b Support NVIDIA GeForce 2080 Ti RTX For Creating/T​raining/Im​plementing Deep Learning Neural Networks, And, If So, Then Which Version Of CUDA Should I Use?

6 ビュー (過去 30 日間)
Does MATLAB 2018b Support NVIDIA GeForce 2080 Ti RTX For Creating/Training/Implementing Deep Learning Neural Networks, And, If So, Then Which Version Of CUDA Should I Use?

回答 (2 件)

Walter Roberson
Walter Roberson 2019 年 1 月 14 日

Joss Knight
Joss Knight 2019 年 1 月 19 日
Yes, you can. Use the following workaround to avoid annoying warnings and errors:
warning off parallel:gpu:device:DeviceLibsNeedsRecompiling
try
gpuArray.eye(2)^2;
catch ME
end
try
nnet.internal.cnngpu.reluForward(1);
catch ME
end
You can put this in your startup.m, for instance.
It is a common misconception to think that you need to install a particular version of CUDA. The vast majority of users just need to get the most recent driver appropriate for their GPU.
  6 件のコメント
Walter Roberson
Walter Roberson 2019 年 1 月 20 日
Cool, I've never seen that page before!
AILEEN SENGUPTA
AILEEN SENGUPTA 2022 年 4 月 3 日
I am sorry this problem seems to still have an appearence in my code:
Error using DAGNetwork/classify (line 193)
Failed to initialize the cuDNN handle. Return code was CUDNN_STATUS_NOT_INITIALIZED.
Error in SeriesNetwork/classify (line 577)
[labels, scores] = this.UnderlyingDAGNetwork.classify(X, varargin{:});
Any help is appreciated.
Thanks,
Aileen

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGPU Computing についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by