25 lines
465 B
C++
25 lines
465 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/hw_info_config.h"
|
|
|
|
#include "hw_cmds.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
|