Re: [Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-19 Thread Rob Clark
On Mon, Nov 19, 2018 at 3:15 PM Christian Gmeiner wrote: > > Am Mo., 12. Nov. 2018 um 19:17 Uhr schrieb Jonathan Marek : > > > > lowers ceil(x) as -floor(-x) > > > > Signed-off-by: Jonathan Marek > > Do you have push rights? As I am interested in this one I would push > it for you if needed. > I

Re: [Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-19 Thread Christian Gmeiner
Am Mo., 19. Nov. 2018 um 21:17 Uhr schrieb Jonathan marek : > > I don't have push rights, but robclark added this patch to his staging > branch so I imagine he will push it soon. > Great.. > On 11/19/2018 03:15 PM, Christian Gmeiner wrote: > > Am Mo., 12. Nov. 2018 um 19:17 Uhr schrieb Jonathan M

Re: [Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-19 Thread Jonathan marek
I don't have push rights, but robclark added this patch to his staging branch so I imagine he will push it soon. On 11/19/2018 03:15 PM, Christian Gmeiner wrote: Am Mo., 12. Nov. 2018 um 19:17 Uhr schrieb Jonathan Marek : lowers ceil(x) as -floor(-x) Signed-off-by: Jonathan Marek Do you h

Re: [Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-19 Thread Christian Gmeiner
Am Mo., 12. Nov. 2018 um 19:17 Uhr schrieb Jonathan Marek : > > lowers ceil(x) as -floor(-x) > > Signed-off-by: Jonathan Marek Do you have push rights? As I am interested in this one I would push it for you if needed. -- greets -- Christian Gmeiner, MSc https://christian-gmeiner.info _

Re: [Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-12 Thread Christian Gmeiner
Am Mo., 12. Nov. 2018 um 19:17 Uhr schrieb Jonathan Marek : > > lowers ceil(x) as -floor(-x) > > Signed-off-by: Jonathan Marek Reviewed-by: Christian Gmeiner > --- > src/compiler/nir/nir.h| 3 +++ > src/compiler/nir/nir_opt_algebraic.py | 1 + > 2 files changed, 4 insertions(+)

Re: [Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-12 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand On Mon, Nov 12, 2018 at 12:17 PM Jonathan Marek wrote: > lowers ceil(x) as -floor(-x) > > Signed-off-by: Jonathan Marek > --- > src/compiler/nir/nir.h| 3 +++ > src/compiler/nir/nir_opt_algebraic.py | 1 + > 2 files changed, 4 insertions(+) > > diff

[Mesa-dev] [PATCH 1/3] nir: add fceil lowering

2018-11-12 Thread Jonathan Marek
lowers ceil(x) as -floor(-x) Signed-off-by: Jonathan Marek --- src/compiler/nir/nir.h| 3 +++ src/compiler/nir/nir_opt_algebraic.py | 1 + 2 files changed, 4 insertions(+) diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index dc3c729dee..f9b32a5daf 100644 --- a/src/