We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94240b4 + 311c577 commit e9b8903Copy full SHA for e9b8903
1 file changed
pkg/nvlib/device/device.go
@@ -222,6 +222,9 @@ func (d *device) IsFabricAttached() (bool, error) {
222
if info.State != nvml.GPU_FABRIC_STATE_COMPLETED {
223
return false, nil
224
}
225
+ if info.ClusterUuid == [16]uint8{} {
226
+ return false, nil
227
+ }
228
if nvml.Return(info.Status) != nvml.SUCCESS {
229
230
@@ -240,6 +243,9 @@ func (d *device) IsFabricAttached() (bool, error) {
240
243
241
244
242
245
246
247
248
249
250
251
0 commit comments