compute-runtime/runtime/gen9/enable_hw_info_config_gen9.cpp

30 lines
625 B
C++

/*
* Copyright (C) 2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "hw_cmds.h"
#include "runtime/os_interface/hw_info_config.h"
namespace OCLRT {
#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 OCLRT