mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Remove KernelDeviceInfo struct
Related-To: NEO-5001 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
723d8a4b72
commit
35d2325361
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2020 Intel Corporation
|
||||
* Copyright (C) 2017-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -56,9 +56,9 @@ void MockKernel::makeResident(CommandStreamReceiver &commandStreamReceiver) {
|
||||
Kernel::makeResident(commandStreamReceiver);
|
||||
}
|
||||
|
||||
void MockKernel::getResidency(std::vector<Surface *> &dst, uint32_t rootDeviceIndex) {
|
||||
void MockKernel::getResidency(std::vector<Surface *> &dst) {
|
||||
getResidencyCalls++;
|
||||
Kernel::getResidency(dst, rootDeviceIndex);
|
||||
Kernel::getResidency(dst);
|
||||
}
|
||||
bool MockKernel::requiresCacheFlushCommand(const CommandQueue &commandQueue) const {
|
||||
if (DebugManager.flags.EnableCacheFlushAfterWalker.get() != -1) {
|
||||
|
||||
Reference in New Issue
Block a user