mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 08:18:32 +00:00
[R550 driver support] add fallback logic to device.Exists(name)
Signed-off-by: Tariq Ibrahim <tibrahim@nvidia.com>
This commit is contained in:
parent
e64b723b71
commit
f80f4c485d
@ -67,7 +67,7 @@ func (d devices) Count() int {
|
|||||||
|
|
||||||
// Exists checks if a Device with a given name exists or not
|
// Exists checks if a Device with a given name exists or not
|
||||||
func (d devices) Exists(name Name) bool {
|
func (d devices) Exists(name Name) bool {
|
||||||
_, exists := d[name]
|
_, exists := d.Get(name)
|
||||||
return exists
|
return exists
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user