mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 08:18:32 +00:00
Merge pull request #801 from elezar/fix-legacy-nvidia-imex-channels
Fix NVIDIA_IMEX_CHANNELS handling on legacy images
This commit is contained in:
commit
70ac1e2d28
@ -292,7 +292,11 @@ func (i CUDA) CDIDevicesFromMounts() []string {
|
|||||||
|
|
||||||
// ImexChannelsFromEnvVar returns the list of IMEX channels requested for the image.
|
// ImexChannelsFromEnvVar returns the list of IMEX channels requested for the image.
|
||||||
func (i CUDA) ImexChannelsFromEnvVar() []string {
|
func (i CUDA) ImexChannelsFromEnvVar() []string {
|
||||||
return i.DevicesFromEnvvars(EnvVarNvidiaImexChannels).List()
|
imexChannels := i.DevicesFromEnvvars(EnvVarNvidiaImexChannels).List()
|
||||||
|
if len(imexChannels) == 1 && imexChannels[0] == "all" {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return imexChannels
|
||||||
}
|
}
|
||||||
|
|
||||||
// ImexChannelsFromMounts returns the list of IMEX channels requested for the image.
|
// ImexChannelsFromMounts returns the list of IMEX channels requested for the image.
|
||||||
|
@ -203,6 +203,37 @@ func TestGetVisibleDevicesFromMounts(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestImexChannelsFromEnvVar(t *testing.T) {
|
||||||
|
testCases := []struct {
|
||||||
|
description string
|
||||||
|
env []string
|
||||||
|
expected []string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
description: "no imex channels specified",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: "imex channel specified",
|
||||||
|
env: []string{
|
||||||
|
"NVIDIA_IMEX_CHANNELS=3,4",
|
||||||
|
},
|
||||||
|
expected: []string{"3", "4"},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, tc := range testCases {
|
||||||
|
for id, baseEnvvars := range map[string][]string{"": nil, "legacy": {"CUDA_VERSION=1.2.3"}} {
|
||||||
|
t.Run(tc.description+id, func(t *testing.T) {
|
||||||
|
i, err := NewCUDAImageFromEnv(append(baseEnvvars, tc.env...))
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
channels := i.ImexChannelsFromEnvVar()
|
||||||
|
require.EqualValues(t, tc.expected, channels)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func makeTestMounts(paths ...string) []specs.Mount {
|
func makeTestMounts(paths ...string) []specs.Mount {
|
||||||
var mounts []specs.Mount
|
var mounts []specs.Mount
|
||||||
for _, path := range paths {
|
for _, path := range paths {
|
||||||
|
Loading…
Reference in New Issue
Block a user