19 lines
375 B
C++
19 lines
375 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#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"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_BDW
|
|
template class HwInfoConfigHw<IGFX_BROADWELL>;
|
|
#endif
|
|
|
|
} // namespace NEO
|