SWDEV-351980 - Add FillBuffer byte count to the record

Change-Id: I90c791f5810b8a3f6b1d6a9e81c165b1a7515c92


[ROCm/clr commit: e00965df50]
This commit is contained in:
Laurent Morichetti
2022-09-30 21:20:14 -07:00
orang tua 9c0157e582
melakukan 7bcdb29caa
@@ -96,6 +96,9 @@ void ReportActivity(const amd::Command& command) {
case CL_COMMAND_COPY_BUFFER_RECT:
record.bytes = linearSize(static_cast<const amd::CopyMemoryCommand&>(command).size());
break;
case CL_COMMAND_FILL_BUFFER:
record.bytes = linearSize(static_cast<const amd::FillMemoryCommand&>(command).size());
break;
default:
break;
}