mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 15:03:02 +08:00
Related-To: NEO-2388 Change-Id: I4da92efe7f875f409cd62519a31ed4509b55bda7 Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>
23 lines
433 B
C++
23 lines
433 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/helpers/enable_product.inl"
|
|
#include "runtime/os_interface/hw_info_config.h"
|
|
|
|
#include "hw_cmds.h"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_ICLLP
|
|
static EnableGfxProductHw<IGFX_ICELAKE_LP> enableGfxProductHwICLLP;
|
|
#endif
|
|
#ifdef SUPPORT_LKF
|
|
static EnableGfxProductHw<IGFX_LAKEFIELD> enableGfxProductHwLKF;
|
|
#endif
|
|
|
|
} // namespace NEO
|