mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
refactor: dont mix aub and hw wait prints
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
9a326287c7
commit
5b1bd4b088
@@ -1090,6 +1090,14 @@ bool CommandStreamReceiver::createPerDssBackedBuffer(Device &device) {
|
||||
}
|
||||
|
||||
void CommandStreamReceiver::printTagAddressContent(TaskCountType taskCountToWait, int64_t waitTimeout, bool start) {
|
||||
if (getType() == NEO::CommandStreamReceiverType::aub) {
|
||||
if (start) {
|
||||
PRINT_DEBUG_STRING(true, stdout, "\nAub dump wait for task count %llu", taskCountToWait);
|
||||
} else {
|
||||
PRINT_DEBUG_STRING(true, stdout, "\nAub dump wait completed.");
|
||||
}
|
||||
return;
|
||||
}
|
||||
auto postSyncAddress = getTagAddress();
|
||||
if (start) {
|
||||
PRINT_DEBUG_STRING(true, stdout,
|
||||
@@ -1099,6 +1107,7 @@ void CommandStreamReceiver::printTagAddressContent(TaskCountType taskCountToWait
|
||||
PRINT_DEBUG_STRING(true, stdout,
|
||||
"%s", "\nWaiting completed. Current value:");
|
||||
}
|
||||
|
||||
for (uint32_t i = 0; i < activePartitions; i++) {
|
||||
PRINT_DEBUG_STRING(true, stdout, " %u", *postSyncAddress);
|
||||
postSyncAddress = ptrOffset(postSyncAddress, this->immWritePostSyncWriteOffset);
|
||||
|
||||
Reference in New Issue
Block a user