Description
CUDA images come in three flavors and are available through the NVIDIA public hub repository.
-
base
: starting from CUDA 9.0, contains the bare minimum (libcudart) to deploy a pre-built CUDA application.
Use this image if you want to manually select which CUDA packages you want to install. -
runtime
: extends thebase
image by adding all the shared libraries from the CUDA toolkit.
Use this image if you have a pre-built application using multiple CUDA libraries. -
devel
: extends theruntime
image by adding the compiler toolchain, the debugging tools, the headers and the static libraries.
Use this image to compile a CUDA application from sources.
网友评论