2021-05-27 19:44:47 +02:00
|
|
|
/*
|
2022-06-24 13:56:25 +00:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2021-05-27 19:44:47 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "shared/source/command_stream/device_command_stream.h"
|
2022-11-10 09:37:42 +00:00
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
2022-06-24 13:56:25 +00:00
|
|
|
#include "shared/source/gen11/hw_cmds.h"
|
2021-05-27 19:44:47 +02:00
|
|
|
|
|
|
|
|
#include "create_command_stream_receiver.inl"
|
|
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
template <>
|
2022-07-25 15:30:11 +00:00
|
|
|
CommandStreamReceiver *createDeviceCommandStreamReceiver<Gen11Family>(bool withAubDump,
|
|
|
|
|
ExecutionEnvironment &executionEnvironment,
|
|
|
|
|
uint32_t rootDeviceIndex,
|
|
|
|
|
const DeviceBitfield deviceBitfield) {
|
|
|
|
|
return createCommandStreamReceiver<Gen11Family>(withAubDump, executionEnvironment, rootDeviceIndex, deviceBitfield);
|
2021-05-27 19:44:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|