[Mesa-dev] [PATCH 6/7] radeonsi/compute: Stop leaking the input buffer

2014-08-08 Thread Tom Stellard
We were leaking the input buffer used for kernel arguments and since we were allocating it using si_upload_const_buffer() we were leaking 1 MB per kernel invocation. CC: "10.2" --- src/gallium/drivers/radeonsi/si_compute.c | 22 ++ 1 file changed, 14 insertions(+), 8 deletion

Re: [Mesa-dev] [PATCH 6/7] radeonsi/compute: Stop leaking the input buffer

2014-08-26 Thread Emil Velikov
On 08/08/14 15:16, Tom Stellard wrote: > We were leaking the input buffer used for kernel arguments and since > we were allocating it using si_upload_const_buffer() we were leaking > 1 MB per kernel invocation. > > CC: "10.2" > --- > src/gallium/drivers/radeonsi/si_compute.c | 22 ++-