21 lines
484 B
C++
21 lines
484 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/gen8/hw_cmds.h"
|
|
#include "shared/source/helpers/cache_policy_bdw_and_later.inl"
|
|
#include "shared/source/helpers/enable_product.inl"
|
|
#include "shared/source/os_interface/product_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
#ifdef SUPPORT_BDW
|
|
template struct L1CachePolicyHelper<IGFX_BROADWELL>;
|
|
static EnableGfxProductHw<IGFX_BROADWELL> enableGfxProductHwBDW;
|
|
#endif
|
|
|
|
} // namespace NEO
|