mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-10 12:53:42 +08:00
Change task count type to uint64_t
Related-To: NEO-7105 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
d7e4117dcf
commit
c39cd23f87
@ -924,7 +924,7 @@ void CommandStreamReceiver::printTagAddressContent(TaskCountType taskCountToWait
|
||||
auto postSyncAddress = getTagAddress();
|
||||
if (start) {
|
||||
PRINT_DEBUG_STRING(true, stdout,
|
||||
"\nWaiting for task count %u at location %p with timeout %llx. Current value:",
|
||||
"\nWaiting for task count %llu at location %p with timeout %llx. Current value:",
|
||||
taskCountToWait, postSyncAddress, waitTimeout);
|
||||
} else {
|
||||
PRINT_DEBUG_STRING(true, stdout,
|
||||
|
@ -8,5 +8,5 @@
|
||||
#pragma once
|
||||
#include <stdint.h>
|
||||
|
||||
using TaskCountType = uint32_t;
|
||||
using TagAddressType = uint32_t;
|
||||
using TaskCountType = uint64_t;
|
||||
using TagAddressType = uint64_t;
|
Reference in New Issue
Block a user