19 lines
440 B
C++
19 lines
440 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/memory_manager/physical_address_allocator.h"
|
|
|
|
using namespace OCLRT;
|
|
|
|
class MockPhysicalAddressAllocator : public PhysicalAddressAllocator {
|
|
public:
|
|
using PhysicalAddressAllocator::initialPageAddress;
|
|
using PhysicalAddressAllocator::mainAllocator;
|
|
using PhysicalAddressAllocator::PhysicalAddressAllocator;
|
|
};
|