Re: [Mesa-dev] [PATCH 10/11] i965/fs: Implement support for ir_barrier

2015-04-25 Thread Jordan Justen
On 2015-03-22 19:57:47, Chris Forbes wrote: > Jordan, > > You also need to set m0.2:15 (Barrier count enable) and m0.2:14-9 > (Barrier count) to have the message gateway actually collect the > proper number of threads, right? Looking at IVB PRM, Vol 4, Part 2, 1.1.5.2 Message Payload Under M0.2,

Re: [Mesa-dev] [PATCH 10/11] i965/fs: Implement support for ir_barrier

2015-03-22 Thread Chris Forbes
Jordan, You also need to set m0.2:15 (Barrier count enable) and m0.2:14-9 (Barrier count) to have the message gateway actually collect the proper number of threads, right? - Chris On Mon, Mar 23, 2015 at 2:49 PM, Jordan Justen wrote: > Signed-off-by: Jordan Justen > Reviewed-by: Chris Forbes

Re: [Mesa-dev] [PATCH 10/11] i965/fs: Implement support for ir_barrier

2015-03-22 Thread Matt Turner
On Sun, Mar 22, 2015 at 6:49 PM, Jordan Justen wrote: > diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp > b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp > index 2b1b72f..5cde8f5 100644 > --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp > +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.

[Mesa-dev] [PATCH 10/11] i965/fs: Implement support for ir_barrier

2015-03-22 Thread Jordan Justen
Signed-off-by: Jordan Justen Reviewed-by: Chris Forbes --- src/mesa/drivers/dri/i965/brw_defines.h| 5 + src/mesa/drivers/dri/i965/brw_fs.h | 3 +++ src/mesa/drivers/dri/i965/brw_fs_generator.cpp | 11 +++ src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 27