<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">On 5/4/19 6:36 AM, llvm-dev wrote:<br>
</div>
<blockquote type="cite">
<div dir="ltr">
<div dir="ltr">Greetings,
<div><br>
</div>
<div>The LLVM loop vectorizer does a great job handling reductions with the `min(a, b)` function over an array of integers or floats. This finds the smallest value of a list exploiting SIMD instructions, and works just as well as a summation.</div>
<div><br>
</div>
<div>Specifically with floats, though, using the `fcmp` instruction, the vectorization seems to require the function attribute "no-nans-fp-math" to be set. Just setting instruction flags is not enough.
</div>
</div>
</div>
</blockquote>
<p><br>
</p>
<p>fcmp takes fast-math flags now, but that wasn't always true (my recollection is that was a capability added after the arithmetic operations). In any case, I wonder if this is just a hold-over from before fcmp took fast-math flags, or if this is an && condition
 that should be an || condition.<br>
</p>
<p><br>
</p>
<blockquote type="cite">
<div dir="ltr">
<div dir="ltr">
<div>This forces us to give up on fine-grained control of fast-math in the code in order to benefit from this vectorization.</div>
<div><br>
</div>
<div>How to overcome this? LLVM has intrinsic functions such as `minnum` and `minimum` (`minnan`) that accurately represent the operation. This could permit fine-grained control of fast-math flags, although the vectorizer seems to ignore these intrinsics.</div>
<div><br>
</div>
<div>Beyond this specific case, it would be nice to be sure when is it ever necessary to set these function attributes, e.g.</div>
<div><a href="https://github.com/llvm/llvm-project/blob/8205a814a691bfa62fed911b58b0a306ab5efe31/clang/lib/CodeGen/CGCall.cpp#L1743-L1750" moz-do-not-send="true">https://github.com/llvm/llvm-project/blob/8205a814a691bfa62fed911b58b0a306ab5efe31/clang/lib/CodeGen/CGCall.cpp#L1743-L1750</a><br>
</div>
<div><br>
</div>
<div>What would be a way to control the vectorization for `min` without having to rely on that function attribute? And furthermore, could LLVM optimizations conceivably depend only on instruction flags, and not ever on function attributes? What would be necessary
 to achieve this?</div>
</div>
</div>
</blockquote>
<p><br>
</p>
<p>The goal has been to eliminate the dependence on the function attributes once all of the necessary local flags are in place. Obviously I could be missing something, but this just seems like a bug.</p>
<p> -Hal<br>
</p>
<blockquote type="cite">
<div dir="ltr">
<div dir="ltr">
<div><br>
</div>
<div>Thanks,</div>
<div><br>
</div>
<div>-- <br>
</div>
<div>
<div dir="ltr" class="gmail_signature">
<div dir="ltr">
<div>Nicolau Werneck <<a href="mailto:nwerneck@gmail.com" target="_blank" moz-do-not-send="true">nwerneck@gmail.com</a>><br>
<a href="http://nwerneck.sdf.org" target="_blank" moz-do-not-send="true">http://n</a><a href="http://ic.hpavc.net" target="_blank" moz-do-not-send="true">ic.hpavc.net</a><br>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
<fieldset class="mimeAttachmentHeader"></fieldset>
<pre class="moz-quote-pre" wrap="">_______________________________________________
LLVM Developers mailing list
<a class="moz-txt-link-abbreviated" href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a>
</pre>
</blockquote>
<p><br>
</p>
</body>
</html>