From 8e1f5f50cd97827e99dd18aef9de70ae37bb4a7b Mon Sep 17 00:00:00 2001 From: "GunaShekar, Ajay" Date: Thu, 10 Jul 2025 12:07:03 -0700 Subject: [PATCH] SWDEV-541623 - do not print hip library path on console (#707) DeviceTest.exe Unit_Uuid_FntlTstsFor_SetEnv_HIP_VISIBLE_DEVICES [ROCm/clr commit: b56897171841a550981239f1f6f07f95e86a1fbe] --- projects/clr/rocclr/os/os_win32.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/clr/rocclr/os/os_win32.cpp b/projects/clr/rocclr/os/os_win32.cpp index 90edca5eeb..68a87f15f7 100644 --- a/projects/clr/rocclr/os/os_win32.cpp +++ b/projects/clr/rocclr/os/os_win32.cpp @@ -739,7 +739,6 @@ void Os::PrintLibraryLocation() { (LPCSTR)&Os::loadLibrary, &hm)) { char cszDllPath[1024] = {0}; if (GetModuleFileNameA(hm, cszDllPath, sizeof(cszDllPath))) { - printf("HIP Library Path: %s\n", cszDllPath); ClPrint(amd::LOG_INFO, amd::LOG_INIT, "HIP Library Path: %s", cszDllPath); return; }