Reduce tag pool size to 1 for AUBs

Change-Id: I3a3513250b10e899795e149bff2739193a725f84
Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
Dunajski, Bartosz
2018-11-15 14:47:52 +01:00
committed by sys_ocldev
parent 96d07db545
commit d6870a896b
17 changed files with 110 additions and 85 deletions

View File

@@ -575,7 +575,9 @@ void CommandQueue::dispatchAuxTranslation(MultiDispatchInfo &multiDispatchInfo,
}
void CommandQueue::obtainNewTimestampPacketNodes(size_t numberOfNodes, TimestampPacketContainer &previousNodes) {
auto allocator = device->getMemoryManager()->getTimestampPacketAllocator();
auto preferredPoolSize = device->getCommandStreamReceiver().getPreferredTagPoolSize();
auto allocator = device->getMemoryManager()->obtainTimestampPacketAllocator(preferredPoolSize);
previousNodes.swapNodes(*timestampPacketContainer);
previousNodes.resolveDependencies(isOOQEnabled());