Reputation: 3699
I have just run the simpleMultiGPU
in a server with two K20m
GPUs installed. And then run the nvidia-smi
command to show the status of the GPUs. The result is as follows:
The problems are as follows:
device 1
is 99%.Any advice?
Upvotes: 3
Views: 4855
Reputation: 151849
There is no concept that says memory utilization must be the same when running apps on more than one GPU. Furthermore, memory utilization can vary at different points in the application, depending on the underlying activity (such as the point at which allocations are made) when the sampling of memory usage occurs.
The Volatile GPU usage of device 1 probably indicates that the application and/or nvidia-smi
is causing activity on device 1.
It's not clear why you refer to these as problems. You are monitoring activity on the device.
Upvotes: 4