28 lines
683 B
C++
28 lines
683 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/command_stream/command_stream_receiver_hw.h"
|
|
#include "runtime/memory_manager/memory_banks.h"
|
|
#include "runtime/memory_manager/physical_address_allocator.h"
|
|
|
|
namespace OCLRT {
|
|
class GraphicsAllocation;
|
|
template <typename GfxFamily>
|
|
class CommandStreamReceiverSimulatedCommonHw : public CommandStreamReceiverHw<GfxFamily> {
|
|
using CommandStreamReceiverHw<GfxFamily>::CommandStreamReceiverHw;
|
|
|
|
public:
|
|
uint64_t getGTTBits() const {
|
|
return 0u;
|
|
}
|
|
|
|
protected:
|
|
PhysicalAddressAllocator *createPhysicalAddressAllocator();
|
|
};
|
|
} // namespace OCLRT
|