From 35ace9d4e2435f9b5861701d78f120c5d2ce6c65 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Wed, 2 Aug 2023 02:00:13 -0700 Subject: [PATCH] intel/compiler: Xe2 and Xe3 use the same compaction tables Ref: bspec 56709 Signed-off-by: Jordan Justen Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/compiler/brw_eu_compact.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/compiler/brw_eu_compact.c b/src/intel/compiler/brw_eu_compact.c index c81525bb4fb..17175d752b1 100644 --- a/src/intel/compiler/brw_eu_compact.c +++ b/src/intel/compiler/brw_eu_compact.c @@ -2288,6 +2288,7 @@ compaction_state_init(struct compaction_state *c, c->isa = isa; switch (devinfo->ver) { case 20: + case 30: c->control_index_table = xe2_control_index_table; c->datatype_table = xe2_datatype_table; c->subreg_table = xe2_subreg_table;