mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 04:23:00 +08:00
Change-Id: Ic9e7eb7ce7ada98e3c14ca4c951e0a7e5184c9ec Signed-off-by: Hinz <daria.hinz@intel.com>
25 lines
536 B
C++
25 lines
536 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/gen11/hw_cmds.h"
|
|
#include "runtime/helpers/enable_product.inl"
|
|
#include "runtime/os_interface/hw_info_config.h"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_ICLLP
|
|
static EnableGfxProductHw<IGFX_ICELAKE_LP> enableGfxProductHwICLLP;
|
|
#endif
|
|
#ifdef SUPPORT_LKF
|
|
static EnableGfxProductHw<IGFX_LAKEFIELD> enableGfxProductHwLKF;
|
|
#endif
|
|
#ifdef SUPPORT_EHL
|
|
static EnableGfxProductHw<IGFX_ELKHARTLAKE> enableGfxProductHwEHL;
|
|
#endif
|
|
|
|
} // namespace NEO
|