From edd73bd330401df78f4a0bae6b8dbf0332236224 Mon Sep 17 00:00:00 2001 From: Matt Sinclair Date: Mon, 5 Aug 2024 14:44:13 -0500 Subject: [PATCH] gpu-compute: fix typo in GPUMem debug print (#1412) The GPUMem print for when a memstatus request completes accidentally put a newline before the word "complete", causing complete to print on a newline and cause confusion. This commit resolves that. --- src/gpu-compute/gpu_dyn_inst.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gpu-compute/gpu_dyn_inst.cc b/src/gpu-compute/gpu_dyn_inst.cc index c4a8e9085a..9db884d1c0 100644 --- a/src/gpu-compute/gpu_dyn_inst.cc +++ b/src/gpu-compute/gpu_dyn_inst.cc @@ -314,7 +314,7 @@ void GPUDynInst::completeAcc(GPUDynInstPtr gpuDynInst) { DPRINTF(GPUMem, "CU%d: WF[%d][%d]: mempacket status bitvector=" - "%#x\n complete", + "%#x complete\n", cu->cu_id, simdId, wfSlotId, exec_mask); _staticInst->completeAcc(gpuDynInst);