We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d5f25c commit 8fcbc57Copy full SHA for 8fcbc57
cmd/nodediscovery/main.go
@@ -6,6 +6,7 @@ import (
6
"flag"
7
"fmt"
8
"os"
9
+ "strings"
10
11
"github.com/NVIDIA/go-nvml/pkg/nvml"
12
tfv1 "github.com/NexusGPU/tensor-fusion-operator/api/v1"
@@ -88,7 +89,7 @@ func main() {
88
89
ctrl.Log.Error(errors.New(nvml.ErrorString(ret)), "unable to get uuid of device", "index", i)
90
os.Exit(1)
91
}
-
92
+ uuid = strings.ToLower(uuid)
93
deviceName, ret := device.GetName()
94
if ret != nvml.SUCCESS {
95
ctrl.Log.Error(errors.New(nvml.ErrorString(ret)), "unable to get name of device", "index", i)
0 commit comments