mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I3fc55321f92d02419c4c04e6d1bc28b09b306c0f Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
24 lines
478 B
C++
24 lines
478 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gen11/hw_cmds.h"
|
|
#include "runtime/os_interface/hw_info_config.h"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_ICLLP
|
|
static EnableProductHwInfoConfig<IGFX_ICELAKE_LP> enableICLLP;
|
|
#endif
|
|
#ifdef SUPPORT_LKF
|
|
static EnableProductHwInfoConfig<IGFX_LAKEFIELD> enableLKF;
|
|
#endif
|
|
#ifdef SUPPORT_EHL
|
|
static EnableProductHwInfoConfig<IGFX_ELKHARTLAKE> enableEHL;
|
|
#endif
|
|
|
|
} // namespace NEO
|