Re: [Mesa-dev] [PATCH 2/2] radeonsi: lower ffma in nir to mad.

2017-10-10 Thread Marek Olšák
For the series: Reviewed-by: Marek Olšák Marek On Oct 10, 2017 1:56 PM, "Nicolai Hähnle" wrote: > Both patches: > > Reviewed-by: Nicolai Hähnle > > On 10.10.2017 05:25, Dave Airlie wrote: > >> From: Dave Airlie >> >> This lowers ffma to a * b + c. >> >> This seems like it should keep Marek

Re: [Mesa-dev] [PATCH 2/2] radeonsi: lower ffma in nir to mad.

2017-10-10 Thread Nicolai Hähnle
Both patches: Reviewed-by: Nicolai Hähnle On 10.10.2017 05:25, Dave Airlie wrote: From: Dave Airlie This lowers ffma to a * b + c. This seems like it should keep Marek happiest, so we'd never get to the fma instruction emission code. Signed-off-by: Dave Airlie --- src/gallium/drivers/ra

[Mesa-dev] [PATCH 2/2] radeonsi: lower ffma in nir to mad.

2017-10-09 Thread Dave Airlie
From: Dave Airlie This lowers ffma to a * b + c. This seems like it should keep Marek happiest, so we'd never get to the fma instruction emission code. Signed-off-by: Dave Airlie --- src/gallium/drivers/radeonsi/si_pipe.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers