/* * Copyright (C) 2018-2023 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/gen8/hw_cmds.h" #include "shared/source/helpers/populate_factory.h" #include "shared/test/common/libult/ult_command_stream_receiver.h" #include "shared/test/common/mocks/mock_l0_debugger.h" namespace NEO { typedef Gen8Family Family; constexpr auto gfxCore = IGFX_GEN8_CORE; extern CommandStreamReceiverCreateFunc commandStreamReceiverFactory[2 * IGFX_MAX_CORE]; template <> void populateFactoryTable>() { commandStreamReceiverFactory[IGFX_MAX_CORE + gfxCore] = UltCommandStreamReceiver::create; } struct EnableGen8 { EnableGen8() { populateFactoryTable>(); } }; static EnableGen8 enable; static MockDebuggerL0HwPopulateFactory mockDebuggerGen8; template class UltCommandStreamReceiver; } // namespace NEO