Merge pull request #379 from NVIDIA/exists-fallback

[R550 driver support] add fallback logic to device.Exists(name)
This commit is contained in:
Evan Lezar
2024-02-27 22:25:33 +02:00
committed by GitHub

View File

@@ -67,7 +67,7 @@ func (d devices) Count() int {
// Exists checks if a Device with a given name exists or not
func (d devices) Exists(name Name) bool {
_, exists := d[name]
_, exists := d.Get(name)
return exists
}