mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Related-To: NEO-4344 Change-Id: I356b46bdfac7c943b95ee6dc41d3416bd880f9cb Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
23 lines
718 B
C++
23 lines
718 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/command_stream/device_command_stream.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
#include "opencl/source/command_stream/aub_command_stream_receiver.h"
|
|
#include "opencl/source/command_stream/command_stream_receiver_with_aub_dump.h"
|
|
#include "opencl/source/command_stream/create_command_stream_impl.h"
|
|
#include "opencl/source/command_stream/tbx_command_stream_receiver.h"
|
|
|
|
namespace NEO {
|
|
|
|
CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment, uint32_t rootDeviceIndex) {
|
|
return createCommandStreamImpl(executionEnvironment, rootDeviceIndex);
|
|
}
|
|
|
|
} // namespace NEO
|