2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2020-02-22 09:28:27 +01:00
|
|
|
* Copyright (C) 2017-2020 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
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-22 09:28:27 +01:00
|
|
|
#include "command_stream/command_stream_receiver_with_aub_dump.inl"
|
|
|
|
|
#include "os_interface/linux/device_command_stream.inl"
|
|
|
|
|
#include "os_interface/linux/drm_command_stream.inl"
|
|
|
|
|
#include "os_interface/linux/drm_command_stream_bdw_plus.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
|