Re: [Mesa-dev] [PATCH 2/3] nir/algebraic: Add more lowering

2016-01-07 Thread Iago Toral
On Wed, 2016-01-06 at 15:30 -0800, Jason Ekstrand wrote: > This commit adds lowering options for the following opcodes: > > - nir_op_fmod > - nir_op_bitfield_insert > - nir_op_uadd_carry > - nir_op_usub_borrow > --- > src/glsl/nir/nir.h| 4 >

Re: [Mesa-dev] [PATCH 2/3] nir/algebraic: Add more lowering

2016-01-07 Thread Matt Turner
On Thu, Jan 7, 2016 at 10:21 AM, Iago Toral wrote: > On Wed, 2016-01-06 at 15:30 -0800, Jason Ekstrand wrote: >> This commit adds lowering options for the following opcodes: >> >> - nir_op_fmod >> - nir_op_bitfield_insert >> - nir_op_uadd_carry >> - nir_op_usub_borrow >>

[Mesa-dev] [PATCH 2/3] nir/algebraic: Add more lowering

2016-01-06 Thread Jason Ekstrand
This commit adds lowering options for the following opcodes: - nir_op_fmod - nir_op_bitfield_insert - nir_op_uadd_carry - nir_op_usub_borrow --- src/glsl/nir/nir.h| 4 src/glsl/nir/nir_opt_algebraic.py | 6 ++ 2 files changed, 10 insertions(+) diff --git