Files
compute-runtime/shared/source/helpers/definitions/hw_cmds.h
Bartosz Dunajski 96d14967ac Partial support for XE_HP_SDV
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
2021-06-24 18:35:54 +02:00

23 lines
458 B
C

/*
* Copyright (C) 2019-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#ifdef SUPPORT_GEN8
#include "shared/source/gen8/hw_cmds.h"
#endif
#ifdef SUPPORT_GEN9
#include "shared/source/gen9/hw_cmds.h"
#endif
#ifdef SUPPORT_GEN11
#include "shared/source/gen11/hw_cmds.h"
#endif
#ifdef SUPPORT_GEN12LP
#include "shared/source/gen12lp/hw_cmds.h"
#endif
#ifdef SUPPORT_XE_HP_CORE
#include "shared/source/xe_hp_core/hw_cmds.h"
#endif