Runtime: increase the build log buffer size to 1000.
authorZhigang Gong <zhigang.gong@linux.intel.com>
Thu, 17 Apr 2014 05:11:50 +0000 (13:11 +0800)
committerZhigang Gong <zhigang.gong@intel.com>
Thu, 17 Apr 2014 07:05:56 +0000 (15:05 +0800)
200 is too small sometimes.

Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com>
Reviewed-by: He Junyan <junyan.he@inbox.com>
src/cl_program.c

index 10eecee..8ae3aa7 100644 (file)
@@ -109,9 +109,9 @@ cl_program_new(cl_context ctx)
   p->ref_n = 1;
   p->magic = CL_MAGIC_PROGRAM_HEADER;
   p->ctx = ctx;
-  p->build_log = calloc(200, sizeof(char));
+  p->build_log = calloc(1000, sizeof(char));
   if (p->build_log)
-    p->build_log_max_sz = 200;
+    p->build_log_max_sz = 1000;
   /* The queue also belongs to its context */
   cl_context_add_ref(ctx);