24 lines
584 B
C++
24 lines
584 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
#include "shared/source/gen11/hw_cmds.h"
|
|
|
|
#include "opencl/source/helpers/hardware_commands_helper.h"
|
|
#include "opencl/source/helpers/hardware_commands_helper_base.inl"
|
|
#include "opencl/source/helpers/hardware_commands_helper_bdw_plus.inl"
|
|
|
|
namespace NEO {
|
|
|
|
template <>
|
|
bool HardwareCommandsHelper<ICLFamily>::doBindingTablePrefetch() {
|
|
return false;
|
|
}
|
|
|
|
template struct HardwareCommandsHelper<ICLFamily>;
|
|
} // namespace NEO
|