/* * Copyright (C) 2019-2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "core/gen12lp/hw_info.h" #include "unit_tests/gen12lp/special_ult_helper_gen12lp.h" #include "unit_tests/helpers/unit_test_helper.h" #include "unit_tests/helpers/unit_test_helper.inl" namespace NEO { using Family = TGLLPFamily; template <> bool UnitTestHelper::isL3ConfigProgrammable() { return false; }; template <> bool UnitTestHelper::isPageTableManagerSupported(const HardwareInfo &hwInfo) { return hwInfo.capabilityTable.ftrRenderCompressedBuffers || hwInfo.capabilityTable.ftrRenderCompressedImages; } template <> bool UnitTestHelper::isPipeControlWArequired(const HardwareInfo &hwInfo) { return SpecialUltHelperGen12lp::isPipeControlWArequired(hwInfo.platform.eProductFamily); } template struct UnitTestHelper; } // namespace NEO