2020-01-17 15:56:05 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/command_container/command_encoder.h"
|
|
|
|
#include "shared/source/command_container/command_encoder.inl"
|
|
|
|
#include "shared/source/command_container/command_encoder_base.inl"
|
|
|
|
#include "shared/source/gen8/hw_cmds_base.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/gen8/reg_configs.h"
|
2020-01-17 15:56:05 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
using Family = BDWFamily;
|
|
|
|
|
|
|
|
template struct EncodeDispatchKernel<Family>;
|
|
|
|
template struct EncodeStates<Family>;
|
|
|
|
template struct EncodeMathMMIO<Family>;
|
|
|
|
template struct EncodeIndirectParams<Family>;
|
|
|
|
template struct EncodeSetMMIO<Family>;
|
|
|
|
template struct EncodeL3State<Family>;
|
|
|
|
template struct EncodeMediaInterfaceDescriptorLoad<Family>;
|
|
|
|
template struct EncodeStateBaseAddress<Family>;
|
|
|
|
template struct EncodeStoreMMIO<Family>;
|
|
|
|
template struct EncodeSurfaceState<Family>;
|
2020-01-24 21:58:15 +08:00
|
|
|
template struct EncodeAtomic<Family>;
|
|
|
|
template struct EncodeSempahore<Family>;
|
2020-01-28 20:50:19 +08:00
|
|
|
template struct EncodeBatchBufferStartOrEnd<Family>;
|
2020-02-21 22:35:08 +08:00
|
|
|
template struct EncodeMiFlushDW<Family>;
|
2020-01-17 15:56:05 +08:00
|
|
|
} // namespace NEO
|