mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 15:12:56 +08:00
Add Pipe Control command for Post Sync Operation Related-To: NEO-7586, HSD-14014966230 Signed-off-by: Krzysztof Gibala <krzysztof.gibala@intel.com>
29 lines
817 B
C++
29 lines
817 B
C++
/*
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/test/common/libult/gen12lp/special_ult_helper_gen12lp.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool SpecialUltHelperGen12lp::additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency) {
|
|
return productFamily == IGFX_DG1;
|
|
}
|
|
|
|
bool SpecialUltHelperGen12lp::isAdditionalCapabilityCoherencyFlagSettingRequired(PRODUCT_FAMILY productFamily) {
|
|
return productFamily == IGFX_TIGERLAKE_LP;
|
|
}
|
|
|
|
bool SpecialUltHelperGen12lp::shouldPerformimagePitchAlignment(PRODUCT_FAMILY productFamily) {
|
|
return productFamily == IGFX_TIGERLAKE_LP || productFamily == IGFX_DG1;
|
|
}
|
|
|
|
bool SpecialUltHelperGen12lp::isPipeControlWArequired(PRODUCT_FAMILY productFamily) {
|
|
return productFamily != IGFX_ROCKETLAKE;
|
|
}
|
|
|
|
} // namespace NEO
|