Enable preemption FeatureFlags for GEN11

Resolves: NEO-2910

Change-Id: I2dfe92f3f4e3cf42a3772775ed329b6c5a2c50e6
Signed-off-by: Katarzyna Cencelewska <katarzyna.cencelewska@intel.com>
This commit is contained in:
Katarzyna Cencelewska
2019-04-25 10:50:44 +02:00
committed by sys_ocldev
parent e871852601
commit 41ca0a0033
4 changed files with 22 additions and 0 deletions

View File

@@ -95,6 +95,12 @@ void ICLLP::setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo) {
pSkuTable->ftrAstcHdr2D = true;
pSkuTable->ftrAstcLdr2D = true;
pSkuTable->ftr3dMidBatchPreempt = true;
pSkuTable->ftrGpGpuMidBatchPreempt = true;
pSkuTable->ftrGpGpuMidThreadLevelPreempt = true;
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = true;
pSkuTable->ftrPerCtxtPreemptionGranularityControl = true;
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = true;
pWaTable->waReportPerfCountUseGlobalContextID = true;
};

View File

@@ -94,6 +94,12 @@ void LKF::setupFeatureAndWorkaroundTable(HardwareInfo *hwInfo) {
pSkuTable->ftrAstcHdr2D = true;
pSkuTable->ftrAstcLdr2D = true;
pSkuTable->ftr3dMidBatchPreempt = true;
pSkuTable->ftrGpGpuMidBatchPreempt = true;
pSkuTable->ftrGpGpuMidThreadLevelPreempt = true;
pSkuTable->ftrGpGpuThreadGroupLevelPreempt = true;
pSkuTable->ftrPerCtxtPreemptionGranularityControl = true;
pWaTable->wa4kAlignUVOffsetNV12LinearSurface = true;
pWaTable->waReportPerfCountUseGlobalContextID = true;
};