mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 05:24:02 +08:00
Reorganization directory structure [3/n]
Change-Id: If3dfa3f6007f8810a6a1ae1a4f0c7da38544648d
This commit is contained in:
30
shared/source/gen9/enable_gen9.cpp
Normal file
30
shared/source/gen9/enable_gen9.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (C) 2018-2020 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#include "gen9/hw_cmds.h"
|
||||
#include "os_interface/hw_info_config.h"
|
||||
#include "opencl/source/helpers/enable_product.inl"
|
||||
|
||||
namespace NEO {
|
||||
|
||||
#ifdef SUPPORT_BXT
|
||||
static EnableGfxProductHw<IGFX_BROXTON> enableGfxProductHwBXT;
|
||||
#endif
|
||||
#ifdef SUPPORT_CFL
|
||||
static EnableGfxProductHw<IGFX_COFFEELAKE> enableGfxProductHwCFL;
|
||||
#endif
|
||||
#ifdef SUPPORT_GLK
|
||||
static EnableGfxProductHw<IGFX_GEMINILAKE> enableGfxProductHwGLK;
|
||||
#endif
|
||||
#ifdef SUPPORT_KBL
|
||||
static EnableGfxProductHw<IGFX_KABYLAKE> enableGfxProductHwKBL;
|
||||
#endif
|
||||
#ifdef SUPPORT_SKL
|
||||
static EnableGfxProductHw<IGFX_SKYLAKE> enableGfxProductHwSKL;
|
||||
#endif
|
||||
|
||||
} // namespace NEO
|
||||
Reference in New Issue
Block a user