mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Related-To: NEO-4744 Change-Id: I7e574d7cf003ed01467c72e797187c0717bb76f2 Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
23 lines
463 B
C++
23 lines
463 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen12lp/hw_cmds.h"
|
|
#include "shared/source/os_interface/hw_info_config.h"
|
|
|
|
#include "opencl/source/helpers/enable_product.inl"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_TGLLP
|
|
static EnableGfxProductHw<IGFX_TIGERLAKE_LP> enableGfxProductHwTGLLP;
|
|
#endif
|
|
#ifdef SUPPORT_DG1
|
|
static EnableGfxProductHw<IGFX_DG1> enableGfxProductHwDG1;
|
|
#endif
|
|
|
|
} // namespace NEO
|