/* * Copyright (C) 2020 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include "shared/source/helpers/hw_helper.h" #include "shared/source/helpers/hw_info.h" namespace NEO { template class MockHwHelperWithFenceAllocation : public HwHelperHw { public: bool isFenceAllocationRequired(const HardwareInfo &hwInfo) const override { return true; } }; template class MockHwHelperWithLocalMemory : public HwHelperHw { public: bool isLocalMemoryEnabled(const HardwareInfo &hwInfo) const override { return true; } }; } // namespace NEO