18 lines
450 B
Plaintext
18 lines
450 B
Plaintext
![]() |
/*
|
||
|
* Copyright (C) 2022 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "shared/source/helpers/compiler_hw_info_config.h"
|
||
|
#include "shared/source/helpers/hw_info.h"
|
||
|
|
||
|
namespace NEO {
|
||
|
template <PRODUCT_FAMILY gfxProduct>
|
||
|
void CompilerHwInfoConfigHw<gfxProduct>::setProductConfigForHwInfo(HardwareInfo &hwInfo, AheadOfTimeConfig config) const {
|
||
|
hwInfo.platform.usRevId = config.ProductConfigID.Revision;
|
||
|
}
|
||
|
|
||
|
} // namespace NEO
|