Re: [Mesa-dev] [PATCH] ir_to_mesa: Skip useless comparison instructions.

2015-12-16 Thread Ian Romanick
This looks right. I haven't tested it on i915, but the CI will soon enough. Reviewed-by: Ian Romanick On 12/07/2015 10:50 AM, Matt Turner wrote: > --- > With this, we generate the same number of Mesa IR instructions before > and after my series. all() is the same as well. > > src/mesa/program

Re: [Mesa-dev] [PATCH] ir_to_mesa: Skip useless comparison instructions.

2015-12-16 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Mon, Dec 7, 2015 at 7:50 PM, Matt Turner wrote: > --- > With this, we generate the same number of Mesa IR instructions before > and after my series. all() is the same as well. > > src/mesa/program/ir_to_mesa.cpp | 8 +++- > 1 file changed, 7 insertions(+),

Re: [Mesa-dev] [PATCH] ir_to_mesa: Skip useless comparison instructions.

2015-12-15 Thread Matt Turner
On Mon, Dec 7, 2015 at 10:50 AM, Matt Turner wrote: > --- > With this, we generate the same number of Mesa IR instructions before > and after my series. all() is the same as well. Maybe Ian could have a look? ___ mesa-dev mailing list mesa-dev@lists.fre

[Mesa-dev] [PATCH] ir_to_mesa: Skip useless comparison instructions.

2015-12-07 Thread Matt Turner
--- With this, we generate the same number of Mesa IR instructions before and after my series. all() is the same as well. src/mesa/program/ir_to_mesa.cpp | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp in