Frequently Asked Questions

Table of Contents

General Questions

How do I install the NVIDIA driver?

The recommended way is to use your package manager and install the cuda-drivers package (or equivalent). When no packages are available, you should use an official “runfile”.

Alternatively, and as a technology preview, the NVIDIA driver can be deployed through a container.

The following signatures were invalid: EXPKEYSIG

Make sure you fetched the latest GPG key from the repositories. Refer to the repository instructions for your distribution.

Container Runtime

Do you support OpenCL?

Yes, we now provide images on DockerHub.

Do you support OpenGL?

Yes, EGL is supported for headless rendering, but this is a beta feature. There is no plan to support GLX in the near future.

Images are available at nvidia/opengl. If you need CUDA+OpenGL, use nvidia/cudagl. If you are a NGC subscriber and require GLX for your workflow, please fill out a feature request for support consideration.

Do you support Vulkan?

No, Vulkan is not supported at the moment. However we plan on supporting this feature in the future.

Do you support CUDA Multi Process Service (a.k.a. MPS)?

No, MPS is not supported at the moment. However we plan on supporting this feature in the future, and this issue will be updated accordingly.

Do you support running a GPU-accelerated X server inside the container?

No, running a X server inside the container is not supported at the moment and there is no plan to support it in the near future (see also OpenGL support).

Do you support sharing a GPU between multiple containers?

Yes. This is no different than sharing a GPU between multiple processes outside of containers. Scheduling and compute preemption vary from one GPU architecture to another (e.g. CTA-level, instruction-level).

Do you support limiting the GPU resources (e.g. bandwidth, memory, CUDA cores) taken by a container?

No. Your only option is to set the GPU clocks at a lower frequency before starting the container.

Do you support enforcing exclusive access for a GPU?

This is not currently supported but you can enforce it:

  • At the container orchestration layer (Kubernetes, Swarm, Mesos, Slurm…) since this is tied to resource allocation.

  • At the driver level by setting the compute mode of the GPU.

Does it have a performance impact on my GPU workload?

No, usually the impact should be in the order of less than 1% and hardly noticeable. However be aware of the following (list non exhaustive):

  • GPU topology and CPU affinity You can query it using nvidia-smi topo and use Docker CPU sets to pin CPU cores.

  • Compiling your code for your device architectureYour container might be compiled for the wrong achitecture and could fallback to the JIT compilation of PTX code (refer to the official documentation for more information). Note that you can express these constraints in your container image.

  • Container I/O overheadBy default Docker containers rely on an overlay filesystem and bridged/NATed networking. Depending on your workload this can be a bottleneck, we recommend using Docker volumes and experiment with different Docker networks.

  • Linux kernel accounting and security overheadIn rare cases, you may notice than some kernel subsystems induce overhead. This will likely depend on your kernel version and can include things like: cgroups, LSMs, seccomp filters, netfilter…

unsatisfied condition: cuda >= X.Y

Your CUDA container image is incompatible with your driver version. Upgrade your driver or choose an image tag which is supported by your driver (see also CUDA requirements)

I have multiple GPU devices, how can I isolate them between my containers?

GPU isolation is achieved through the CLI option --gpus. Devices can be referenced by index (following the PCI bus order) or by UUID.

e.g:

# If you have 4 GPUs, to isolate GPUs 3 and 4 (/dev/nvidia2 and /dev/nvidia3)
$ docker run --gpus device=2,3 nvidia/cuda:9.0-base nvidia-smi

Why is nvidia-smi inside the container not listing the running processes?

nvidia-smi and NVML are not compatible with PID namespaces. We recommend monitoring your processes on the host or inside a container using --pid=host.

The default behavior is an AND gate between host PID and GPU access:

Host PID

GPU Visible

Process Visible

Yes

Yes

Yes

No

Yes

No

Yes

No

No

No

No

No

Why is my container slow to start?

You probably need to enable persistence mode to keep the kernel modules loaded and the GPUs initialized. The recommended way is to start the nvidia-persistenced daemon on your host.

Can I use it with Docker-in-Docker (a.k.a. DinD)?

If you are running a Docker client inside a container: simply mount the Docker socket and proceed as usual. If you are running a Docker daemon inside a container: this case is untested.

Why is my application inside the container slow to initialize?

Your application was probably not compiled for the compute architecture of your GPU and thus the driver must JIT all the CUDA kernels from PTX. In addition to a slow start, the JIT compiler might generate less efficient code than directly targeting your compute architecture (see also performance impact).

Is the JIT cache shared between containers?

No. You would have to handle this manually with Docker volumes.

What is causing the CUDA invalid device function error?

Your application was not compiled for the compute architecture of your GPU, and no PTX was generated during build time. Thus, JIT compiling is impossible (see also slow to initialize).

Why do I get Insufficient Permissions for some nvidia-smi operations?

Some device management operations require extra privileges (e.g. setting clocks frequency). After learning about the security implications of doing so, you can add extra capabilities to your container using --cap-add on the command-line (--cap-add=SYS_ADMIN will allow most operations).

Can I profile and debug my GPU code inside a container?

Yes but as stated above, you might need extra privileges, meaning extra capabilities like CAP_SYS_PTRACE or tweak the seccomp profile used by Docker to allow certain syscalls.

Container images

What do I have to install in my container images?

Library dependencies vary from one application to another. In order to make things easier for developers, we provide a set of official images to base your images on.

Do you provide official Docker images?

Yes, container images are available on Docker Hub and on the NGC registry.

Can I use the GPU during a container build (i.e. docker build)?

Yes, as long as you configure your Docker daemon to use the nvidia runtime as the default, you will be able to have build-time GPU support. However, be aware that this can render your images non-portable (see also invalid device function).

Are my container images built for version 1.0 compatible with 2.0 and 3.0?

Yes, for most cases. The main difference being that we don’t mount all driver libraries by default in 2.0 and 3.0. You might need to set the CUDA_DRIVER_CAPABILITIES environment variable in your Dockerfile or when starting the container. Check the documentation of nvidia-container-runtime.

The official CUDA images are too big, what do I do?

The devel image tags are large since the CUDA toolkit ships with many libraries, a compiler and various command-line tools. As a general rule of thumb, you shouldn’t ship your application with its build-time dependencies. We recommend to use multi-stage builds for this purpose. Your final container image should use our runtime or base images. As of CUDA 9.0 we now ship a base image tag which bundles the strict minimum of dependencies.

Why aren’t CUDA 10 images working with nvidia-docker v1?

Starting from CUDA 10.0, the CUDA images require using nvidia-docker v2 and won’t trigger the GPU enablement path from nvidia-docker v1.

Ecosystem enablement

Do you support Docker Swarm mode?

Not currently, support for Swarmkit is still being worked on in the upstream Moby project. You can track our progress on gitub here.

Do you support Docker Compose?

Yes, use Compose format 2.3 and add runtime: nvidia to your GPU service. Docker Compose must be version 1.19.0 or higher. You can find an example here. Note that you’ll have to install the old nvidia-docker2 packages.

Do you support Kubernetes?

Since Kubernetes 1.8, the recommended way is to use our official device plugin.