2019-06-12 15:13:06 +08:00
|
|
|
/*
|
2020-02-22 16:28:27 +08:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2019-06-12 15:13:06 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-12-13 23:48:57 +08:00
|
|
|
#include "core/debug_settings/debug_settings_manager.h"
|
2019-11-29 22:41:47 +08:00
|
|
|
#include "core/gen11/hw_cmds.h"
|
2020-02-22 16:28:27 +08:00
|
|
|
|
|
|
|
#include "helpers/hardware_commands_helper.h"
|
|
|
|
#include "helpers/hardware_commands_helper.inl"
|
|
|
|
#include "helpers/hardware_commands_helper_base.inl"
|
2019-06-12 15:13:06 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
bool HardwareCommandsHelper<ICLFamily>::doBindingTablePrefetch() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
template struct HardwareCommandsHelper<ICLFamily>;
|
|
|
|
} // namespace NEO
|