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:
Matt Sinclair
2024-08-05 14:44:13 -05:00
committed by GitHub
parent ba455e2025
commit edd73bd330

View File

@@ -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);