2019-01-10 22:36:57 +08:00
|
|
|
/*
|
2021-03-10 02:02:59 +08:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2019-01-10 22:36:57 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
|
|
#include "shared/source/os_interface/hw_info_config.inl"
|
|
|
|
#include "shared/source/os_interface/hw_info_config_bdw_plus.inl"
|
2019-01-10 22:36:57 +08:00
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
#ifdef SUPPORT_ICLLP
|
|
|
|
template class HwInfoConfigHw<IGFX_ICELAKE_LP>;
|
|
|
|
#endif
|
|
|
|
|
2020-11-21 23:50:18 +08:00
|
|
|
#ifdef SUPPORT_LKF
|
2019-01-10 22:36:57 +08:00
|
|
|
template class HwInfoConfigHw<IGFX_LAKEFIELD>;
|
|
|
|
#endif
|
|
|
|
|
2019-06-27 16:28:03 +08:00
|
|
|
#ifdef SUPPORT_EHL
|
|
|
|
template class HwInfoConfigHw<IGFX_ELKHARTLAKE>;
|
|
|
|
#endif
|
2019-01-10 22:36:57 +08:00
|
|
|
} // namespace NEO
|