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 <[email protected]> --- 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 _______________________________________________ Beignet mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/beignet
