SWDEV-351980 - Add FillBuffer byte count to the record

Change-Id: I90c791f5810b8a3f6b1d6a9e81c165b1a7515c92
This commit is contained in:
Laurent Morichetti
2022-09-30 21:20:14 -07:00
förälder 800fe4b239
incheckning e00965df50
+3
Visa fil
@@ -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;
}