pytorch / ELF

ELF: a platform for game research with AlphaGoZero/AlphaZero reimplementation
Other
3.37k stars 566 forks source link

How can I run in my GPU which is too old not support CuDNN #99

Closed fantianwen closed 6 years ago

fantianwen commented 6 years ago

I can make the project. But when running a model, I got :

 Found GPU0 GeForce GTX 550 Ti which is of cuda capability 2.1.
    PyTorch no longer supports this GPU because it is too old.

and I continue with

RuntimeError: CuDNN error: CUDNN_STATUS_ARCH_MISMATCH

I've searched by google, found my GPU (GTX 550 Ti) is too old and do not support CuDNN, So How can I run in my PC by this old GPU,Thank you very much!

qucheng commented 6 years ago

Unfortunately it is not supported right now. You can run CPU only version by setting --gpu to -1

fantianwen commented 6 years ago

Ok,Thank you very much for your reply.