Re: [Beignet] [PATCH] Fix the printf buffer size bug.

2015-01-13 Thread He Junyan
Sorry to add V2 comment, just ignore this. On 二, 2015-01-13 at 15:40 +0800, junyan...@inbox.com wrote: > From: Junyan He > > We can not know the accurate size of the printf buffer > size before run the kernel. Sometimes, especially when > the global work items size is huge, the output buffer >

[Beignet] [PATCH] Fix the printf buffer size bug.

2015-01-12 Thread junyan . he
From: Junyan He We can not know the accurate size of the printf buffer size before run the kernel. Sometimes, especially when the global work items size is huge, the output buffer is not enough and the print message logic will cause the segment fault. We increase the printf buffer to 16M at most

Re: [Beignet] [PATCH] Fix the printf buffer size bug.

2015-01-12 Thread Zhigang Gong
One comment as below: On Mon, Jan 12, 2015 at 01:55:22PM +0800, junyan...@inbox.com wrote: > From: Junyan He > > We can not know the accurate size of the printf buffer > size before run the kernel. Sometimes, especially when > the global work items size is huge, the output buffer > is not enough

[Beignet] [PATCH] Fix the printf buffer size bug.

2015-01-11 Thread junyan . he
From: Junyan He We can not know the accurate size of the printf buffer size before run the kernel. Sometimes, especially when the global work items size is huge, the output buffer is not enough and the print message logic will cause the segment fault. We increase the printf buffer to 16M at most