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.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user