2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2023-10-20 22:34:45 +08:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#ifdef SUPPORT_GEN8
|
2020-08-27 04:36:51 +08:00
|
|
|
#include "shared/source/gen8/aub_mapper.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
#endif
|
|
|
|
#ifdef SUPPORT_GEN9
|
2020-08-27 04:36:51 +08:00
|
|
|
#include "shared/source/gen9/aub_mapper.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
#endif
|
2019-01-10 22:36:57 +08:00
|
|
|
#ifdef SUPPORT_GEN11
|
2020-08-27 04:36:51 +08:00
|
|
|
#include "shared/source/gen11/aub_mapper.h"
|
2019-01-10 22:36:57 +08:00
|
|
|
#endif
|
2019-09-19 01:32:33 +08:00
|
|
|
#ifdef SUPPORT_GEN12LP
|
2020-08-27 04:36:51 +08:00
|
|
|
#include "shared/source/gen12lp/aub_mapper.h"
|
2019-09-19 01:32:33 +08:00
|
|
|
#endif
|
2021-04-24 00:43:48 +08:00
|
|
|
#ifdef SUPPORT_XE_HP_CORE
|
|
|
|
#include "shared/source/xe_hp_core/aub_mapper.h"
|
|
|
|
#endif
|
2021-11-15 20:23:07 +08:00
|
|
|
#ifdef SUPPORT_XE_HPG_CORE
|
|
|
|
#include "shared/source/xe_hpg_core/aub_mapper.h"
|
2021-11-16 19:12:22 +08:00
|
|
|
#endif
|
|
|
|
#ifdef SUPPORT_XE_HPC_CORE
|
|
|
|
#include "shared/source/xe_hpc_core/aub_mapper.h"
|
|
|
|
#endif
|