Cleanup Kernel class

move deviceVector to MultiDeviceKernel class
remove Device arg from Kernel's methods

Related-To: NEO-5001
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2021-03-23 17:11:41 +00:00
committed by Compute-Runtime-Automation
parent a86cb2d4db
commit 35ff284944
16 changed files with 63 additions and 78 deletions

View File

@@ -19,7 +19,7 @@ void NEO::SyncBufferHandler::prepareForEnqueue(size_t workGroupsCount, KernelT &
usedBufferSize = 0;
}
kernel.patchSyncBuffer(device, graphicsAllocation, usedBufferSize);
kernel.patchSyncBuffer(graphicsAllocation, usedBufferSize);
usedBufferSize += requiredSize;
}