22 lines
526 B
C++
22 lines
526 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gen9/hw_cmds.h"
|
|
#include "runtime/helpers/hardware_commands_helper.h"
|
|
#include "runtime/helpers/hardware_commands_helper.inl"
|
|
#include "runtime/helpers/hardware_commands_helper_base.inl"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
template <>
|
|
bool HardwareCommandsHelper<SKLFamily>::isPipeControlWArequired(const HardwareInfo &hwInfo) { return true; }
|
|
|
|
template struct HardwareCommandsHelper<SKLFamily>;
|
|
} // namespace NEO
|