2018-09-11 20:45:43 +08:00
|
|
|
/*
|
2021-05-13 21:27:50 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2018-09-11 20:45:43 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-09-11 20:45:43 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2020-10-15 01:22:01 +08:00
|
|
|
#include "shared/source/memory_manager/physical_address_allocator.h"
|
2018-09-11 20:45:43 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
using namespace NEO;
|
2018-09-11 20:45:43 +08:00
|
|
|
|
|
|
|
class MockPhysicalAddressAllocator : public PhysicalAddressAllocator {
|
|
|
|
public:
|
|
|
|
using PhysicalAddressAllocator::initialPageAddress;
|
2018-09-21 04:54:19 +08:00
|
|
|
using PhysicalAddressAllocator::mainAllocator;
|
|
|
|
using PhysicalAddressAllocator::PhysicalAddressAllocator;
|
2018-09-11 20:45:43 +08:00
|
|
|
};
|