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:
Maciej Plewka
2022-11-29 09:35:05 +00:00
committed by Compute-Runtime-Automation
parent d7e4117dcf
commit c39cd23f87
2 changed files with 3 additions and 3 deletions

View File

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