/* * 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 const char *CompilerHwInfoConfigHw::getCachingPolicyOptions(bool isDebuggerActive) const { return L1CachePolicyHelper::getCachingPolicyOptions(isDebuggerActive); }; } // namespace NEO