/* * Copyright (C) 2017-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/command_stream/command_stream_receiver_with_aub_dump.inl" #include "runtime/command_stream/tbx_command_stream_receiver_hw.h" #include "runtime/command_stream/tbx_command_stream_receiver_hw.inl" #include "runtime/helpers/array_count.h" #include "runtime/helpers/base_object.h" #include "hw_cmds.h" namespace NEO { typedef BDWFamily Family; static auto gfxCore = IGFX_GEN8_CORE; template <> void populateFactoryTable>() { extern TbxCommandStreamReceiverCreateFunc tbxCommandStreamReceiverFactory[IGFX_MAX_CORE]; UNRECOVERABLE_IF(!isInRange(gfxCore, tbxCommandStreamReceiverFactory)); tbxCommandStreamReceiverFactory[gfxCore] = TbxCommandStreamReceiverHw::create; } template class TbxCommandStreamReceiverHw; template class CommandStreamReceiverWithAUBDump>; } // namespace NEO