mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 10:26:29 +08:00
Related-To: NEO-3216 Change-Id: I19d7142052a2191f7c7086ba06ca6f5930652a8c Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
22 lines
427 B
C++
22 lines
427 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "core/helpers/hw_helper.h"
|
|
#include "core/helpers/hw_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <typename GfxFamily>
|
|
class MockHwHelperWithFenceAllocation : public HwHelperHw<GfxFamily> {
|
|
public:
|
|
bool isFenceAllocationRequired(const HardwareInfo &hwInfo) const override {
|
|
return true;
|
|
}
|
|
};
|
|
} // namespace NEO
|