25 lines
894 B
C++
25 lines
894 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/command_stream/device_command_stream.h"
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
#include "shared/source/gen11/hw_cmds.h"
|
|
|
|
#include "create_command_stream_receiver.inl"
|
|
|
|
namespace NEO {
|
|
|
|
template <>
|
|
CommandStreamReceiver *createDeviceCommandStreamReceiver<Gen11Family>(bool withAubDump,
|
|
ExecutionEnvironment &executionEnvironment,
|
|
uint32_t rootDeviceIndex,
|
|
const DeviceBitfield deviceBitfield) {
|
|
return createCommandStreamReceiver<Gen11Family>(withAubDump, executionEnvironment, rootDeviceIndex, deviceBitfield);
|
|
}
|
|
|
|
} // namespace NEO
|