<div dir="ltr">On 21 January 2013 15:24, Chad Versace <span dir="ltr"><<a href="mailto:chad.versace@linux.intel.com" target="_blank">chad.versace@linux.intel.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Generate the following test files:<br>
  {const,vs,fs}-{pack,unpack}{Snorm,Unorm,Half}2x16.shader_test<br>
<br>
The tests are generated by a new Python script,<br>
gen_builtin_packing_tests.py, and placed into directory<br>
spec/glsl-es-3.00/execution/built-in-functions.<br>
<br>
v2: Add reduced_input_table. This allows us to generate a smaller set of<br>
    inputs for packHalf2x16 in order to avoid Linux's oom-killer.<br></blockquote><div><br></div><div>The change looks good, thanks.<br><br>I've included a couple of minor comments below, including some other ideas for speeding up performance if it's still slow, but I don't consider any of them blocking issues, so consider this patch:<br>
<br>Reviewed-by: Paul Berry <<a href="mailto:stereotype441@gmail.com">stereotype441@gmail.com</a>><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

<br>
CC: Paul Berry <<a href="mailto:stereotype441@gmail.com">stereotype441@gmail.com</a>><br>
Signed-off-by: Chad Versace <<a href="mailto:chad.versace@linux.intel.com">chad.versace@linux.intel.com</a>><br>
---<br>
 generated_tests/CMakeLists.txt               |    6 +-<br>
 generated_tests/gen_builtin_packing_tests.py | 1230 ++++++++++++++++++++++++++<br>
 2 files changed, 1235 insertions(+), 1 deletion(-)<br>
 create mode 100644 generated_tests/gen_builtin_packing_tests.py<br>
<br>
diff --git a/generated_tests/CMakeLists.txt b/generated_tests/CMakeLists.txt<br>
index e371ff8..694a213 100644<br>
--- a/generated_tests/CMakeLists.txt<br>
+++ b/generated_tests/CMakeLists.txt<br>
@@ -20,6 +20,9 @@ endfunction(piglit_make_generated_tests custom_target generator_script)<br>
<br>
 # Create custom commands and targets to build generated tests.<br>
 piglit_make_generated_tests(<br>
+       builtin_packing_tests.list<br>
+       gen_builtin_packing_tests.py)<br>
+piglit_make_generated_tests(<br>
        builtin_uniform_tests.list<br>
        gen_builtin_uniform_tests.py<br>
        builtin_function.py)<br>
@@ -49,7 +52,8 @@ piglit_make_generated_tests(<br>
 # Add a "gen-tests" target that can be used to generate all the<br>
 # tests without doing any other compilation.<br>
 add_custom_target(gen-tests ALL<br>
-       DEPENDS builtin_uniform_tests.list<br>
+       DEPENDS builtin_packing_tests.list<br>
+               builtin_uniform_tests.list<br>
                constant_array_size_tests.list<br>
                interpolation_tests.list<br>
                non-lvalue_tests.list<br>
diff --git a/generated_tests/gen_builtin_packing_tests.py b/generated_tests/gen_builtin_packing_tests.py<br>
new file mode 100644<br>
index 0000000..d36c4c6<br>
--- /dev/null<br>
+++ b/generated_tests/gen_builtin_packing_tests.py<br>
@@ -0,0 +1,1230 @@<br>
+#!/usr/bin/env python2<br>
+# coding=utf-8<br>
+<br>
+import mako.template<br>
+import mako.runtime<br>
+import math<br>
+import numpy as np<br>
+import optparse<br>
+import os<br>
+import sys<br>
+<br>
+from collections import namedtuple<br>
+from mako.template import Template<br>
+from math import copysign, fabs, fmod, frexp, isinf, isnan, modf<br>
+from numpy import int16, int32, uint16, uint32, float32<br>
+from textwrap import dedent<br>
+<br>
+# ----------------------------------------------------------------------------<br>
+# Overview<br>
+# ----------------------------------------------------------------------------<br>
+#<br>
+# This scripts generates tests for the GLSL packing functions, such as<br>
+# packSnorm2x16.<br>
+#<br>
+# In the test templates below, observe that the GLSL function's actual output<br>
+# is compared against multiple expected outputs.  Given an input and<br>
+# a pack/unpackfunction, there exist multiple valid outputs because the GLSL<br>
+# specs permit variation in the implementation of the function. The actual<br>
+# output is dependent on the GLSL compiler's and hardware's choice of rounding<br>
+# mode (for example, to even or to nearest) and handling of subnormal (also<br>
+# called denormalized) floating point numbers.<br>
+<br>
+# ----------------------------------------------------------------------------<br>
+# Templates for test files<br>
+# ----------------------------------------------------------------------------<br>
+<br>
+# Test evaluation of constant pack2x16 expressions.<br>
+const_pack_2x16_template = Template(dedent("""\<br>
+    [require]<br>
+    GL ES >= 3.0<br>
+    GLSL ES >= 3.00<br>
+<br>
+    [vertex shader]<br>
+    const vec4 red = vec4(1, 0, 0, 1);<br>
+    const vec4 green = vec4(0, 1, 0, 1);<br>
+<br>
+    in vec4 vertex;<br>
+    out vec4 vert_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        ${func.result_precision} uint actual;<br>
+<br>
+        gl_Position = vertex;<br>
+<br>
+        % for io in func.inout_seq:<br>
+        actual = ${<a href="http://func.name" target="_blank">func.name</a>}(vec2(${io.input[0]}, ${io.input[1]}));<br>
+<br>
+        if (true<br>
+            % for u in io.valid_outputs:<br></blockquote><div><br></div><div>Not a huge deal, but you might get better performance out of the shader compiler if you change this to "% for u in sorted(set(io.valid_outputs))".  (This drops duplicate entries from io.valid_outputs, which happen a lot because frequently the different rounding/flushing options don't affect the result.)<br>
</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+            && actual != ${u}<br>
+            % endfor<br>
+           ) {<br>
+            vert_color = red;<br>
+            return;<br>
+        }<br>
+<br>
+        % endfor<br>
+<br>
+        vert_color = green;<br>
+    }<br></blockquote><div><br></div><div>Another possible performance improvement would be to change the logic to:<br><br></div><div>vert_color = green;<br>% for io in func.inout_seq:<br></div><div>actual = ...<br></div>
<div>if (...) {<br></div><div>   vert_color = red;<br>}<br></div><div>% endfor<br><br></div><div>In orther words, instead of using a "return" statement to shortcut the shader once a failure is found, set vert_color to green initially, and then only change it to red if a failure is found.  The reason this might improve performance is because on architectures with limited JMP support, the version with the embedded return statements has to get rewritten to a very deeply-nested if tree.<br>
</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+<br>
+    [fragment shader]<br>
+    in vec4 vert_color;<br>
+    out vec4 frag_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        frag_color = vert_color;<br>
+    }<br>
+<br>
+    [vertex data]<br>
+    vertex/float/2<br>
+    -1.0 -1.0<br>
+     1.0 -1.0<br>
+     1.0  1.0<br>
+    -1.0  1.0<br>
+<br>
+    [test]<br>
+    draw arrays GL_TRIANGLE_FAN 0 4<br>
+    probe all rgba 0.0 1.0 0.0 1.0<br>
+"""))<br>
+<br>
+# Test evaluation of constant unpack2x16 expressions.<br>
+const_unpack_2x16_template = Template(dedent("""\<br>
+    [require]<br>
+    GL ES >= 3.0<br>
+    GLSL ES >= 3.00<br>
+<br>
+    [vertex shader]<br>
+    const vec4 red = vec4(1, 0, 0, 1);<br>
+    const vec4 green = vec4(0, 1, 0, 1);<br>
+<br>
+    in vec4 vertex;<br>
+    out vec4 vert_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        ${func.result_precision} vec2 actual;<br>
+<br>
+        gl_Position = vertex;<br>
+<br>
+        % for io in func.inout_seq:<br>
+        actual = ${<a href="http://func.name" target="_blank">func.name</a>}(${io.input});<br>
+<br>
+        if (true<br>
+            % for v in io.valid_outputs:<br>
+            && actual != vec2(${v[0]}, ${v[1]})<br>
+            % endfor<br>
+           ) {<br>
+            vert_color = red;<br>
+            return;<br>
+        }<br>
+<br>
+        % endfor<br>
+<br>
+        vert_color = green;<br>
+    }<br>
+<br>
+    [fragment shader]<br>
+    in vec4 vert_color;<br>
+    out vec4 frag_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        frag_color = vert_color;<br>
+    }<br>
+<br>
+    [vertex data]<br>
+    vertex/float/2<br>
+    -1.0 -1.0<br>
+     1.0 -1.0<br>
+     1.0  1.0<br>
+    -1.0  1.0<br>
+<br>
+    [test]<br>
+    draw arrays GL_TRIANGLE_FAN 0 4<br>
+    probe all rgba 0.0 1.0 0.0 1.0<br>
+"""))<br>
+<br>
+# Test execution of pack2x16 functions in the vertex shader.<br>
+vs_pack_2x16_template = Template(dedent("""\<br>
+    [require]<br>
+    GL ES >= 3.0<br>
+    GLSL ES >= 3.00<br>
+<br>
+    [vertex shader]<br>
+    const vec4 red = vec4(1, 0, 0, 1);<br>
+    const vec4 green = vec4(0, 1, 0, 1);<br>
+<br>
+    uniform vec2 func_input;<br>
+<br>
+    % for j in range(func.num_valid_outputs):<br>
+    uniform ${func.result_precision} uint expect${j};<br>
+    % endfor<br>
+<br>
+    in vec4 vertex;<br>
+    out vec4 vert_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        gl_Position = vertex;<br>
+        ${func.result_precision} uint actual = ${<a href="http://func.name" target="_blank">func.name</a>}(func_input);<br>
+<br>
+        if (false<br>
+            % for j in range(func.num_valid_outputs):<br>
+            || actual == expect${j}<br>
+            % endfor<br>
+           ) {<br>
+           vert_color = green;<br>
+        } else {<br>
+            vert_color = red;<br>
+        }<br>
+    }<br>
+<br>
+    [fragment shader]<br>
+    in vec4 vert_color;<br>
+    out vec4 frag_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        frag_color = vert_color;<br>
+    }<br>
+<br>
+    [vertex data]<br>
+    vertex/float/2<br>
+    -1.0 -1.0<br>
+     1.0 -1.0<br>
+     1.0  1.0<br>
+    -1.0  1.0<br>
+<br>
+    [test]<br>
+    % for io in func.inout_seq:<br>
+    uniform vec2 func_input ${io.input[0]} ${io.input[1]}<br>
+    % for j in range(func.num_valid_outputs):<br>
+    uniform uint expect${j} ${io.valid_outputs[j]}<br>
+    % endfor<br>
+    draw arrays GL_TRIANGLE_FAN 0 4<br>
+    probe all rgba 0.0 1.0 0.0 1.0<br>
+<br>
+    % endfor<br>
+"""))<br>
+<br>
+# Test execution of unpack2x16 functions in the vertex shader.<br>
+vs_unpack_2x16_template = Template(dedent("""\<br>
+    [require]<br>
+    GL ES >= 3.0<br>
+    GLSL ES >= 3.00<br>
+<br>
+    [vertex shader]<br>
+    const vec4 red = vec4(1, 0, 0, 1);<br>
+    const vec4 green = vec4(0, 1, 0, 1);<br>
+<br>
+    uniform highp uint func_input;<br>
+<br>
+    % for j in range(func.num_valid_outputs):<br>
+    uniform ${func.result_precision} vec2 expect${j};<br>
+    % endfor<br>
+<br>
+    in vec4 vertex;<br>
+    out vec4 vert_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        gl_Position = vertex;<br>
+<br>
+        ${func.result_precision} vec2 actual = ${<a href="http://func.name" target="_blank">func.name</a>}(func_input);<br>
+<br>
+        if (false<br>
+            % for j in range(func.num_valid_outputs):<br>
+            || actual == expect${j}<br>
+            % endfor<br>
+           ) {<br>
+            vert_color = green;<br>
+        } else {<br>
+            vert_color = red;<br>
+        }<br>
+    }<br>
+<br>
+    [fragment shader]<br>
+    in vec4 vert_color;<br>
+    out vec4 frag_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        frag_color = vert_color;<br>
+    }<br>
+<br>
+    [vertex data]<br>
+    vertex/float/2<br>
+    -1.0 -1.0<br>
+     1.0 -1.0<br>
+     1.0  1.0<br>
+    -1.0  1.0<br>
+<br>
+    [test]<br>
+    % for io in func.inout_seq:<br>
+    uniform uint func_input ${io.input}<br>
+    % for j in range(func.num_valid_outputs):<br>
+    uniform vec2 expect${j} ${io.valid_outputs[j][0]} ${io.valid_outputs[j][1]}<br>
+    % endfor<br>
+    draw arrays GL_TRIANGLE_FAN 0 4<br>
+    probe all rgba 0.0 1.0 0.0 1.0<br>
+<br>
+    % endfor<br>
+"""))<br>
+<br>
+<br>
+# Test execution of pack2x16 functions in the fragment shader.<br>
+fs_pack_2x16_template = Template(dedent("""\<br>
+    [require]<br>
+    GL ES >= 3.0<br>
+    GLSL ES >= 3.00<br>
+<br>
+    [vertex shader]<br>
+    in vec4 vertex;<br>
+<br>
+    void main()<br>
+    {<br>
+        gl_Position = vertex;<br>
+    }<br>
+<br>
+    [fragment shader]<br>
+    const vec4 red = vec4(1, 0, 0, 1);<br>
+    const vec4 green = vec4(0, 1, 0, 1);<br>
+<br>
+    uniform vec2 func_input;<br>
+<br>
+    % for i in range(func.num_valid_outputs):<br>
+    uniform ${func.result_precision} uint expect${i};<br>
+    % endfor<br>
+<br>
+    out vec4 frag_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        ${func.result_precision} uint actual = ${<a href="http://func.name" target="_blank">func.name</a>}(func_input);<br>
+<br>
+        if (false<br>
+            % for i in range(func.num_valid_outputs):<br>
+            || actual == expect${i}<br>
+            % endfor<br>
+           ) {<br>
+            frag_color = green;<br>
+        } else {<br>
+            frag_color = red;<br>
+        }<br>
+    }<br>
+<br>
+    [vertex data]<br>
+    vertex/float/2<br>
+    -1.0 -1.0<br>
+     1.0 -1.0<br>
+     1.0  1.0<br>
+    -1.0  1.0<br>
+<br>
+    [test]<br>
+    % for io in func.inout_seq:<br>
+    uniform vec2 func_input ${io.input[0]} ${io.input[1]}<br>
+    % for i in range(func.num_valid_outputs):<br>
+    uniform uint expect${i} ${io.valid_outputs[i]}<br>
+    % endfor<br>
+    draw arrays GL_TRIANGLE_FAN 0 4<br>
+    probe all rgba 0.0 1.0 0.0 1.0<br>
+<br>
+    % endfor<br>
+"""))<br>
+<br>
+# Test execution of unpack2x16 functions in the fragment shader.<br>
+fs_unpack_2x16_template = Template(dedent("""\<br>
+    [require]<br>
+    GL ES >= 3.0<br>
+    GLSL ES >= 3.00<br>
+<br>
+    [vertex shader]<br>
+    in vec4 vertex;<br>
+<br>
+    void main()<br>
+    {<br>
+        gl_Position = vertex;<br>
+    }<br>
+<br>
+    [fragment shader]<br>
+    const vec4 red = vec4(1, 0, 0, 1);<br>
+    const vec4 green = vec4(0, 1, 0, 1);<br>
+<br>
+    uniform highp uint func_input;<br>
+<br>
+    % for i in range(func.num_valid_outputs):<br>
+    uniform ${func.result_precision} vec2 expect${i};<br>
+    % endfor<br>
+<br>
+    out vec4 frag_color;<br>
+<br>
+    void main()<br>
+    {<br>
+        ${func.result_precision} vec2 actual = ${<a href="http://func.name" target="_blank">func.name</a>}(func_input);<br>
+<br>
+        if (false<br>
+            % for i in range(func.num_valid_outputs):<br>
+            || actual == expect${i}<br>
+            % endfor<br>
+           ) {<br>
+            frag_color = green;<br>
+        } else {<br>
+            frag_color = red;<br>
+        }<br>
+    }<br>
+<br>
+    [vertex data]<br>
+    vertex/float/2<br>
+    -1.0 -1.0<br>
+     1.0 -1.0<br>
+     1.0  1.0<br>
+    -1.0  1.0<br>
+<br>
+    [test]<br>
+    % for io in func.inout_seq:<br>
+    uniform uint func_input ${io.input}<br>
+    % for i in range(func.num_valid_outputs):<br>
+    uniform vec2 expect${i} ${io.valid_outputs[i][0]} ${io.valid_outputs[i][1]}<br>
+    % endfor<br>
+    draw arrays GL_TRIANGLE_FAN 0 4<br>
+    probe all rgba 0.0 1.0 0.0 1.0<br>
+<br>
+    % endfor<br>
+"""))<br>
+<br>
+template_table = {<br>
+    ("const", "p", "2x16") : const_pack_2x16_template,<br>
+    ("const", "u", "2x16") : const_unpack_2x16_template,<br>
+    ("vs",    "p", "2x16") : vs_pack_2x16_template,<br>
+    ("vs",    "u", "2x16") : vs_unpack_2x16_template,<br>
+    ("fs",    "p", "2x16") : fs_pack_2x16_template,<br>
+    ("fs",    "u", "2x16") : fs_unpack_2x16_template,<br>
+}<br>
+<br>
+# ----------------------------------------------------------------------------<br>
+# Math for pack/unpack functions<br>
+# ----------------------------------------------------------------------------<br>
+<br>
+class FuncOpts:<br>
+    """Options that modify the evaluation of the GLSL pack/unpack functions.<br>
+<br>
+    Given an input and a pack/unpack function, there exist multiple valid<br>
+    outputs because the GLSL specs permit variation in the implementation of<br>
+    the function. The actual output is dependent on the GLSL compiler's and<br>
+    hardware's choice of rounding mode (for example, to even or to nearest)<br>
+    and handling of subnormal (also called denormalized) floating point<br>
+    numbers.<br>
+<br>
+    This class attempts to capture such permitted variations in implementation<br>
+    behavior. To select a particular behavior, pass the appropriate enums to<br>
+    the constructor.<br>
+<br>
+    What follows is an explanation of the variations and how to select them.<br>
+<br>
+    Flushing subnormal floats to zero<br>
+    ---------------------------------<br>
+    The GLSL ES 3.00 and GLSL 4.10 specs allows implementations to truncate<br>
+    subnormal floats to zero. From section 4.5.1 "Range and Precision" of the<br>
+    two specs:<br>
+        Any subnormal (denormalized) value input into a shader or<br>
+        potentially generated by any operation in a shader can be<br>
+        flushed to 0.<br>
+<br>
+    The constructor parameter 'flush_mode' selects the flushing behavior.<br>
+    Valid values are:<br>
+        - FLUSH_NONE:  Flush no float to zero.<br>
+        - FLUSH_FLOAT32: Flush subnormal float32 values to zero.<br></blockquote><div><br></div><div>Thinking about this some more, I have to admit some surprise that it's necessary to account for flushing of subnormal float32 values in this test generator.  It seems to me that since all subnormal float32's are extraordinarily tiny (-2^-126 < x < 2^-126), they will always behave equivalently to zero considering the coarseness of the packing functions.  Are you aware of a counterexample?<br>
</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+<br>
+    Rounding mode<br>
+    -------------<br>
+    For some packing functions, the GLSL ES 3.00 specification's definition of<br>
+    the function's behavior involves round(), whose behavior at<br>
+    0.5 is an implementation detail. From section 8.3 of the spec:<br>
+        The fraction 0.5 will round in a direction chosen by the<br>
+        implementation, presumably the direction that is fastest.<br>
+<br>
+    The constructor parameter 'round_mode' selects the rounding behavior.<br>
+    Valid values are:<br>
+        - ROUND_TO_EVEN<br>
+        - ROUND_TO_NEAREST<br>
+    """ <br></blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+<br>
+    FLUSH_NONE = 0<br>
+    FLUSH_FLOAT32 = 1<br>
+<br>
+    ROUND_TO_EVEN = 0<br>
+    ROUND_TO_NEAREST = 1<br>
+<br>
+    def __init__(self, round_mode=ROUND_TO_EVEN, flush_mode=FLUSH_NONE):<br>
+        if round_mode == FuncOpts.ROUND_TO_EVEN:<br>
+            self.__round_func = round_to_even<br>
+        elif round_mode == FuncOpts.ROUND_TO_NEAREST:<br>
+            self.__round_func = round_to_nearest<br>
+        else:<br>
+            assert(False)<br>
+<br>
+        assert(flush_mode in [FuncOpts.FLUSH_NONE,<br>
+                              FuncOpts.FLUSH_FLOAT32])<br>
+        self.__flush_mode = flush_mode<br>
+<br>
+    def round(self, x):<br>
+        """Round a float according to the requested rounding mode."""<br>
+        assert(any(isinstance(x, T) for T in [float, float32]))<br>
+<br>
+        # Drop the floating-point precision from 64 to 32 bits before<br>
+        # rounding.  The loss of precision may shift the float's fractional<br>
+        # value to 0.5, which will affect the rounding.<br>
+        x = float32(x)<br>
+        return self.__round_func(x)<br>
+<br>
+    def maybe_flush_subnormal_float32_to_zero(self, x):<br>
+        "The specified flushing mode determines whether this is a no-op."""<br>
+        assert(isinstance(x, float32))<br>
+<br>
+        if self.__flush_mode == FuncOpts.FLUSH_FLOAT32:<br>
+            return flush_subnormal_float32_to_zero(x)<br>
+        else:<br>
+            return x<br>
+<br>
+def flush_subnormal_float32_to_zero(x):<br>
+    assert(isinstance(x, float32))<br>
+<br>
+    (m, e) = frexp(x)<br>
+    if e < -125: <br></blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+        return copysign(0.0, x)<br>
+    else:<br>
+        return x<br></blockquote><div><br><div>I believe this is correct, but it took some mental gymnastics to 
think through the behaviour of frexp() and convince myself it was 
right.  Would this be easier to follow?<br><br></div><div>MIN_NORMAL_FLOAT32 = pow(2, -126)<br></div><div>if abs(x) < MIN_NORMAL_FLOAT32:<br></div><div>   return copysign(0.0, x)<br></div><div>else:<br></div><div>   return x<br>
</div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+<br>
+def clamp(x, min, max):<br>
+    if x < min:<br>
+        return min<br>
+    elif x > max:<br>
+        return max<br>
+    else:<br>
+        return x<br>
+<br>
+def round_to_nearest(x):<br>
+    # Get fractional and integral parts.<br>
+    (f, i) = modf(x)<br>
+<br>
+    if fabs(f) < 0.5:<br>
+        return i<br>
+    else:<br>
+        return i + copysign(1.0, x)<br>
+<br>
+def round_to_even(x):<br>
+    # Get fractional and integral parts.<br>
+    (f, i) = modf(x)<br>
+<br>
+    if fabs(f) < 0.5:<br>
+        return i<br>
+    elif fabs(f) == 0.5:<br>
+        return i + fmod(i, 2.0)<br>
+    else:<br>
+        return i + copysign(1.0, x)<br>
+<br>
+def pack_2x16(pack_1x16_func, x, y, func_opts):<br>
+    """Evaluate a GLSL pack2x16 function.<br>
+<br>
+    :param pack_1x16_func: the component-wise function of the GLSL pack2x16<br>
+        function<br>
+    :param x,y: each a float32<br>
+    :return: a uint32<br>
+    """<br>
+    assert(isinstance(x, float32))<br>
+    assert(isinstance(y, float32))<br>
+<br>
+    x = func_opts.maybe_flush_subnormal_float32_to_zero(x)<br>
+    y = func_opts.maybe_flush_subnormal_float32_to_zero(y)<br>
+<br>
+    ux = pack_1x16_func(x, func_opts)<br>
+    uy = pack_1x16_func(y, func_opts)<br>
+<br>
+    assert(isinstance(ux, uint16))<br>
+    assert(isinstance(uy, uint16))<br>
+<br>
+    return uint32((uy << 16) | ux)<br>
+<br>
+def unpack_2x16(unpack_1x16_func, u, func_opts):<br>
+    """Evaluate a GLSL unpack2x16 function.<br>
+<br>
+    :param unpack_1x16_func: the component-wise function of the GLSL<br>
+        unpack2x16 function<br>
+    :param u: a uint32<br>
+    :return: a 2-tuple of float32<br>
+    """<br>
+    assert(isinstance(u, uint32))<br>
+<br>
+    ux = uint16(u & 0xffff)<br>
+    uy = uint16(u >> 16)<br>
+<br>
+    x = unpack_1x16_func(ux)<br>
+    y = unpack_1x16_func(uy)<br>
+<br>
+    assert(isinstance(x, float32))<br>
+    assert(isinstance(y, float32))<br>
+<br>
+    x = func_opts.maybe_flush_subnormal_float32_to_zero(x)<br>
+    y = func_opts.maybe_flush_subnormal_float32_to_zero(y)<br>
+<br>
+    return (x, y)<br>
+<br>
+def pack_snorm_1x16(f32, func_opts):<br>
+    """Component-wise function of packSnorm2x16."""<br>
+    assert(isinstance(f32, float32))<br>
+    return uint16(int16(func_opts.round(clamp(f32, -1.0, +1.0) * 32767.0)))<br>
+<br>
+def unpack_snorm_1x16(u16):<br>
+    """Component-wise function of unpackSnorm2x16."""<br>
+    assert(isinstance(u16, uint16))<br>
+    return float32(clamp(int16(u16) / 32767.0, -1.0, +1.0))<br>
+<br>
+def pack_unorm_1x16(f32, func_opts):<br>
+    """Component-wise function of packUnorm2x16."""<br>
+    assert(isinstance(f32, float32))<br>
+    return uint16(func_opts.round(clamp(f32, 0.0, 1.0) * 65535.0))<br>
+<br>
+def unpack_unorm_1x16(u16):<br>
+    """Component-wise function of unpackUnorm2x16."""<br>
+    assert(isinstance(u16, uint16))<br>
+    return float32(u16 / 65535.0)<br>
+<br>
+def pack_half_1x16(f32, func_opts):<br>
+    """Component-wise function of packHalf2x16."""<br>
+    assert(isinstance(f32, float32))<br>
+<br>
+    # The bit layout of a float16 is:<br>
+    #<br>
+    #   sign:     15<br>
+    #   exponent: 10:14<br>
+    #   mantissa: 0:9<br>
+    #<br>
+    # The sign, exponent, and mantissa determine its value by:<br>
+    #<br>
+    #  if e = 0 and m = 0, then zero:       (-1)^s * 0<br>
+    #  if e = 0 and m != 0, then subnormal: (-1)^s * 2^(e - 14) * m / 2^10<br>
+    #  if 0 < e < 31, then normal:          (-1)^s * 2^(e - 15) * (1 + m / 2^10)<br>
+    #  if e = 31 and m = 0, then inf:       (-1)^s * inf<br>
+    #  if e = 31 and m != 0, then nan<br>
+    #<br>
+    # where 0 <= m < 2^10.<br>
+    #<br>
+    # Some key boundary values of float16 are:<br>
+    #<br>
+    #   min_normal16  = 2^(1 - 15) * (1 + 0 / 2^10)<br>
+    #   max_normal16  = 2^(30 - 15) * (1 + 1023 / 2^10)<br>
+    #<br>
+    # Observe that each of the above boundary values lies in the range of<br>
+    # normal float32 values. If we represent each of the above boundary values<br>
+    # in the form returned by frexpf() for normal float32 values, 2^E<br>
+    # * F where 0.5 <= F < 1, then:<br>
+    #<br>
+    #   min_normal16 = 2^(-13) * 0.5<br>
+    #   max_normal16 = 2^16 * 0.99951171875<br>
+<br>
+    # The resultant float16's sign, exponent, and mantissa bits.<br>
+    s = 0<br>
+    e = 0<br>
+    m = 0<br>
+<br>
+    # Calculate sign bit.<br>
+    # Use copysign() to handle the case where x is -0.0.<br>
+    if copysign(1.0, f32) < 0.0:<br>
+        s =  1<br>
+<br>
+    # To reduce the number of cases in the if-tree below, decompose `abs(f32)`<br>
+    # rather than `f32`.<br>
+    (F, E) = frexp(fabs(f32))<br>
+<br>
+    # The output of frexp falls into three classes:<br>
+    #   - If f32 is NaN, then F is NaN .<br>
+    #   - If f32 is ±inf, then F is ±inf .<br>
+    #   - If f32 is ±0.0, then F is ±0.0 .<br>
+    #   - Otherwise, f32 = 2^E * F where 0.5 <= F < 1.0 .<br>
+    #<br>
+    # Since we decomposed `abs(f32)`, we only need be concerned with the<br>
+    # postive cases.<br>
+    if isnan(F):<br>
+        # The resultant float16 is NaN.<br>
+        e = 31<br>
+        m = 1<br>
+    elif isinf(F):<br>
+        # The resultant float16 is infinite.<br>
+        e = 31<br>
+        m = 0<br>
+    elif F == 0:<br>
+        # f32 is zero, therefore the resultant float16 is zero.<br>
+        e = 0<br>
+        m = 0<br>
+    elif E < -13:<br>
+        # f32 lies in the range (0.0, min_normal16). Round f32 to a nearby<br>
+        # float16 value. The resultant float16 will be either zero, subnormal,<br>
+        # or normal.<br>
+        e = 0<br>
+        m = int(func_opts.round(2**(E + 24) * F))<br>
+    elif E <= 16:<br>
+        # f32 lies in the range [min_normal16, max_normal16 + max_step16).<br>
+        # Round f32 to a nearby float16 value. The resultant float16 will be<br>
+        # either normal or infinite.<br>
+        e = int(E + 14)<br>
+        m = int(func_opts.round(2**11 * F - 2**10))<br>
+    else:<br>
+        # f32 lies in the range [max_normal16 + max_step16, inf), which is<br>
+        # outside the range of finite float16 values. The resultant float16 is<br>
+        # infinite.<br></blockquote><div><br></div><div>You might want to define max_step16 above.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

+        e = 31<br>
+        m = 0<br>
+<br>
+    if (m == 1024):<br>
+        # f32 was rounded upwards into the range of the next exponent.  This<br>
+        # correctly handles the case where f32 should be rounded up to float16<br>
+        # infinity.<br>
+        e += 1<br>
+        m = 0<br>
+<br>
+    assert(s == 0 or s == 1)<br>
+    assert(0 <= e and e <= 31)<br>
+    assert(0 <= m and m <= 1023)<br>
+<br>
+    return uint16((s << 15) | (e << 10) | m)<br>
+<br>
+def unpack_half_1x16(u16):<br>
+    """Component-wise function of unpackHalf2x16."""<br>
+    assert(isinstance(u16, uint16))<br>
+<br>
+    # The bit layout of a float16 is:<br>
+    #<br>
+    #   sign:     15<br>
+    #   exponent: 10:14<br>
+    #   mantissa: 0:9<br>
+    #<br>
+    # The sign, exponent, and mantissa determine its value by:<br>
+    #<br>
+    #  if e = 0 and m = 0, then zero:       (-1)^s * 0<br>
+    #  if e = 0 and m != 0, then subnormal: (-1)^s * 2^(e - 14) * m / 2^10<br>
+    #  if 0 < e < 31, then normal:          (-1)^s * 2^(e - 15) * (1 + m / 2^10)<br>
+    #  if e = 31 and m = 0, then inf:       (-1)^s * inf<br>
+    #  if e = 31 and m != 0, then nan<br>
+    #<br>
+    # where 0 <= m < 2^10.<br>
+<br>
+    s = (u16 >> 15) & 0x1<br>
+    e = (u16 >> 10) & 0x1f<br>
+    m = u16 & 0x3ff<br>
+<br>
+    if s == 0:<br>
+        sign = 1.0<br>
+    else:<br>
+        sign = -1.0<br>
+<br>
+    if e == 0:<br>
+        return float32(sign * 2.0**(-14) * (m / 2.0**10))<br>
+    elif 1 <= e and e <= 30:<br>
+        return float32(sign * 2.0**(e - 15.0) * (1.0 +  m / 2.0**10))<br>
+    elif e == 31 and m == 0:<br>
+        return float32(sign * float32("inf"))<br>
+    elif e == 31 and m != 0:<br>
+        return float32("NaN")<br>
+    else:<br>
+        assert(False)<br>
+<br>
+# ----------------------------------------------------------------------------<br>
+# Inputs for GLSL functions<br>
+# ----------------------------------------------------------------------------<br>
+<br>
+# This table maps GLSL pack/unpack function names to a sequence of inputs to<br>
+# the respective component-wise function. It contain two types of mappings:<br>
+#    - name of a pack2x16 function to a sequence of float32<br>
+#    - name of a unpack2x16 function to a sequence of uint16<br>
+full_input_table = dict()<br>
+<br>
+# This table maps each GLSL pack/unpack function name to a subset of<br>
+# ``full_input_table[name]``.<br>
+#<br>
+# To sufficiently test some functions, we must test a fairly large set of<br>
+# component-wise inputs, so large that its cartesian product explodes. The<br>
+# test such functions, we test over the cartesian product of full_input_table<br>
+# and reduced_input_table. See make_inouts_for_pack_2x16.<br>
+#<br>
+reduced_input_table = dict()<br>
+<br>
+def make_inputs_for_pack_snorm_2x16():<br>
+    # The domain of packSnorm2x16 is [-inf, +inf]^2. The function clamps<br>
+    # its input into the range [-1, +1]^2.<br>
+    #<br>
+    # We test -0.0 in order to stress the implementation's handling of zero.<br>
+    # The implementation should return a uint16 that encodes -0.0; that is,<br>
+    # a uint16 # with the sign bit set.<br></blockquote><div><br></div><div>Is there a reasoning error in this comment?  uint16's are unsigned integers, so they don't have a sign bit and can't encode -0.0.<br>
<br></div><div>I'm all for testing -0.0 as an input, but I think the only place we need to be careful to make sure that a -0.0 input yields a negative result is in packHalf2x16 and unpackHalf2x16.<br><br></div><div>Having said that, I think the code is correct.<br>
</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
+    pos = (<br>
+        0.0, # zero<br>
+        0.1, # near zero<br>
+        0.9, # slightly below the clamp boundary<br>
+        1.0, # the clamp boundary<br>
+        1.1, # slightly above the clamp boundary<br>
+        float("+inf"),<br>
+        )<br>
+    neg = tuple(reversed(tuple(-x for x in pos)))<br>
+    return tuple(float32(x) for x in pos + neg)<br>
+<br>
+full_input_table["packSnorm2x16"] = make_inputs_for_pack_snorm_2x16()<br>
+reduced_input_table["packSnorm2x16"] = None<br>
+<br>
+# XXX: Perhaps there is a better choice of test inputs?<br>
+full_input_table["unpackSnorm2x16"] = tuple(uint16(u) for u in (<br>
+    0, 1, 2, 3,<br>
+    2**15 - 1,<br>
+    2**15,<br>
+    2**15 + 1,<br>
+    2**16 - 1, # max uint16<br>
+    ))<br></blockquote><div><br></div><div>FWIW these seem like very reasonable choices to me.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

+<br>
+full_input_table["packUnorm2x16"] = tuple(float32(x) for x in (<br>
+    # The domain of packUnorm2x16 is [-inf, +inf]^2. The function clamps its<br>
+    # input into the range [0, 1]^2.<br>
+    #<br>
+    # Below are listed important classes in the function's domain, and test<br>
+    # inputs chosen from each class.<br>
+    #   - zero: -0.0, 0.0<br>
+    #   - just inside the clamp range: 0.1, 0.9<br>
+    #   - on the clamp boundary: 0.0, 1.0<br>
+    #   - just outside the clamp range: -0.1, 1.1<br>
+    #   - infinity: -inf, +inf<br>
+    #<br>
+    # We test -0.0 in order to stress the implementation's handling of zero.<br>
+    # The implementation should return a uint16 that encodes +0.0; that is,<br>
+    # *without* the sign bit set.<br></blockquote><div><br></div><div>Similar reasoning error here I believe.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

+    "-inf",<br>
+    -0.1, # slightly below the inner clamp boundary<br>
+    -0.0, # infintesimally below the inner clamp boundary<br>
+    +0.0, # the inner clamp boundary<br>
+    +0.1, # slightly above the inner clamp boundary<br>
+    +0.9, # slightly below the outer clamp boundary<br>
+    +1.0, # the outer clamp boundary<br>
+    +1.1, # slightly above the outer clamp boundary<br>
+    "+inf",<br>
+    ))<br>
+<br>
+reduced_input_table["packUnorm2x16"] = None<br>
+<br>
+# XXX: Perhaps there is a better choice of test inputs?<br>
+full_input_table["unpackUnorm2x16"] = full_input_table["unpackSnorm2x16"]<br>
+<br>
+def make_inputs_for_pack_half_2x16():<br>
+    # The domain of packHalf2x16 is ([-inf, +inf] + {NaN})^2. The function<br>
+    # does not clamp its input.<br>
+    #<br>
+    # We test both -0.0 and +0.0 in order to stress the implementation's<br>
+    # handling of zero.<br>
+<br>
+    subnormal_min = 2.0**(-14) * (1.0 / 2.0**10)<br>
+    subnormal_max = 2.0**(-24) * (1023.0 / 2.0**10)<br></blockquote><div><br></div><div>Whoa, shouldn't that -24 be a -14?  Fortunately it doesn't look like subnormal_max is used below.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

+    normal_min    = 2.0**(-14) * (1.0 + 0.0 / 2.0**10)<br>
+    normal_max    = 2.0**15 * (1.0 + 1023.0 / 2.0**10)<br>
+    min_step      = 2.0**(-24)<br>
+    max_step      = 2.0**5<br>
+<br>
+    pos = tuple(float32(x) for x in (<br>
+        # Inputs that result in 0.0 .<br>
+        #<br>
+        0.0,<br>
+        0.0 + 0.25 * min_step,<br>
+<br>
+        # A thorny input...<br>
+        #<br>
+        # if round_to_even:<br>
+        #   f16 := 0.0<br>
+        # elif round_to_nearest:<br>
+        #    f16 := subnormal_min<br>
+        #<br>
+        0.0 + 0.50 * min_step,<br>
+<br>
+        # Inputs that result in a subnormal float16.<br>
+        #<br>
+        0.0 + 0.75 * min_step,<br>
+        subnormal_min + 0.00 * min_step,<br>
+        subnormal_min + 0.25 * min_step,<br>
+        subnormal_min + 0.50 * min_step,<br>
+        subnormal_min + 0.75 * min_step,<br>
+        subnormal_min + 1.00 * min_step,<br>
+        subnormal_min + 1.25 * min_step,<br>
+        subnormal_min + 1.50 * min_step,<br>
+        subnormal_min + 1.75 * min_step,<br>
+        subnormal_min + 2.00 * min_step,<br>
+<br>
+        normal_min - 2.00 * min_step,<br>
+        normal_min - 1.75 * min_step,<br>
+        normal_min - 1.50 * min_step,<br>
+        normal_min - 1.25 * min_step,<br>
+        normal_min - 1.00 * min_step,<br>
+        normal_min - 0.75 * min_step,<br>
+<br>
+        # Inputs that result in a normal float16.<br>
+        #<br>
+        normal_min - 0.50 * min_step,<br>
+        normal_min - 0.25 * min_step,<br>
+        normal_min + 0.00 * min_step,<br>
+        normal_min + 0.25 * min_step,<br>
+        normal_min + 0.50 * min_step,<br>
+        normal_min + 0.75 * min_step,<br>
+        normal_min + 1.00 * min_step,<br>
+        normal_min + 1.25 * min_step,<br>
+        normal_min + 1.50 * min_step,<br>
+        normal_min + 1.75 * min_step,<br>
+        normal_min + 2.00 * min_step,<br>
+<br>
+        normal_max - 2.00 * max_step,<br>
+        normal_max - 1.75 * max_step,<br>
+        normal_max - 1.50 * max_step,<br>
+        normal_max - 1.25 * max_step,<br>
+        normal_max - 1.00 * max_step,<br>
+        normal_max - 0.75 * max_step,<br>
+        normal_max - 0.50 * max_step,<br>
+        normal_max - 0.25 * max_step,<br>
+        normal_max + 0.00 * max_step,<br>
+        normal_max + 0.25 * max_step,<br>
+<br>
+        # Inputs that result in infinity.<br>
+        #<br>
+        normal_max + 0.50 * max_step,<br>
+        normal_max + 0.75 * max_step,<br>
+        normal_max + 1.00 * max_step,<br>
+<br>
+        "+inf",<br>
+    ))<br>
+<br>
+    neg = tuple(reversed([-x for x in pos]))<br>
+    return neg + pos<br>
+<br>
+full_input_table["packHalf2x16"] = make_inputs_for_pack_half_2x16()<br>
+<br>
+reduced_input_table["packHalf2x16"] = tuple(float32(x) for x in (<br>
+    "-inf",<br>
+    -2.0,<br>
+    -1.0,<br>
+    -0.0,<br>
+    +0.0,<br>
+    +1.0,<br>
+    +2.0,<br>
+    "+inf",<br>
+    ))<br>
+<br>
+def make_inputs_for_unpack_half_2x16():<br>
+    # For each of the two classes of float16 values, subnormal and normalized,<br>
+    # below are listed the exponent and mantissa of the class's boundary<br>
+    # values some values slightly inside the bounds.<br></blockquote><div><br></div><div>Missing the word "and" here?<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

+    bounds = (<br>
+        ( 0,    0), # zero<br>
+<br>
+        ( 0,    1), # subnormal_min<br>
+        ( 0,    2), # subnormal_min + min_step<br>
+<br>
+        ( 0, 1022), # subnormal_max - min_step<br>
+        ( 0, 1023), # subnormal_max<br>
+<br>
+        ( 1,    0), # normal_min<br>
+        ( 1,    1), # normal_min + min_step<br>
+<br>
+        (30, 1022), # normal_max - max_step<br>
+        (30, 1023), # normal_max<br>
+<br>
+        (31,    0), # inf<br>
+    )<br>
+<br>
+    def make_uint16(s, e, m):<br>
+        return uint16((s << 15) | (e << 10) | m)<br>
+<br>
+    pos = tuple(make_uint16(0, e, m) for (e, m) in bounds)<br>
+    neg = tuple(make_uint16(1, e, m) for (e, m) in reversed(bounds))<br>
+    return neg + pos<br>
+<br>
+full_input_table["unpackHalf2x16"] = make_inputs_for_unpack_half_2x16()<br>
+<br>
+# ----------------------------------------------------------------------------<br>
+# Expected outputs for GLSL functions<br>
+# ----------------------------------------------------------------------------<br>
+<br>
+# For a given input to a GLSL function, InOutTuple lists all valid outputs.<br>
+#<br>
+# There are multiple types of InOutTuple, described below. In each<br>
+# description, the numerical types actually refer to strings that represent<br>
+# a GLSL literal of that type.<br>
+#<br>
+#   - That for a pack2x16 function: the input is a 2-tuple of float32 and each<br>
+#     output is a uint32. For example, ``InOutTuple(input=("0.0", "0.0"),<br>
+#     valid_outputs=("0u", "0u", "0u"))``.<br>
+#<br>
+#   - That for a unpack2x16 function: the input is a uint32 and each output is<br>
+#     a 2-tuple of float32. For example, ``InOutTuple(input="0x80000000u",<br>
+#     valid_outputs=(("0.0", "-0.0"),))``.<br>
+#<br>
+InOutTuple = namedtuple("InOutTuple", ("input", "valid_outputs"))<br>
+<br>
+def glsl_literal(x):<br>
+    """Convert the given number to a string that represents a GLSL literal.<br>
+<br>
+    :param x: a uint32 or float32<br>
+    """<br>
+    if isinstance(x, uint32):<br>
+        return "{0}u".format(uint32(x))<br>
+    elif isinstance(x, float32):<br>
+        if math.isnan(x):<br>
+            # GLSL ES 3.00 and GLSL 4.10 do not require implementations to<br>
+            # support NaN, so we do not test it.<br>
+            assert(False)<br>
+        elif math.isinf(x):<br>
+            # GLSL ES 3.00 lacks a literal for infinity. However, ±1.0e256<br>
+            # suffices because it lies sufficientlyoutside the range of finite<br>
+            # float32 values.<br>
+            #<br>
+            #  From page 31 of the GLSL ES 3.00 spec:<br>
+            #<br>
+            #   If the value of the floating point number is too large (small)<br>
+            #   to be stored as a single precision value, it is converted to<br>
+            #   positive (negative) infinity.<br>
+            #<br>
+            return repr(copysign(1.0e256, x))<br>
+        elif x == 0 and copysign(1.0, x) == -1.0:<br>
+            # Workaround for numpy-1.7.0, in which repr(float32(-0.0)) does<br>
+            # not return a float literal.<br>
+            # See <a href="https://github.com/numpy/numpy/issues/2935" target="_blank">https://github.com/numpy/numpy/issues/2935</a> .<br>
+            return "-0.0"<br>
+        else:<br>
+            return repr(x)<br>
+    else:<br>
+        assert(False)<br>
+<br>
+def make_inouts_for_pack_2x16(pack_1x16_func,<br>
+                              all_float32_inputs,<br>
+                              reduced_inputs=None):<br>
+    """Determine valid outputs for a given GLSL pack2x16 function.<br>
+<br>
+    If the reduced_float32_inputs parameter is None, then it is assumed to be<br>
+    the same as all_float32_inputs.<br>
+<br>
+    The set of vec2 inputs constructed by this function is the union of<br>
+    cartesian products:<br>
+      (all_float32_inputs x reduced_inputs)<br>
+      + (reduced_inputs x all_float32_inputs)<br>
+<br>
+    :param pack_1x16_func: the component-wise function of the pack2x16<br>
+        function<br>
+    :param float32_inputs: a sequence of inputs to pack_1x16_func<br>
+    :return: a sequence of InOutTuple<br>
+    """<br>
+    inout_seq = []<br>
+<br>
+    func_opt_seq = tuple(<br>
+        FuncOpts(round_mode=r, flush_mode=f)<br>
+        for r in (FuncOpts.ROUND_TO_EVEN,<br>
+                  FuncOpts.ROUND_TO_NEAREST)<br>
+        for f in (FuncOpts.FLUSH_NONE,<br>
+                  FuncOpts.FLUSH_FLOAT32)<br>
+        )<br>
+<br>
+    if reduced_inputs is None:<br>
+        reduced_inputs = all_float32_inputs<br>
+<br>
+    def add_vec2_input(x, y):<br>
+        assert(isinstance(x, float32))<br>
+        assert(isinstance(y, float32))<br>
+<br>
+        valid_outputs = []<br>
+        for func_opts in func_opt_seq:<br>
+            u32 = pack_2x16(pack_1x16_func, x, y, func_opts)<br>
+            assert(isinstance(u32, uint32))<br>
+            valid_outputs.append(glsl_literal(u32))<br>
+<br>
+        inout_seq.append(<br>
+            InOutTuple(input=(glsl_literal(x), glsl_literal(y)),<br>
+                       valid_outputs=valid_outputs))<br>
+<br>
+    for y in reduced_inputs:<br>
+        for x in all_float32_inputs:<br>
+            add_vec2_input(x, y)<br>
+            add_vec2_input(y, x)<br>
+<br>
+    return inout_seq<br>
+<br>
+def make_inouts_for_unpack_2x16(unpack_1x16_func, uint16_inputs):<br>
+    """Determine expected outputs of a given GLSL unpack2x16 function.<br>
+<br>
+    :param unpack_1x16_func: the component-wise function of the unpack2x16<br>
+        function<br>
+    :param uint16_inputs: a sequence of inputs to unpack_1x16_func<br>
+    :return: a sequence of InOutTuple<br>
+    """<br>
+    inout_seq = []<br>
+<br>
+    func_opt_seq = (<br>
+        FuncOpts(flush_mode=FuncOpts.FLUSH_NONE),<br>
+        FuncOpts(flush_mode=FuncOpts.FLUSH_FLOAT32),<br>
+        )<br>
+<br>
+    for y in uint16_inputs:<br>
+        for x in uint16_inputs:<br>
+            assert(isinstance(x, uint16))<br>
+            u32 = uint32((y << 16) | x)<br>
+<br>
+            valid_outputs = []<br>
+            for func_opts in func_opt_seq:<br>
+                vec2 = unpack_2x16(unpack_1x16_func, u32, func_opts)<br>
+                assert(isinstance(vec2[0], float32))<br>
+                assert(isinstance(vec2[1], float32))<br>
+                valid_outputs.append((glsl_literal(vec2[0]),<br>
+                                         glsl_literal(vec2[1])))<br>
+<br>
+            inout_seq.append(<br>
+                InOutTuple(input=glsl_literal(u32),<br>
+                           valid_outputs=valid_outputs))<br>
+<br>
+    return inout_seq<br>
+<br>
+# This table maps GLSL pack/unpack function names to the precision of their<br>
+# return type.<br>
+result_precision_table = {<br>
+    "packSnorm2x16": "highp",<br>
+    "packUnorm2x16": "highp",<br>
+    "packHalf2x16":  "highp",<br>
+<br>
+    "unpackSnorm2x16": "highp",<br>
+    "unpackUnorm2x16": "highp",<br>
+    "unpackHalf2x16":  "mediump",<br>
+    }<br>
+<br>
+# This table maps GLSL pack/unpack function names to a sequence of InOutTuple.<br>
+inout_table = {<br>
+    "packSnorm2x16": make_inouts_for_pack_2x16(pack_snorm_1x16, full_input_table["packSnorm2x16"],  reduced_input_table["packSnorm2x16"]),<br>
+    "packUnorm2x16": make_inouts_for_pack_2x16(pack_unorm_1x16, full_input_table["packUnorm2x16"],  reduced_input_table["packUnorm2x16"]),<br>
+    "packHalf2x16":  make_inouts_for_pack_2x16(pack_half_1x16,  full_input_table["packHalf2x16"],   reduced_input_table["packHalf2x16"]),<br>
+<br>
+<br>
+    "unpackSnorm2x16": make_inouts_for_unpack_2x16(unpack_snorm_1x16, full_input_table["unpackSnorm2x16"]),<br>
+    "unpackUnorm2x16": make_inouts_for_unpack_2x16(unpack_unorm_1x16, full_input_table["unpackUnorm2x16"]),<br>
+    "unpackHalf2x16":  make_inouts_for_unpack_2x16(unpack_half_1x16,  full_input_table["unpackHalf2x16"]),<br>
+    }<br>
+<br>
+# ----------------------------------------------------------------------------<br>
+# Generate test files<br>
+# ----------------------------------------------------------------------------<br>
+<br>
+class FuncInfo:<br>
+    """Information for a GLSL pack/unpack function.<br>
+<br>
+    Properties<br>
+    ----------<br>
+    - name: Name of the GLSL function, such as "packSnorm2x16".<br>
+<br>
+    - dimension: Dimension of the GLSL function, such as "2x16".<br>
+<br>
+    - result_precision: Precision of the GLSL function's return type, such as<br>
+      "highp".<br>
+<br>
+    - inout_seq: A sequence of InOutTuple.  The generated test file will test<br>
+      all inputs listed in the sequence.<br>
+<br>
+    - num_valid_outputs: The number of valid outputs for each input of<br>
+      self.inout_seq. (We assume that each input has the  same number of valid<br>
+      outputs).<br>
+    """<br>
+<br>
+    def __init__(self, name):<br>
+        <a href="http://self.name" target="_blank">self.name</a> = name<br>
+        self.result_precision = result_precision_table[name]<br>
+        self.inout_seq = inout_table[name]<br>
+        self.num_valid_outputs = len(self.inout_seq[0].valid_outputs)<br>
+<br>
+        if name.endswith("2x16"):<br>
+            self.dimension = "2x16"<br>
+        elif name.endswith("4x8"):<br>
+            self.dimension =  "4x8"<br>
+        else:<br>
+            assert(False)<br>
+<br>
+class ShaderTest:<br>
+    """A .shader_test file."""<br>
+<br>
+    @staticmethod<br>
+    def all_tests():<br>
+        funcs = (<br>
+            FuncInfo("packSnorm2x16"),<br>
+            FuncInfo("packUnorm2x16"),<br>
+            FuncInfo("packHalf2x16"),<br>
+<br>
+            FuncInfo("unpackSnorm2x16"),<br>
+            FuncInfo("unpackUnorm2x16"),<br>
+            FuncInfo("unpackHalf2x16"),<br>
+            )<br>
+<br>
+        execution_stages = (<br>
+            "const",<br>
+            "vs",<br>
+            "fs",<br>
+            )<br>
+<br>
+        for s in execution_stages:<br>
+            for f in funcs:<br>
+                yield ShaderTest(f, s)<br>
+<br>
+    def __init__(self, func_info, execution_stage):<br>
+        assert(isinstance(func_info, FuncInfo))<br>
+        assert(execution_stage in ("const", "vs", "fs"))<br>
+<br>
+        self.__template = template_table[(execution_stage,<br>
+                                          <a href="http://func_info.name" target="_blank">func_info.name</a>[0],<br>
+                                          func_info.dimension)]<br>
+        self.__func_info = func_info<br>
+        self.__filename = os.path.join(<br>
+                            "spec",<br>
+                            "glsl-es-3.00",<br>
+                            "execution",<br>
+                            "built-in-functions",<br>
+                            "{0}-{1}.shader_test"\<br>
+                            .format(execution_stage, <a href="http://func_info.name" target="_blank">func_info.name</a>))<br>
+<br>
+    @property<br>
+    def filename(self):<br>
+        return self.__filename<br>
+<br>
+    def write_file(self):<br>
+        dirname = os.path.dirname(self.filename)<br>
+        if not os.path.exists(dirname):<br>
+            os.makedirs(dirname)<br>
+<br>
+        with open(self.filename, "w") as buffer:<br>
+            ctx = mako.runtime.Context(buffer, func=self.__func_info)<br>
+            self.__template.render_context(ctx)<br>
+<br>
+def main():<br>
+    parser = optparse.OptionParser(<br>
+                description="Generate shader tests that test the built-in " + \<br>
+                            "packing functions",<br>
+                usage="usage: %prog [-h] [--names-only]")<br>
+    parser.add_option(<br>
+        '--names-only',<br>
+        dest='names_only',<br>
+        action='store_true',<br>
+        help="Don't output files, just generate a list of filenames to stdout")<br>
+<br>
+    (options, args) = parser.parse_args()<br>
+<br>
+    if len(args) != 0:<br>
+        # User gave extra args.<br>
+        parser.print_help()<br>
+        sys.exit(1)<br>
+<br>
+    for test in ShaderTest.all_tests():<br>
+        print(test.filename)<br>
+<br>
+        # Some test files take a long time to generate, so provide status<br>
+        # updates to the user immediately.<br>
+        sys.stdout.flush()<br>
+<br>
+        if not options.names_only:<br>
+            test.write_file()<br>
+<br>
+if __name__ == '__main__':<br>
+    main()<br>
<span class=""><font color="#888888">--<br>
1.8.1.1<br>
<br>
</font></span></blockquote></div><br></div></div>