/* * Copyright (C) 2021-2022 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "shared/source/helpers/cache_policy.h" #include "shared/source/helpers/compiler_hw_info_config.h" namespace NEO { template bool CompilerHwInfoConfigHw::isForceEmuInt32DivRemSPRequired() const { return false; } template bool CompilerHwInfoConfigHw::isStatelessToStatefulBufferOffsetSupported() const { return true; } template void CompilerHwInfoConfigHw::adjustHwInfoForIgc(HardwareInfo &hwInfo) const { } template const char *CompilerHwInfoConfigHw::getCachingPolicyOptions() const { return L1CachePolicyHelper::getCachingPolicyOptions(); }; } // namespace NEO