<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:#0563C1;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:#954F72;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72">
<div class="WordSection1">
<p class="MsoNormal">I'd like to start a discussion about how clang supports _Float16 for target architectures that don't have direct support for 16-bit floating point arithmetic.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">The current clang language extensions documentation says, "If half-precision instructions are unavailable, values will be promoted to single-precision, similar to the semantics of __fp16 except that the results will be stored in single-precision."
 This is somewhat vague (to me) as to what is meant by promotion of values, and the part about results being stored in single-precision isn't what actually happens.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Consider this example:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><span style="color:black">_Float16 x;</span><o:p></o:p></p>
<p class="MsoNormal"><span style="color:black">_Float16 f(_Float16 y, _Float16 z) {</span><o:p></o:p></p>
<p class="MsoNormal"><span style="color:black">  x = y * z;</span><o:p></o:p></p>
<p class="MsoNormal"><span style="color:blue">  </span>return<span style="color:black"> x;</span><o:p></o:p></p>
<p class="MsoNormal"><span style="color:black">}</span><o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">When compiling with “-march=core-avx2” that results (after some trivial cleanup) in this IR:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">@x = global half 0xH0000, align 2<o:p></o:p></p>
<p class="MsoNormal">define half @f(half, half) {<o:p></o:p></p>
<p class="MsoNormal">  %3 = fmul half %0, %1<o:p></o:p></p>
<p class="MsoNormal">  store half %3, half* @x<o:p></o:p></p>
<p class="MsoNormal">  ret half %3<o:p></o:p></p>
<p class="MsoNormal">}<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">That’s not too unreasonable I suppose, except for the fact that it hasn’t taken the lack of target support for half-precision arithmetic into account yet. That will happen in the selection DAG. The assembly code generated looks like this
 (with my annotations):<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">f:                                      # @f<o:p></o:p></p>
<p class="MsoNormal"># %bb.0:<o:p></o:p></p>
<p class="MsoNormal">       vcvtps2ph       xmm1, xmm1, 4             # Convert argument 1 from single to half<o:p></o:p></p>
<p class="MsoNormal">        vcvtph2ps       xmm1, xmm1                # Convert argument 1 back to single<o:p></o:p></p>
<p class="MsoNormal">        vcvtps2ph       xmm0, xmm0, 4            # Convert argument 0 from single to half<o:p></o:p></p>
<p class="MsoNormal">        vcvtph2ps       xmm0, xmm0                # Convert argument 0 back to single<o:p></o:p></p>
<p class="MsoNormal">        vmulss             xmm0, xmm0, xmm1   # xmm0 = xmm0*xmm1 (single precision)<o:p></o:p></p>
<p class="MsoNormal">        vcvtps2ph       xmm1, xmm0, 4            # Convert the single precision result to half<o:p></o:p></p>
<p class="MsoNormal">        vmovd             eax, xmm1                      # Move the half precision result to eax<o:p></o:p></p>
<p class="MsoNormal">        mov                 word ptr [rip + x], ax     # Store the half precision result in the global, x<o:p></o:p></p>
<p class="MsoNormal">        ret                                                             # Return the single precision result still in xmm0<o:p></o:p></p>
<p class="MsoNormal">.Lfunc_end0:<o:p></o:p></p>
<p class="MsoNormal">                                        # -- End function<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Something odd has happened here, and it may not be obvious what it is. This code begins by converting xmm0 and xmm1 from single to half and then back to single. The first conversion is happening because the back end decided that it needed
 to change the types of the parameters to single precision but the function body is expecting half precision values. However, since the target can’t perform the required computation with half precision values they must be converted back to single for the multiplication.
 The single precision result of the multiplication is converted to half precision to be stored in the global value, x, but the result is returned as single precision (via xmm0).<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I’m not primarily worried about the extra conversions here. We can’t get rid of them because we can’t prove they aren’t rounding, but that’s a secondary issue. What I’m worried about is that we allowed/required the back end to improvise
 an ABI to satisfy the incoming IR, and the choice it made is questionable.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">For a point of comparison, I looked at what gcc does. Currently, gcc only allows _Float16 in C, not C++, and if you try to use it with a target that doesn’t have native support for half-precision arithmetic, it tells you “’_Float16’ is
 not supported on this target.” That seems preferable to making up an ABI on the fly.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I haven’t looked at what happens with clang when compiling for other targets that don’t have native support for half-precision arithmetic, but I would imagine that similar problems exist.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thoughts?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks,<o:p></o:p></p>
<p class="MsoNormal">Andy<o:p></o:p></p>
</div>
</body>
</html>