Group gen specific small cpp files together part 1

Change-Id: I554caee03f0abcb069fe38c6092c33b5f9eb04f9
This commit is contained in:
Stefanowski, Adam
2018-05-29 12:15:24 +02:00
committed by sys_ocldev
parent 5a9c9c2691
commit 604b04b5cd
11 changed files with 21 additions and 5 deletions

View File

@ -20,7 +20,21 @@
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "hw_cmds.h"
#ifdef SUPPORT_BXT
#include "hw_info_bxt.inl"
#endif
#ifdef SUPPORT_CFL
#include "hw_info_cfl.inl"
#endif
#ifdef SUPPORT_GLK
#include "hw_info_glk.inl"
#endif
#ifdef SUPPORT_KBL
#include "hw_info_kbl.inl"
#endif
#ifdef SUPPORT_SKL
#include "hw_info_skl.inl"
#endif
namespace OCLRT {
const char *GfxFamilyMapper<IGFX_GEN9_CORE>::name = "Gen9";