diff options
author | Lionel Landwerlin <[email protected]> | 2019-10-31 00:03:30 +0200 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-10-30 22:30:09 +0000 |
commit | e02c181bfdc554f298f861bb39d20f0bfd7c2dca (patch) | |
tree | 320673fcdfa3701ae0194a90ed93e1340f6f4901 | |
parent | 422695219925084e20b30f1a919619ca97efb635 (diff) |
intel/dev: set default num_eu_per_subslice on gen12
Signed-off-by: Lionel Landwerlin <[email protected]>
Fixes: 8125d7960b ("intel/dev: Add preliminary device info for Tigerlake")
Acked-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/dev/gen_device_info.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/intel/dev/gen_device_info.c b/src/intel/dev/gen_device_info.c index 755718e5d2b..db9381611a6 100644 --- a/src/intel/dev/gen_device_info.c +++ b/src/intel/dev/gen_device_info.c @@ -1043,7 +1043,8 @@ static const struct gen_device_info gen_device_info_ehl_2x4 = { .gt = _gt, .num_slices = _slices, .l3_banks = _l3, \ .simulator_id = 22, \ .urb.size = (_gt) == 1 ? 512 : 1024, \ - .num_subslices = _dual_subslices + .num_subslices = _dual_subslices, \ + .num_eu_per_subslice = 16 #define dual_subslices(args...) { args, } |