mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
Change-Id: I34eb993b562c77f56d8fbd51a02ee266c1f76678 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
26 lines
558 B
C++
26 lines
558 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen11/hw_cmds.h"
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
|
|
#include "opencl/source/helpers/enable_product.inl"
|
|
|
|
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
|