2018-06-04 10:20:09 +02:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2018-09-18 09:11:08 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-06-04 10:20:09 +02:00
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/gen8/hw_cmds.h"
|
2021-10-26 15:25:20 +00:00
|
|
|
#include "shared/source/helpers/compiler_hw_info_config_base.inl"
|
2021-10-05 13:14:08 +00:00
|
|
|
#include "shared/source/helpers/compiler_hw_info_config_bdw_and_later.inl"
|
2021-10-12 18:58:51 +00:00
|
|
|
#include "shared/source/helpers/enable_product.inl"
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
2020-02-24 10:22:30 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-06-04 10:20:09 +02:00
|
|
|
|
|
|
|
|
#ifdef SUPPORT_BDW
|
|
|
|
|
static EnableGfxProductHw<IGFX_BROADWELL> enableGfxProductHwBDW;
|
2021-10-26 15:25:20 +00:00
|
|
|
|
|
|
|
|
#include "shared/source/gen8/compiler_hw_info_config_bdw.inl"
|
2021-10-05 13:14:08 +00:00
|
|
|
static EnableCompilerHwInfoConfig<IGFX_BROADWELL> enableCompilerHwInfoConfigBDW;
|
2018-06-04 10:20:09 +02:00
|
|
|
#endif
|
|
|
|
|
|
2019-08-23 13:57:58 +02:00
|
|
|
} // namespace NEO
|