2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2018-2021 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"
|
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"
|
|
|
|
|
#include "shared/source/os_interface/linux/drm_command_stream_bdw_and_later.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
|
|
|
|
|
|
|
|
template class DeviceCommandStreamReceiver<BDWFamily>;
|
|
|
|
|
template class DrmCommandStreamReceiver<BDWFamily>;
|
2018-01-19 10:00:51 +01:00
|
|
|
template class CommandStreamReceiverWithAUBDump<DrmCommandStreamReceiver<BDWFamily>>;
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|