mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
Change-Id: Ib647aa4dc0be2ec3a8ddab9c73829cbc47f4f1e5 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
32 lines
962 B
C++
32 lines
962 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/command_container/command_encoder.h"
|
|
#include "core/command_container/command_encoder.inl"
|
|
#include "core/command_container/command_encoder_base.inl"
|
|
#include "core/gen9/hw_cmds_base.h"
|
|
#include "runtime/gen9/reg_configs.h"
|
|
|
|
namespace NEO {
|
|
|
|
using Family = SKLFamily;
|
|
|
|
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>;
|
|
template struct EncodeAtomic<Family>;
|
|
template struct EncodeSempahore<Family>;
|
|
template struct EncodeBatchBufferStartOrEnd<Family>;
|
|
} // namespace NEO
|