2023-02-16 15:29:53 +00:00
|
|
|
/**
|
|
|
|
# Copyright (c) NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
package nvcdi
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-12-04 20:57:12 +00:00
|
|
|
"strconv"
|
2023-02-16 15:29:53 +00:00
|
|
|
|
2023-11-15 20:36:23 +00:00
|
|
|
"github.com/NVIDIA/go-nvlib/pkg/nvlib/device"
|
|
|
|
"github.com/NVIDIA/go-nvlib/pkg/nvml"
|
2023-11-01 11:40:51 +00:00
|
|
|
"tags.cncf.io/container-device-interface/pkg/cdi"
|
|
|
|
"tags.cncf.io/container-device-interface/specs-go"
|
2023-12-01 01:10:10 +00:00
|
|
|
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/edits"
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/pkg/nvcdi/spec"
|
2023-02-16 15:29:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type nvmllib nvcdilib
|
|
|
|
|
|
|
|
var _ Interface = (*nvmllib)(nil)
|
|
|
|
|
2023-02-20 12:29:52 +00:00
|
|
|
// GetSpec should not be called for nvmllib
|
|
|
|
func (l *nvmllib) GetSpec() (spec.Interface, error) {
|
|
|
|
return nil, fmt.Errorf("Unexpected call to nvmllib.GetSpec()")
|
|
|
|
}
|
|
|
|
|
2023-02-16 15:29:53 +00:00
|
|
|
// GetAllDeviceSpecs returns the device specs for all available devices.
|
|
|
|
func (l *nvmllib) GetAllDeviceSpecs() ([]specs.Device, error) {
|
|
|
|
var deviceSpecs []specs.Device
|
|
|
|
|
2023-03-15 08:12:44 +00:00
|
|
|
if r := l.nvmllib.Init(); r != nvml.SUCCESS {
|
2023-08-25 14:14:06 +00:00
|
|
|
return nil, fmt.Errorf("failed to initialize NVML: %v", r)
|
2023-03-15 08:12:44 +00:00
|
|
|
}
|
2023-08-25 14:48:11 +00:00
|
|
|
defer func() {
|
|
|
|
if r := l.nvmllib.Shutdown(); r != nvml.SUCCESS {
|
|
|
|
l.logger.Warningf("failed to shutdown NVML: %v", r)
|
|
|
|
}
|
|
|
|
}()
|
2023-03-15 08:12:44 +00:00
|
|
|
|
2023-02-16 15:29:53 +00:00
|
|
|
gpuDeviceSpecs, err := l.getGPUDeviceSpecs()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
deviceSpecs = append(deviceSpecs, gpuDeviceSpecs...)
|
|
|
|
|
|
|
|
migDeviceSpecs, err := l.getMigDeviceSpecs()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
deviceSpecs = append(deviceSpecs, migDeviceSpecs...)
|
|
|
|
|
|
|
|
return deviceSpecs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCommonEdits generates a CDI specification that can be used for ANY devices
|
|
|
|
func (l *nvmllib) GetCommonEdits() (*cdi.ContainerEdits, error) {
|
2023-11-14 15:57:37 +00:00
|
|
|
common, err := l.newCommonNVMLDiscoverer()
|
2023-02-16 15:29:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to create discoverer for common entities: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return edits.FromDiscoverer(common)
|
|
|
|
}
|
|
|
|
|
2023-12-04 20:57:12 +00:00
|
|
|
// GetDeviceSpecsByID returns the CDI device specs for the GPU(s) represented by
|
|
|
|
// the provided identifiers, where an identifier is an index or UUID of a valid
|
|
|
|
// GPU device.
|
|
|
|
// TODO: support identifiers that correspond to MIG devices
|
|
|
|
func (l *nvmllib) GetDeviceSpecsByID(identifiers ...string) ([]specs.Device, error) {
|
|
|
|
for _, id := range identifiers {
|
|
|
|
if id == "all" {
|
|
|
|
return l.GetAllDeviceSpecs()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var deviceSpecs []specs.Device
|
|
|
|
|
|
|
|
if r := l.nvmllib.Init(); r != nvml.SUCCESS {
|
|
|
|
return nil, fmt.Errorf("failed to initialize NVML: %w", r)
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if r := l.nvmllib.Shutdown(); r != nvml.SUCCESS {
|
|
|
|
l.logger.Warningf("failed to shutdown NVML: %w", r)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
nvmlDevices, err := l.getNVMLDevicesByID(identifiers...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to get NVML device handles: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, nvmlDevice := range nvmlDevices {
|
|
|
|
nvlibDevice, err := l.devicelib.NewDevice(nvmlDevice)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to construct device: %w", err)
|
|
|
|
}
|
|
|
|
deviceEdits, err := l.GetGPUDeviceEdits(nvlibDevice)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to get CDI device edits for identifier %q: %w", identifiers[i], err)
|
|
|
|
}
|
|
|
|
deviceSpec := specs.Device{
|
|
|
|
Name: identifiers[i],
|
|
|
|
ContainerEdits: *deviceEdits.ContainerEdits,
|
|
|
|
}
|
|
|
|
deviceSpecs = append(deviceSpecs, deviceSpec)
|
|
|
|
}
|
|
|
|
|
|
|
|
return deviceSpecs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: move this to go-nvlib?
|
|
|
|
func (l *nvmllib) getNVMLDevicesByID(identifiers ...string) ([]nvml.Device, error) {
|
|
|
|
devices := []nvml.Device{}
|
|
|
|
for _, id := range identifiers {
|
|
|
|
if dev, err := l.nvmllib.DeviceGetHandleByUUID(id); err == nvml.SUCCESS {
|
|
|
|
devices = append(devices, dev)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// TODO: check for a MIG device index
|
|
|
|
if idx, err := strconv.Atoi(id); err == nil {
|
|
|
|
if dev, err := l.nvmllib.DeviceGetHandleByIndex(idx); err == nvml.SUCCESS {
|
|
|
|
devices = append(devices, dev)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("failed to get NVML device handle for identifier %q", id)
|
|
|
|
}
|
|
|
|
return devices, nil
|
|
|
|
}
|
|
|
|
|
2023-02-16 15:29:53 +00:00
|
|
|
func (l *nvmllib) getGPUDeviceSpecs() ([]specs.Device, error) {
|
|
|
|
var deviceSpecs []specs.Device
|
|
|
|
err := l.devicelib.VisitDevices(func(i int, d device.Device) error {
|
|
|
|
deviceSpec, err := l.GetGPUDeviceSpecs(i, d)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
deviceSpecs = append(deviceSpecs, *deviceSpec)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to generate CDI edits for GPU devices: %v", err)
|
|
|
|
}
|
|
|
|
return deviceSpecs, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *nvmllib) getMigDeviceSpecs() ([]specs.Device, error) {
|
|
|
|
var deviceSpecs []specs.Device
|
|
|
|
err := l.devicelib.VisitMigDevices(func(i int, d device.Device, j int, mig device.MigDevice) error {
|
|
|
|
deviceSpec, err := l.GetMIGDeviceSpecs(i, d, j, mig)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
deviceSpecs = append(deviceSpecs, *deviceSpec)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to generate CDI edits for GPU devices: %v", err)
|
|
|
|
}
|
|
|
|
return deviceSpecs, err
|
|
|
|
}
|