summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2019-01-29 10:56:54 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2019-01-29 10:56:54 +0000
commit0c2350effb46e9988810047cb0156b0f770cb31f (patch)
tree063b01d8acc56e1b0eb6efb8d98a527173b7506f /lib
parentb83cdbaf1add00503c2b86f88d2a78b1bded5903 (diff)
Import Mesa 18.3.2
Diffstat (limited to 'lib')
-rw-r--r--lib/mesa/src/intel/dev/gen_device_info.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/mesa/src/intel/dev/gen_device_info.c b/lib/mesa/src/intel/dev/gen_device_info.c
index 625ebc031..5dbd06075 100644
--- a/lib/mesa/src/intel/dev/gen_device_info.c
+++ b/lib/mesa/src/intel/dev/gen_device_info.c
@@ -414,7 +414,6 @@ static const struct gen_device_info gen_device_info_hsw_gt3 = {
.has_64bit_types = true, \
.supports_simd16_3src = true, \
.has_surface_tile_offset = true, \
- .num_thread_per_eu = 7, \
.max_vs_threads = 504, \
.max_tcs_threads = 504, \
.max_tes_threads = 504, \
@@ -428,6 +427,7 @@ static const struct gen_device_info gen_device_info_bdw_gt1 = {
.num_slices = 1,
.num_subslices = { 2, },
.num_eu_per_subslice = 8,
+ .num_thread_per_eu = 7,
.l3_banks = 2,
.max_cs_threads = 42,
.urb = {
@@ -452,6 +452,7 @@ static const struct gen_device_info gen_device_info_bdw_gt2 = {
.num_slices = 1,
.num_subslices = { 3, },
.num_eu_per_subslice = 8,
+ .num_thread_per_eu = 7,
.l3_banks = 4,
.max_cs_threads = 56,
.urb = {
@@ -476,6 +477,7 @@ static const struct gen_device_info gen_device_info_bdw_gt3 = {
.num_slices = 2,
.num_subslices = { 3, 3, },
.num_eu_per_subslice = 8,
+ .num_thread_per_eu = 7,
.l3_banks = 8,
.max_cs_threads = 56,
.urb = {
@@ -501,6 +503,7 @@ static const struct gen_device_info gen_device_info_chv = {
.num_slices = 1,
.num_subslices = { 2, },
.num_eu_per_subslice = 8,
+ .num_thread_per_eu = 7,
.l3_banks = 2,
.max_vs_threads = 80,
.max_tcs_threads = 80,
@@ -606,7 +609,8 @@ static const struct gen_device_info gen_device_info_chv = {
#define GEN9_FEATURES \
GEN8_FEATURES, \
GEN9_HW_INFO, \
- .has_sample_with_hiz = true
+ .has_sample_with_hiz = true, \
+ .num_thread_per_eu = 7
static const struct gen_device_info gen_device_info_skl_gt1 = {
GEN9_FEATURES, .gt = 1,
@@ -773,7 +777,6 @@ static const struct gen_device_info gen_device_info_cfl_gt1 = {
.num_subslices = { 2, },
.num_eu_per_subslice = 6,
.l3_banks = 2,
- .urb.size = 192,
.simulator_id = 24,
};
static const struct gen_device_info gen_device_info_cfl_gt2 = {