Files
compute-runtime/shared/source/gen9/enable_hw_info_config_gen9.cpp
Mateusz Jablonski 7df9945ebe Add absolute include paths
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-02-23 23:49:12 +01:00

30 lines
651 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/gen9/hw_cmds.h"
#include "shared/source/os_interface/hw_info_config.h"
namespace NEO {
#ifdef SUPPORT_BXT
static EnableProductHwInfoConfig<IGFX_BROXTON> enableBXT;
#endif
#ifdef SUPPORT_CFL
static EnableProductHwInfoConfig<IGFX_COFFEELAKE> enableCFL;
#endif
#ifdef SUPPORT_GLK
static EnableProductHwInfoConfig<IGFX_GEMINILAKE> enableGLK;
#endif
#ifdef SUPPORT_KBL
static EnableProductHwInfoConfig<IGFX_KABYLAKE> enableKBL;
#endif
#ifdef SUPPORT_SKL
static EnableProductHwInfoConfig<IGFX_SKYLAKE> enableSKL;
#endif
} // namespace NEO