2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2023-07-20 09:14:08 +00:00
|
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2021-09-22 22:03:07 +00:00
|
|
|
#include "shared/source/command_stream/command_stream_receiver_with_aub_dump.inl"
|
2022-06-24 13:56:25 +00:00
|
|
|
#include "shared/source/gen8/hw_cmds.h"
|
2021-09-23 09:03:22 +00:00
|
|
|
#include "shared/source/os_interface/linux/device_command_stream.inl"
|
|
|
|
|
#include "shared/source/os_interface/linux/drm_command_stream.inl"
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2022-07-25 15:30:11 +00:00
|
|
|
template class DeviceCommandStreamReceiver<Gen8Family>;
|
|
|
|
|
template class DrmCommandStreamReceiver<Gen8Family>;
|
|
|
|
|
template class CommandStreamReceiverWithAUBDump<DrmCommandStreamReceiver<Gen8Family>>;
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|