2019-02-28 19:32:08 -05:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
2019-03-26 03:56:17 -04:00
|
|
|
"os"
|
2019-02-28 19:32:08 -05:00
|
|
|
"os/exec"
|
|
|
|
"strconv"
|
2019-03-26 03:56:17 -04:00
|
|
|
"strings"
|
2019-02-28 19:32:08 -05:00
|
|
|
|
|
|
|
"github.com/containerd/containerd/contrib/nvidia"
|
|
|
|
"github.com/docker/docker/pkg/capabilities"
|
2019-08-05 10:37:47 -04:00
|
|
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
2019-02-28 19:32:08 -05:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TODO: nvidia should not be hard-coded, and should be a device plugin instead on the daemon object.
|
|
|
|
// TODO: add list of device capabilities in daemon/node info
|
|
|
|
|
|
|
|
var errConflictCountDeviceIDs = errors.New("cannot set both Count and DeviceIDs on device request")
|
|
|
|
|
2019-03-26 03:56:17 -04:00
|
|
|
const nvidiaHook = "nvidia-container-runtime-hook"
|
2019-02-28 19:32:08 -05:00
|
|
|
|
|
|
|
// These are NVIDIA-specific capabilities stolen from github.com/containerd/containerd/contrib/nvidia.allCaps
|
|
|
|
var allNvidiaCaps = map[nvidia.Capability]struct{}{
|
|
|
|
nvidia.Compute: {},
|
|
|
|
nvidia.Compat32: {},
|
|
|
|
nvidia.Graphics: {},
|
|
|
|
nvidia.Utility: {},
|
|
|
|
nvidia.Video: {},
|
|
|
|
nvidia.Display: {},
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2019-03-26 03:56:17 -04:00
|
|
|
if _, err := exec.LookPath(nvidiaHook); err != nil {
|
2019-02-28 19:32:08 -05:00
|
|
|
// do not register Nvidia driver if helper binary is not present.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
capset := capabilities.Set{"gpu": struct{}{}, "nvidia": struct{}{}}
|
|
|
|
nvidiaDriver := &deviceDriver{
|
|
|
|
capset: capset,
|
|
|
|
updateSpec: setNvidiaGPUs,
|
|
|
|
}
|
2019-03-25 18:40:19 -04:00
|
|
|
for c := range allNvidiaCaps {
|
|
|
|
nvidiaDriver.capset[string(c)] = struct{}{}
|
2019-02-28 19:32:08 -05:00
|
|
|
}
|
|
|
|
registerDeviceDriver("nvidia", nvidiaDriver)
|
|
|
|
}
|
|
|
|
|
|
|
|
func setNvidiaGPUs(s *specs.Spec, dev *deviceInstance) error {
|
|
|
|
req := dev.req
|
|
|
|
if req.Count != 0 && len(req.DeviceIDs) > 0 {
|
|
|
|
return errConflictCountDeviceIDs
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(req.DeviceIDs) > 0 {
|
2019-03-26 03:56:17 -04:00
|
|
|
s.Process.Env = append(s.Process.Env, "NVIDIA_VISIBLE_DEVICES="+strings.Join(req.DeviceIDs, ","))
|
2019-02-28 19:32:08 -05:00
|
|
|
} else if req.Count > 0 {
|
2019-03-26 03:56:17 -04:00
|
|
|
s.Process.Env = append(s.Process.Env, "NVIDIA_VISIBLE_DEVICES="+countToDevices(req.Count))
|
|
|
|
} else if req.Count < 0 {
|
|
|
|
s.Process.Env = append(s.Process.Env, "NVIDIA_VISIBLE_DEVICES=all")
|
2019-02-28 19:32:08 -05:00
|
|
|
}
|
|
|
|
|
2019-03-26 03:56:17 -04:00
|
|
|
var nvidiaCaps []string
|
2019-02-28 19:32:08 -05:00
|
|
|
// req.Capabilities contains device capabilities, some but not all are NVIDIA driver capabilities.
|
|
|
|
for _, c := range dev.selectedCaps {
|
|
|
|
nvcap := nvidia.Capability(c)
|
|
|
|
if _, isNvidiaCap := allNvidiaCaps[nvcap]; isNvidiaCap {
|
2019-03-26 03:56:17 -04:00
|
|
|
nvidiaCaps = append(nvidiaCaps, c)
|
2019-02-28 19:32:08 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
// TODO: nvidia.WithRequiredCUDAVersion
|
|
|
|
// for now we let the prestart hook verify cuda versions but errors are not pretty.
|
|
|
|
}
|
|
|
|
|
|
|
|
if nvidiaCaps != nil {
|
2019-03-26 03:56:17 -04:00
|
|
|
s.Process.Env = append(s.Process.Env, "NVIDIA_DRIVER_CAPABILITIES="+strings.Join(nvidiaCaps, ","))
|
|
|
|
}
|
|
|
|
|
|
|
|
path, err := exec.LookPath(nvidiaHook)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if s.Hooks == nil {
|
|
|
|
s.Hooks = &specs.Hooks{}
|
2019-02-28 19:32:08 -05:00
|
|
|
}
|
2019-03-26 03:56:17 -04:00
|
|
|
s.Hooks.Prestart = append(s.Hooks.Prestart, specs.Hook{
|
|
|
|
Path: path,
|
|
|
|
Args: []string{
|
|
|
|
nvidiaHook,
|
|
|
|
"prestart",
|
|
|
|
},
|
|
|
|
Env: os.Environ(),
|
|
|
|
})
|
2019-02-28 19:32:08 -05:00
|
|
|
|
2019-03-26 03:56:17 -04:00
|
|
|
return nil
|
2019-02-28 19:32:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// countToDevices returns the list 0, 1, ... count-1 of deviceIDs.
|
2019-03-26 03:56:17 -04:00
|
|
|
func countToDevices(count int) string {
|
|
|
|
devices := make([]string, count)
|
2019-02-28 19:32:08 -05:00
|
|
|
for i := range devices {
|
2019-03-26 03:56:17 -04:00
|
|
|
devices[i] = strconv.Itoa(i)
|
2019-02-28 19:32:08 -05:00
|
|
|
}
|
2019-03-26 03:56:17 -04:00
|
|
|
return strings.Join(devices, ",")
|
2019-02-28 19:32:08 -05:00
|
|
|
}
|