From e425c5e79b587bebf11056c147f72f89b58edd22 Mon Sep 17 00:00:00 2001 From: Tao Sang Date: Mon, 4 Oct 2021 16:23:28 -0400 Subject: [PATCH] SWDEV-305884 - Clear up codes Fix a log typo error Change-Id: I887ecbdcfe414c2119247228bdd1255b8308da1d [ROCm/clr commit: 10abe8ab378d0b566bef73aa754e9c1551292db5] --- projects/clr/rocclr/device/rocm/rocdevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/rocclr/device/rocm/rocdevice.cpp b/projects/clr/rocclr/device/rocm/rocdevice.cpp index 204cb70ae2..2c62a2b2f5 100644 --- a/projects/clr/rocclr/device/rocm/rocdevice.cpp +++ b/projects/clr/rocclr/device/rocm/rocdevice.cpp @@ -200,7 +200,7 @@ void Device::setupCpuAgent() { system_coarse_segment_ = cpu_agents_[index].coarse_grain_pool; system_kernarg_segment_ = cpu_agents_[index].kern_arg_pool; ClPrint(amd::LOG_INFO, amd::LOG_INIT, "Numa selects cpu agent[%zu]=0x%zx(fine=0x%zx," - "coarse=0x%zx, kern_arg=0x%zx) for gpu agent=0x%zx", index, cpu_agent_.handle, + "coarse=0x%zx) for gpu agent=0x%zx", index, cpu_agent_.handle, system_segment_.handle, system_coarse_segment_.handle, _bkendDevice.handle); }