mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 16:24:18 +08:00
Change-Id: I4dd85112b20b26fe1ecc95b8098cb160548db1d4 Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
21 lines
392 B
C
21 lines
392 B
C
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#ifdef SUPPORT_GEN8
|
|
#include "shared/source/gen8/aub_mapper.h"
|
|
#endif
|
|
#ifdef SUPPORT_GEN9
|
|
#include "shared/source/gen9/aub_mapper.h"
|
|
#endif
|
|
#ifdef SUPPORT_GEN11
|
|
#include "shared/source/gen11/aub_mapper.h"
|
|
#endif
|
|
#ifdef SUPPORT_GEN12LP
|
|
#include "shared/source/gen12lp/aub_mapper.h"
|
|
#endif
|