mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
use gen specific hw_cmds instead of all-in-one Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
16 lines
390 B
C++
16 lines
390 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen9/hw_cmds_base.h"
|
|
#include "shared/source/helpers/state_base_address.h"
|
|
#include "shared/source/helpers/state_base_address_bdw_and_later.inl"
|
|
#include "shared/source/helpers/state_base_address_skl.inl"
|
|
|
|
namespace NEO {
|
|
template struct StateBaseAddressHelper<SKLFamily>;
|
|
}
|