2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2019-02-27 11:39:32 +01:00
|
|
|
* Copyright (C) 2018-2019 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
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "runtime/command_stream/aub_command_stream_receiver.h"
|
2018-01-19 10:00:51 +01:00
|
|
|
#include "runtime/command_stream/command_stream_receiver_with_aub_dump.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
#include "runtime/command_stream/create_command_stream_impl.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#include "runtime/command_stream/device_command_stream.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
#include "runtime/command_stream/tbx_command_stream_receiver.h"
|
2017-12-21 00:45:38 +01:00
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2017-12-21 00:45:38 +01:00
|
|
|
|
2019-02-27 10:06:14 +01:00
|
|
|
CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment) {
|
|
|
|
|
return createCommandStreamImpl(executionEnvironment);
|
2017-12-21 00:45:38 +01:00
|
|
|
}
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|