mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 08:07:19 +08:00
- Move one function there. - This layer will cover common functions that are not branch specific. Change-Id: Ia8a288f8f51647a333a73f35cf999df9f2d5f5b1
24 lines
542 B
C++
24 lines
542 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"
|
|
|
|
namespace OCLRT {
|
|
class GraphicsAllocation;
|
|
template <typename GfxFamily>
|
|
class CommandStreamReceiverSimulatedCommonHw : public CommandStreamReceiverHw<GfxFamily> {
|
|
using CommandStreamReceiverHw<GfxFamily>::CommandStreamReceiverHw;
|
|
|
|
public:
|
|
uint64_t getGTTBits() const {
|
|
return 0u;
|
|
}
|
|
};
|
|
} // namespace OCLRT
|