feature: simplify in-order allocation overflow

Related-To: NEO-10507

Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2024-02-27 16:06:51 +00:00
committed by Compute-Runtime-Automation
parent 219470f60d
commit 8483a922a7
5 changed files with 66 additions and 24 deletions

View File

@@ -49,7 +49,8 @@ class InOrderExecInfo : public NEO::NonCopyableClass {
uint32_t getNumDevicePartitionsToWait() const { return numDevicePartitionsToWait; }
uint32_t getNumHostPartitionsToWait() const { return numHostPartitionsToWait; }
void addAllocationOffset(uint32_t addValue) { allocationOffset += addValue; }
void setAllocationOffset(uint32_t newOffset) { allocationOffset = newOffset; }
void initializeAllocationsFromHost();
uint32_t getAllocationOffset() const { return allocationOffset; }
void reset();