mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
Change-Id: I32e7d9c23ecd21e7ef45092ef8abd6571049f93d Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
31 lines
708 B
C++
31 lines
708 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "unit_tests/gen12lp/special_ult_helper_gen12lp.h"
|
|
|
|
#include "core/helpers/hw_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool SpecialUltHelperGen12lp::additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency) {
|
|
return false;
|
|
}
|
|
|
|
bool SpecialUltHelperGen12lp::shouldPerformimagePitchAlignment(PRODUCT_FAMILY productFamily) {
|
|
return true;
|
|
}
|
|
|
|
bool SpecialUltHelperGen12lp::shouldTestDefaultImplementationOfSetupHardwareCapabilities(PRODUCT_FAMILY productFamily) {
|
|
return true;
|
|
}
|
|
|
|
bool SpecialUltHelperGen12lp::isPipeControlWArequired(PRODUCT_FAMILY productFamily) {
|
|
return true;
|
|
}
|
|
|
|
} // namespace NEO
|