mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 14:02:58 +08:00
33 lines
765 B
C++
33 lines
765 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* 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;
|
|
}
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
void CompilerHwInfoConfigHw<gfxProduct>::adjustHwInfoForIgc(HardwareInfo &hwInfo) const {
|
|
}
|
|
|
|
template <PRODUCT_FAMILY gfxProduct>
|
|
const char *CompilerHwInfoConfigHw<gfxProduct>::getCachingPolicyOptions() const {
|
|
return nullptr;
|
|
};
|
|
|
|
} // namespace NEO
|