mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Change-Id: I1685057a641d938170b8c7ec860d2f53f45b1d6d Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
19 lines
593 B
C++
19 lines
593 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/command_stream_receiver_with_aub_dump.inl"
|
|
#include "runtime/os_interface/linux/device_command_stream.inl"
|
|
#include "runtime/os_interface/linux/drm_command_stream.inl"
|
|
#include "runtime/os_interface/linux/drm_command_stream_bdw_plus.inl"
|
|
|
|
namespace NEO {
|
|
|
|
template class DeviceCommandStreamReceiver<TGLLPFamily>;
|
|
template class DrmCommandStreamReceiver<TGLLPFamily>;
|
|
template class CommandStreamReceiverWithAUBDump<DrmCommandStreamReceiver<TGLLPFamily>>;
|
|
} // namespace NEO
|