[Beignet] [PATCH 2/2] Runtime: fix the max group size for GT2.

Zhigang Gong zhigang.gong at linux.intel.com
Thu Aug 29 20:16:24 PDT 2013


We should keep the max group size and the CL_KERNEL_WORK_GROUP_SIZE
consistency wit each other. Otherwise, the conformance test will trigger
an error.

Signed-off-by: Zhigang Gong <zhigang.gong at linux.intel.com>
---
 src/cl_device_id.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cl_device_id.c b/src/cl_device_id.c
index a2c3ed2..16b343d 100644
--- a/src/cl_device_id.c
+++ b/src/cl_device_id.c
@@ -39,7 +39,7 @@ static struct _cl_device_id intel_ivb_gt2_device = {
   .max_compute_unit = 128,
   .max_thread_per_unit = 8,
   .max_work_item_sizes = {512, 512, 512},
-  .max_work_group_size = 512,
+  .max_work_group_size = 1024,
   .max_clock_frequency = 1000,
   .wg_sz = 1024,
   .compile_wg_sz = {0},	
-- 
1.7.9.5



More information about the Beignet mailing list