2021-10-26 23:25:20 +08:00
|
|
|
/*
|
2022-03-04 17:42:37 +08:00
|
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
2021-10-26 23:25:20 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "shared/source/helpers/compiler_hw_info_config.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
bool CompilerHwInfoConfigHw<gfxProduct>::isForceEmuInt32DivRemSPRequired() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
bool CompilerHwInfoConfigHw<gfxProduct>::isStatelessToStatefulBufferOffsetSupported() const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-03-04 17:42:37 +08:00
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
|
|
void CompilerHwInfoConfigHw<gfxProduct>::adjustHwInfoForIgc(HardwareInfo &hwInfo) const {
|
|
|
|
}
|
|
|
|
|
2021-10-26 23:25:20 +08:00
|
|
|
} // namespace NEO
|