22 lines
545 B
C++
22 lines
545 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen11/hw_cmds_lkf.h"
|
|
#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_and_later.inl"
|
|
|
|
#include "platforms.h"
|
|
|
|
namespace NEO {
|
|
constexpr static auto gfxProduct = IGFX_LAKEFIELD;
|
|
|
|
#include "shared/source/gen11/lkf/os_agnostic_hw_info_config_lkf.inl"
|
|
|
|
template class HwInfoConfigHw<gfxProduct>;
|
|
} // namespace NEO
|