2023-02-06 17:53:24 +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"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/discover"
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/dxcore"
|
2023-03-22 12:27:43 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/logger"
|
2023-02-06 17:53:24 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup"
|
|
|
|
)
|
|
|
|
|
|
|
|
var requiredDriverStoreFiles = []string{
|
|
|
|
"libcuda.so.1.1", /* Core library for cuda support */
|
|
|
|
"libcuda_loader.so", /* Core library for cuda support on WSL */
|
|
|
|
"libnvidia-ptxjitcompiler.so.1", /* Core library for PTX Jit support */
|
|
|
|
"libnvidia-ml.so.1", /* Core library for nvml */
|
|
|
|
"libnvidia-ml_loader.so", /* Core library for nvml on WSL */
|
|
|
|
"libdxcore.so", /* Core library for dxcore support */
|
|
|
|
"nvcubins.bin", /* Binary containing GPU code for cuda */
|
|
|
|
"nvidia-smi", /* nvidia-smi binary*/
|
|
|
|
}
|
|
|
|
|
|
|
|
// newWSLDriverDiscoverer returns a Discoverer for WSL2 drivers.
|
2023-03-22 12:27:43 +00:00
|
|
|
func newWSLDriverDiscoverer(logger logger.Interface, driverRoot string, nvidiaCTKPath string) (discover.Discover, error) {
|
2023-02-06 17:53:24 +00:00
|
|
|
err := dxcore.Init()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to initialize dxcore: %v", err)
|
|
|
|
}
|
|
|
|
defer dxcore.Shutdown()
|
|
|
|
|
|
|
|
driverStorePaths := dxcore.GetDriverStorePaths()
|
|
|
|
if len(driverStorePaths) == 0 {
|
|
|
|
return nil, fmt.Errorf("no driver store paths found")
|
|
|
|
}
|
|
|
|
logger.Infof("Using WSL driver store paths: %v", driverStorePaths)
|
|
|
|
|
|
|
|
return newWSLDriverStoreDiscoverer(logger, driverRoot, nvidiaCTKPath, driverStorePaths)
|
|
|
|
}
|
|
|
|
|
|
|
|
// newWSLDriverStoreDiscoverer returns a Discoverer for WSL2 drivers in the driver store associated with a dxcore adapter.
|
2023-03-22 12:27:43 +00:00
|
|
|
func newWSLDriverStoreDiscoverer(logger logger.Interface, driverRoot string, nvidiaCTKPath string, driverStorePaths []string) (discover.Discover, error) {
|
2023-02-06 17:53:24 +00:00
|
|
|
var searchPaths []string
|
|
|
|
seen := make(map[string]bool)
|
|
|
|
for _, path := range driverStorePaths {
|
|
|
|
if seen[path] {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
searchPaths = append(searchPaths, path)
|
|
|
|
}
|
|
|
|
if len(searchPaths) > 1 {
|
|
|
|
logger.Warnf("Found multiple driver store paths: %v", searchPaths)
|
|
|
|
}
|
|
|
|
driverStorePath := searchPaths[0]
|
|
|
|
searchPaths = append(searchPaths, "/usr/lib/wsl/lib")
|
|
|
|
|
|
|
|
libraries := discover.NewMounts(
|
|
|
|
logger,
|
|
|
|
lookup.NewFileLocator(
|
|
|
|
lookup.WithLogger(logger),
|
|
|
|
lookup.WithSearchPaths(
|
|
|
|
searchPaths...,
|
|
|
|
),
|
|
|
|
lookup.WithCount(1),
|
|
|
|
),
|
|
|
|
driverRoot,
|
|
|
|
requiredDriverStoreFiles,
|
|
|
|
)
|
|
|
|
|
|
|
|
// On WSL2 the driver store location is used unchanged.
|
|
|
|
// For this reason we need to create a symlink from /usr/bin/nvidia-smi to the nvidia-smi binary in the driver store.
|
|
|
|
target := filepath.Join(driverStorePath, "nvidia-smi")
|
|
|
|
link := "/usr/bin/nvidia-smi"
|
|
|
|
links := []string{fmt.Sprintf("%s::%s", target, link)}
|
|
|
|
symlinkHook := discover.CreateCreateSymlinkHook(nvidiaCTKPath, links)
|
|
|
|
|
2023-05-10 12:49:59 +00:00
|
|
|
ldcacheHook, _ := discover.NewLDCacheUpdateHook(logger, libraries, nvidiaCTKPath)
|
2023-02-06 17:53:24 +00:00
|
|
|
|
|
|
|
d := discover.Merge(
|
|
|
|
libraries,
|
|
|
|
symlinkHook,
|
|
|
|
ldcacheHook,
|
|
|
|
)
|
|
|
|
|
|
|
|
return d, nil
|
|
|
|
}
|