mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
Change-Id: Ic65fab67d0943023caecfc07b63e2853fb58d0c4 Signed-off-by: Koska, Andrzej <andrzej.koska@intel.com> Related-To: NEO-3321, NEO-3221
41 lines
958 B
C++
41 lines
958 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"
|
|
#include "runtime/os_interface/hw_info_config_bdw_plus.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
|
|
|
|
#ifdef SUPPORT_EHL
|
|
template <>
|
|
int HwInfoConfigHw<IGFX_ELKHARTLAKE>::configureHardwareCustom(HardwareInfo *hwInfo, OSInterface *osIface) {
|
|
return 0;
|
|
}
|
|
|
|
template class HwInfoConfigHw<IGFX_ELKHARTLAKE>;
|
|
#endif
|
|
} // namespace NEO
|