/* * Copyright (C) 2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "core/command_stream/linear_stream.h" #include "runtime/command_stream/command_stream_receiver_hw.h" #include "runtime/command_stream/csr_definitions.h" namespace NEO { template void CommandStreamReceiverHw::programEngineModeCommands(LinearStream &csr, const DispatchFlags &dispatchFlags) { } template void CommandStreamReceiverHw::programEngineModeEpliogue(LinearStream &csr, const DispatchFlags &dispatchFlags) { } template size_t CommandStreamReceiverHw::getCmdSizeForEngineMode(const DispatchFlags &dispatchFlags) const { return 0u; } } // namespace NEO