mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
Split hwInfoConfig and CompilerProductHelper enablers
Related-To: NEO-6853 Signed-off-by: Kamil Kopryk <kamil.kopryk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
5fd8275c68
commit
924eb23c90
@@ -7,10 +7,6 @@
|
||||
|
||||
#include "shared/source/gen12lp/hw_cmds.h"
|
||||
#include "shared/source/helpers/cache_policy_bdw_and_later.inl"
|
||||
#include "shared/source/helpers/compiler_aot_config_bdw_and_later.inl"
|
||||
#include "shared/source/helpers/compiler_hw_info_config_base.inl"
|
||||
#include "shared/source/helpers/compiler_hw_info_config_bdw_and_later.inl"
|
||||
#include "shared/source/helpers/compiler_hw_info_config_before_xe_hpc.inl"
|
||||
#include "shared/source/helpers/enable_product.inl"
|
||||
#include "shared/source/os_interface/hw_info_config.h"
|
||||
|
||||
@@ -19,33 +15,30 @@ namespace NEO {
|
||||
#ifdef SUPPORT_TGLLP
|
||||
template struct L1CachePolicyHelper<IGFX_TIGERLAKE_LP>;
|
||||
static EnableGfxProductHw<IGFX_TIGERLAKE_LP> enableGfxProductHwTGLLP;
|
||||
static EnableCompilerProductHelper<IGFX_TIGERLAKE_LP> enableCompilerProductHelperTGLLP;
|
||||
|
||||
#endif
|
||||
#ifdef SUPPORT_DG1
|
||||
template struct L1CachePolicyHelper<IGFX_DG1>;
|
||||
static EnableGfxProductHw<IGFX_DG1> enableGfxProductHwDG1;
|
||||
static EnableCompilerProductHelper<IGFX_DG1> enableCompilerProductHelperDG1;
|
||||
|
||||
#endif
|
||||
#ifdef SUPPORT_RKL
|
||||
template struct L1CachePolicyHelper<IGFX_ROCKETLAKE>;
|
||||
static EnableGfxProductHw<IGFX_ROCKETLAKE> enableGfxProductHwRKL;
|
||||
|
||||
#include "shared/source/gen12lp/compiler_hw_info_config_rkl.inl"
|
||||
static EnableCompilerProductHelper<IGFX_ROCKETLAKE> enableCompilerProductHelperRKL;
|
||||
#endif
|
||||
#ifdef SUPPORT_ADLS
|
||||
template struct L1CachePolicyHelper<IGFX_ALDERLAKE_S>;
|
||||
static EnableGfxProductHw<IGFX_ALDERLAKE_S> enableGfxProductHwADLS;
|
||||
static EnableCompilerProductHelper<IGFX_ALDERLAKE_S> enableCompilerProductHelperADLS;
|
||||
|
||||
#endif
|
||||
#ifdef SUPPORT_ADLP
|
||||
template struct L1CachePolicyHelper<IGFX_ALDERLAKE_P>;
|
||||
static EnableGfxProductHw<IGFX_ALDERLAKE_P> enableGfxProductHwADLP;
|
||||
static EnableCompilerProductHelper<IGFX_ALDERLAKE_P> enableCompilerProductHelperADLP;
|
||||
|
||||
#endif
|
||||
#ifdef SUPPORT_ADLN
|
||||
template struct L1CachePolicyHelper<IGFX_ALDERLAKE_N>;
|
||||
static EnableGfxProductHw<IGFX_ALDERLAKE_N> enableGfxProductHwADLN;
|
||||
static EnableCompilerProductHelper<IGFX_ALDERLAKE_N> enableCompilerProductHelperADLN;
|
||||
#endif
|
||||
} // namespace NEO
|
||||
|
||||
Reference in New Issue
Block a user