llvmpipe: Don't test rounding of x.5 numbers.
authorJosé Fonseca <jfonseca@vmware.com>
Mon, 18 Oct 2010 16:35:21 +0000 (09:35 -0700)
committerJosé Fonseca <jfonseca@vmware.com>
Mon, 18 Oct 2010 16:35:21 +0000 (09:35 -0700)
SSE4.1 has different rules, and so far this doesn't seem to cause any
problems with conformance test suites.

src/gallium/drivers/llvmpipe/lp_test_round.c

index 0ca2791..816518e 100644 (file)
@@ -171,9 +171,12 @@ test_round(unsigned verbose, FILE *fp)
       LLVMDumpModule(module);
 
    for (i = 0; i < 3; i++) {
+      /* NOTE: There are several acceptable rules for x.5 rounding: ceiling,
+       * nearest even, etc. So we avoid testing such corner cases here.
+       */
       v4sf xvals[3] = {
          {-10.0, -1, 0, 12.0},
-         {-1.5, -0.25, 1.25, 2.5},
+         {-1.49, -0.25, 1.25, 2.51},
          {-0.99, -0.01, 0.01, 0.99}
       };
       v4sf x = xvals[i];