mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
22 lines
538 B
C++
22 lines
538 B
C++
/*
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "igfxfmid.h"
|
|
|
|
namespace NEO {
|
|
|
|
struct SpecialUltHelperGen12lp {
|
|
static bool additionalCoherencyCheck(PRODUCT_FAMILY productFamily, bool coherency);
|
|
static bool isAdditionalCapabilityCoherencyFlagSettingRequired(PRODUCT_FAMILY productFamily);
|
|
static bool shouldPerformimagePitchAlignment(PRODUCT_FAMILY productFamily);
|
|
static bool isPipeControlWArequired(PRODUCT_FAMILY productFamily);
|
|
};
|
|
|
|
} // namespace NEO
|