mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
Rename KernelCommandsHelper to HardwareCommandsHelper
Change-Id: I0b92a2d74bc96658274e4a02fec0f322e87681b2 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
425dad30d0
commit
70f92cf03c
23
runtime/gen11/hardware_commands_helper_gen11.cpp
Normal file
23
runtime/gen11/hardware_commands_helper_gen11.cpp
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2019 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "runtime/helpers/hardware_commands_helper.h"
|
||||
#include "runtime/helpers/hardware_commands_helper.inl"
|
||||
#include "runtime/helpers/hardware_commands_helper_base.inl"
|
||||
#include "runtime/os_interface/debug_settings_manager.h"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template <>
|
||||
bool HardwareCommandsHelper<ICLFamily>::doBindingTablePrefetch() {
|
||||
return false;
|
||||
}
|
||||
|
||||
template struct HardwareCommandsHelper<ICLFamily>;
|
||||
} // namespace NEO
|
||||
@@ -1,23 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2019 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "runtime/helpers/kernel_commands.h"
|
||||
#include "runtime/helpers/kernel_commands.inl"
|
||||
#include "runtime/helpers/kernel_commands_base.inl"
|
||||
#include "runtime/os_interface/debug_settings_manager.h"
|
||||
|
||||
#include "hw_cmds.h"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
template <>
|
||||
bool KernelCommandsHelper<ICLFamily>::doBindingTablePrefetch() {
|
||||
return false;
|
||||
}
|
||||
|
||||
template struct KernelCommandsHelper<ICLFamily>;
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user