@@ -416,7 +416,7 @@ uct_cuda_ipc_md_check_fabric_info(uct_cuda_ipc_md_t *md,
416416 static int mnnvl_supported = 0 ;
417417#else
418418 static int mnnvl_supported = -1 ;
419- nvmlGpuFabricInfoV_t fabric_info ;
419+ nvmlGpuFabricInfo_t fabric_info ;
420420 nvmlDevice_t device ;
421421 ucs_status_t status ;
422422 char buf [64 ];
@@ -436,19 +436,17 @@ uct_cuda_ipc_md_check_fabric_info(uct_cuda_ipc_md_t *md,
436436 goto out_not_supported ;
437437 }
438438
439- fabric_info .version = nvmlGpuFabricInfo_v2 ;
440- status = UCT_NVML_FUNC_LOG_ERR (
441- nvmlDeviceGetGpuFabricInfoV (device , & fabric_info ));
439+ status = UCT_NVML_FUNC_LOG_ERR (
440+ nvmlDeviceGetGpuFabricInfo (device , & fabric_info ));
442441 if (status != UCS_OK ) {
443442 goto out_not_supported ;
444443 }
445444
446- ucs_debug ("fabric_info: healthmask=%u state=%u status=%u clique=%u uuid=%s" ,
447- fabric_info .healthMask , fabric_info .state , fabric_info .status ,
448- fabric_info .cliqueId ,
449- ucs_str_dump_hex (
450- fabric_info .clusterUuid , NVML_GPU_FABRIC_UUID_LEN , buf ,
451- sizeof (buf ), SIZE_MAX ));
445+ ucs_debug ("fabric_info: state=%u status=%u uuid=%s" , fabric_info .state ,
446+ fabric_info .status ,
447+ ucs_str_dump_hex (fabric_info .clusterUuid ,
448+ NVML_GPU_FABRIC_UUID_LEN , buf , sizeof (buf ),
449+ SIZE_MAX ));
452450
453451 if ((fabric_info .state == NVML_GPU_FABRIC_STATE_COMPLETED ) &&
454452 (fabric_info .status == NVML_SUCCESS )) {
0 commit comments