Running Cuda on CPU only

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

MoAndrew

New Member
Dec 29, 2020
1
0
1
Hello,

I am quite new to cuda, and I have a tried to run a deep-learning project written in python, but I get this error:
RuntimeError: Found no NVIDIA driver on your system. Please check that you have an NVIDIA GPU and installed a driver from Download Drivers | NVIDIA.

The line which causes the error is this one: model[0] = model[0].cuda()
I have no NVIDIA driver on my computer, and I tried running this with --gpu_ids -1, for it to run only on CPU, but I still get the error. Is there any way I can run it only on CPU or cuda always requiers a GPU ?

Thank you.