diff --git a/.pick_status.json b/.pick_status.json index 4e70aa6dcba..fa0d9235a12 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -2524,7 +2524,7 @@ "description": "intel/blorp: disable REP16 for gfx12+ with R10G10B10_FLOAT_A2", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null }, diff --git a/src/intel/blorp/blorp_clear.c b/src/intel/blorp/blorp_clear.c index 61581216f60..5de96405700 100644 --- a/src/intel/blorp/blorp_clear.c +++ b/src/intel/blorp/blorp_clear.c @@ -607,6 +607,17 @@ blorp_clear(struct blorp_batch *batch, if (batch->blorp->isl_dev->info->ver < 6) use_simd16_replicated_data = false; + /* From the BSpec: 47719 Replicate Data: + * + * "Replicate Data Render Target Write message should not be used + * on all projects TGL+." + * + * See 14017879046, 14017880152 for additional information. + */ + if (batch->blorp->isl_dev->info->ver >= 12 && + format == ISL_FORMAT_R10G10B10_FLOAT_A2_UNORM) + use_simd16_replicated_data = false; + if (compute) use_simd16_replicated_data = false;