/* * Copyright (C) 2022 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/helpers/cache_policy.h" #include "shared/source/helpers/cache_policy_base.inl" namespace NEO { template const char *L1CachePolicyHelper::getCachingPolicyOptions(bool isDebuggerActive) { return nullptr; } template uint32_t L1CachePolicyHelper::getDefaultL1CachePolicy(bool isDebuggerActive) { return 0u; } template uint32_t L1CachePolicyHelper::getUncachedL1CachePolicy() { return 1u; } } // namespace NEO