What's the proper way to handle GPU related matlab functions in a compiled app that might run on a computer without a supported GPU
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Andrew Diamond
am 21 Jul. 2021
Kommentiert: Walter Roberson
am 21 Jul. 2021
Do I just somehow test and if all those statments declarations out or what or do functions like gpuArray do nothing when run on a computer without a supported GPU
0 Kommentare
Akzeptierte Antwort
Edric Ellis
am 21 Jul. 2021
You can use canUseGpu to check if a GPU is available. If one is not, then your code needs to not create any gpuArray data.
2 Kommentare
Walter Roberson
am 21 Jul. 2021
I think in a situation like that, I would probably use a little wrapper function to do the allocations.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu GPU Computing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!