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