diff options
author | Jason Ekstrand <[email protected]> | 2016-01-22 11:09:24 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-01-22 11:10:54 -0800 |
commit | 16780632c2d970d7a7029f067401aeaed2cd9121 (patch) | |
tree | d3d250dd35f84a09dfbf1b6f1799ce693f8461a3 /src/mesa | |
parent | d9abbbe0d871f0467dbe3b4265a15960dc6f20b1 (diff) |
i965/nir: Temporariliy disable mul+add fusion
We don't want to do this in the long-run but it's needed for passing the
NoContraction tests at the moment. Eventually, we want to plumb this
through NIR properly.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_nir.c b/src/mesa/drivers/dri/i965/brw_nir.c index 0985c2cab4f..d983f58765e 100644 --- a/src/mesa/drivers/dri/i965/brw_nir.c +++ b/src/mesa/drivers/dri/i965/brw_nir.c @@ -535,7 +535,7 @@ brw_postprocess_nir(nir_shader *nir, if (devinfo->gen >= 6) { /* Try and fuse multiply-adds */ - OPT(brw_nir_opt_peephole_ffma); +// OPT(brw_nir_opt_peephole_ffma); } OPT(nir_opt_algebraic_late); |