<div dir="auto"><div>Uh... This hurts overall... The optimization makes sense but do we have some justification for the hurt?<br><div class="gmail_extra"><br><div class="gmail_quote">On Jan 7, 2017 3:59 AM, "Timothy Arceri" <<a href="mailto:timothy.arceri@collabora.com">timothy.arceri@collabora.com</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">From: Kenneth Graunke <<a href="mailto:kenneth@whitecape.org">kenneth@whitecape.org</a>><br>
<br>
On BDW:<br>
<br>
total instructions in shared programs: 13078708 -> 13078787 (0.00%)<br>
instructions in affected programs: 15926 -> 16005 (0.50%)<br>
helped: 19<br>
HURT: 43<br>
<br>
total cycles in shared programs: 256561142 -> 256562762 (0.00%)<br>
cycles in affected programs: 126122 -> 127742 (1.28%)<br>
helped: 21<br>
HURT: 37<br>
<br>
v2: Rely on b2f's operands being a well-formed boolean (Connor, Eric).<br>
    Fix typo in commit title (Patrick).<br>
<br>
Signed-off-by: Kenneth Graunke <<a href="mailto:kenneth@whitecape.org">kenneth@whitecape.org</a>><br>
Reviewed-by: Ian Romanick <<a href="mailto:ian.d.romanick@intel.com">ian.d.romanick@intel.com</a>> [v1]<br>
Reviewed-by: Timothy Arceri <<a href="mailto:timothy.arceri@collabora.com">timothy.arceri@collabora.com</a>><br>
---<br>
 src/compiler/nir/nir_opt_<wbr>algebraic.py | 3 +++<br>
 1 file changed, 3 insertions(+)<br>
<br>
diff --git a/src/compiler/nir/nir_opt_<wbr>algebraic.py b/src/compiler/nir/nir_opt_<wbr>algebraic.py<br>
index 434881f..fa9f3f1 100644<br>
--- a/src/compiler/nir/nir_opt_<wbr>algebraic.py<br>
+++ b/src/compiler/nir/nir_opt_<wbr>algebraic.py<br>
@@ -150,6 +150,9 @@ optimizations = [<br>
    # inot(a)<br>
    (('fge', 0.0, ('b2f', a)), ('inot', a)),<br>
<br>
+   # -(b2f(a) + b2f(b)) >= 0 becomes !(a || b)<br>
+   (('fge', ('fneg', ('fadd', ('b2f', a), ('b2f', b))), 0.0), ('inot', ('ior', a, b))),<br>
+<br>
    # 0.0 < fabs(a)<br>
    # fabs(a) > 0.0<br>
    # fabs(a) != 0.0 because fabs(a) must be >= 0<br>
<font color="#888888">--<br>
2.9.3<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</font></blockquote></div><br></div></div></div>