mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

invalidate TLB cache if kernel requires migration Related-To: NEO-3691 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
20 lines
448 B
C++
20 lines
448 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/memory_manager/multi_graphics_allocation.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct MockMultiGraphicsAllocation : public MultiGraphicsAllocation {
|
|
using MultiGraphicsAllocation::graphicsAllocations;
|
|
using MultiGraphicsAllocation::migrationSyncData;
|
|
using MultiGraphicsAllocation::MultiGraphicsAllocation;
|
|
};
|
|
|
|
} // namespace NEO
|