2019-06-12 15:13:06 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2019-06-12 15:13:06 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/gen9/hw_cmds.h"
|
2020-02-24 17:22:30 +08:00
|
|
|
|
2020-02-23 05:50:57 +08:00
|
|
|
#include "opencl/source/helpers/hardware_commands_helper.h"
|
|
|
|
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
2021-08-03 19:48:35 +08:00
|
|
|
#include "opencl/source/helpers/hardware_commands_helper_bdw_and_later.inl"
|
2019-06-12 15:13:06 +08:00
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace NEO {
|
2021-07-08 21:08:56 +08:00
|
|
|
using FamilyType = SKLFamily;
|
2019-06-12 15:13:06 +08:00
|
|
|
|
2021-07-08 21:08:56 +08:00
|
|
|
template struct HardwareCommandsHelper<FamilyType>;
|
2019-06-12 15:13:06 +08:00
|
|
|
} // namespace NEO
|