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

Tests that are not specific to openCL or level zero Related-To: NEO-5161 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
19 lines
449 B
C++
19 lines
449 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/memory_manager/physical_address_allocator.h"
|
|
|
|
using namespace NEO;
|
|
|
|
class MockPhysicalAddressAllocator : public PhysicalAddressAllocator {
|
|
public:
|
|
using PhysicalAddressAllocator::initialPageAddress;
|
|
using PhysicalAddressAllocator::mainAllocator;
|
|
using PhysicalAddressAllocator::PhysicalAddressAllocator;
|
|
};
|