mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
Related-To: NEO-2388 Change-Id: I4da92efe7f875f409cd62519a31ed4509b55bda7 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
32 lines
686 B
C++
32 lines
686 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/hw_info.h"
|
|
#include "runtime/os_interface/hw_info_config.h"
|
|
#include "runtime/os_interface/hw_info_config.inl"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_ICLLP
|
|
template <>
|
|
int HwInfoConfigHw<IGFX_ICELAKE_LP>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
return 0;
|
|
}
|
|
|
|
template class HwInfoConfigHw<IGFX_ICELAKE_LP>;
|
|
#endif
|
|
#ifdef SUPPORT_LKF
|
|
template <>
|
|
int HwInfoConfigHw<IGFX_LAKEFIELD>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
return 0;
|
|
}
|
|
|
|
template class HwInfoConfigHw<IGFX_LAKEFIELD>;
|
|
#endif
|
|
|
|
} // namespace NEO
|