Re: [Mesa-dev] [PATCH] glsl: use hash instead of exec_list in copy propagation

2016-09-06 Thread Kenneth Graunke
On Tuesday, September 6, 2016 10:17:57 AM PDT Tapani Pälli wrote: > This change makes copy propagation pass faster. Complete link time > spent in test case attached to bug 94477 goes down to ~400 secs from > over 500 secs on my HSW machine. Does not fix the actual issue but > brings down the total.

Re: [Mesa-dev] [PATCH] glsl: use hash instead of exec_list in copy propagation

2016-09-06 Thread Jason Ekstrand
On Tue, Sep 6, 2016 at 11:14 AM, Eric Anholt wrote: > Tapani Pälli writes: > > > This change makes copy propagation pass faster. Complete link time > > spent in test case attached to bug 94477 goes down to ~400 secs from > > over 500 secs on my HSW machine. Does not fix the actual issue but > >

Re: [Mesa-dev] [PATCH] glsl: use hash instead of exec_list in copy propagation

2016-09-06 Thread Eric Anholt
Tapani Pälli writes: > This change makes copy propagation pass faster. Complete link time > spent in test case attached to bug 94477 goes down to ~400 secs from > over 500 secs on my HSW machine. Does not fix the actual issue but > brings down the total. No regressions seen in CI. > > Signed-off-

[Mesa-dev] [PATCH] glsl: use hash instead of exec_list in copy propagation

2016-09-06 Thread Tapani Pälli
This change makes copy propagation pass faster. Complete link time spent in test case attached to bug 94477 goes down to ~400 secs from over 500 secs on my HSW machine. Does not fix the actual issue but brings down the total. No regressions seen in CI. Signed-off-by: Tapani Pälli --- Next I'll a