From f12b070e14b7aaff3c19d8ef8796c12fe69118a0 Mon Sep 17 00:00:00 2001 From: "Pham, Gabriel" Date: Thu, 5 Jun 2025 17:50:56 -0500 Subject: [PATCH] [SWDEV-536184] Removed extra debug print statement (#447) Signed-off-by: gabrpham_amdeng Signed-off-by: Pham, Gabriel [ROCm/amdsmi commit: f0233eb66409eb08d263ef367acffdb2e0a52ef9] --- projects/amdsmi/rocm_smi/src/rocm_smi.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/amdsmi/rocm_smi/src/rocm_smi.cc b/projects/amdsmi/rocm_smi/src/rocm_smi.cc index 8b992537a3..8eceb66da9 100644 --- a/projects/amdsmi/rocm_smi/src/rocm_smi.cc +++ b/projects/amdsmi/rocm_smi/src/rocm_smi.cc @@ -4074,7 +4074,6 @@ rsmi_dev_memory_usage_get(uint32_t dv_ind, rsmi_memory_type_t mem_type, // Fallback to KFD reported memory if no VRAM or sysfs read fails if (mem_type == RSMI_MEM_TYPE_VRAM && (*used == 0 || ret != RSMI_STATUS_SUCCESS)) { - std::cout << "fell back to KFD node" << std::endl; GET_DEV_AND_KFDNODE_FROM_INDX uint64_t total = 0; ret = get_dev_value_int(amd::smi::kDevMemTotVRAM, dv_ind, &total);