How to run my CUDA application on ATI or Intel card in software mode?

后端 未结 2 1709
悲&欢浪女
悲&欢浪女 2021-01-23 16:15

I want to be able to run my software in GPU mode on NVidia and in CPU (sofware) mode on ATI or Intel. How can I achieve this?

It\'s the same like PhysX works.

C

2条回答
  •  一生所求
    2021-01-23 16:40

    There are now initiatives to run CUDA on non-NVidia hardware such as by Otoy : http://venturebeat.com/2016/03/09/otoy-breakthrough-lets-game-developers-run-the-best-graphics-software-across-platforms/

    Essentially it translates CUDA calls to other backends (Metal, Vilkan, DirectX, OpenGL) to allow applications written for CUDA to run on a range of platforms. It's not known whether it will be possible to simply put their nvcuda.dll in the right location and thereby instantly get your app working, or if the developer would have to change something before deploying the software.

    So far there is no public release afaik.

提交回复
热议问题