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.
This commit is contained in:
Jason Ekstrand
2016-01-22 11:09:24 -08:00
parent d9abbbe0d8
commit 16780632c2
+1 -1
View File
@@ -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);