Clear Filters
Clear Filters

GPU and SSH

3 views (last 30 days)
Daniel Shub
Daniel Shub on 15 May 2012
I just got a new machine with an NVIDIA Quadro 4000 GPU and thought I would give GPU processing a try. I have installed Arch Linux with the proprietary NVIDIA drivers and CUDA packages and MATLAB R2011a. If I locally log into the machine and run
gpuDevice
everything looks good. I then tried to remotely log into the machine. I can log remotely with ssh -X, but I cannot get MATLAB to accept keyboard input. If I log in ssh -Y I can get the keyboard to work. In both cases
gpuDevice
fails with:
??? Error using ==> feval
No device supporting CUDA was found.
Error in ==> /usr/local/matlab/R2011a/toolbox/distcomp/gpu/+parallel/+internal/+gpu/currentDeviceIndex.p>currentDeviceIndex at 7
Error in ==> /usr/local/matlab/R2011a/toolbox/distcomp/gpu/+parallel/+internal/+gpu/deviceProperties.p>deviceProperties at 8
Error in ==> GPUDevice.GPUDevice>GPUDevice.current at 34
[props, E] = parallel.internal.gpu.deviceProperties();
Error in ==> gpuDevice at 18
dev = parallel.gpu.GPUDevice.current();
Given that it doesn't work, I see that maybe I need a Tesla and not a Quadro GPU. Anyone know if I bought the wrong GPU or if it is something else.
EDIT Based on Thomas's answer I can now report that
gpuDevice
works if ssh into the machine and then launch MATLAB as root.

Accepted Answer

Daniel Shub
Daniel Shub on 15 May 2012
COMPUTE=:0
Such an easy answer. Apparently you need to set the COMPUTE environment variable.

More Answers (1)

Thomas
Thomas on 15 May 2012
Quadro 4000 has a compute capability of 2.0 which is more than enough for MATLAB.
Your CUDA drivers do not seem to have loaded correctly.
Can you run the following command in terminal when you ssh -X into the remote machine..
deviceQuery (this gives the status of the device)
If this fails , your CUDA installation was not correct or the drivers are not loading, since it works when you log on locally..
nvidia-smi -a
  4 Comments
Thomas
Thomas on 15 May 2012
what flavor of linux are you on? the above file references are for Ubuntu..
Daniel Shub
Daniel Shub on 15 May 2012
I found a solution, but thanks for this. I was trying not to run X on the new machine, so I didn't run nvidia-settings and I don't have a nvidia-settings-rc. My guess is if I did, that that would have set the COMPUTE environment variable.

Sign in to comment.

Categories

Find more on Get Started with GPU Coder in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!