We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24e4052 commit fdb3f60Copy full SHA for fdb3f60
pkg/nvlib/device/device.go
@@ -219,6 +219,9 @@ func (d *device) IsFabricAttached() (bool, error) {
219
if ret != nvml.SUCCESS {
220
return false, fmt.Errorf("error getting GPU Fabric Info: %v", ret)
221
}
222
+ if info.ClusterUuid == [16]uint8{} || info.CliqueId == 0 {
223
+ return false, nil
224
+ }
225
if info.State != nvml.GPU_FABRIC_STATE_COMPLETED {
226
return false, nil
227
@@ -237,6 +240,9 @@ func (d *device) IsFabricAttached() (bool, error) {
237
240
238
241
239
242
243
244
245
246
247
248
0 commit comments