projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac17c62
)
llvmpipe: Don't test rounding of x.5 numbers.
author
José Fonseca
<jfonseca@vmware.com>
Mon, 18 Oct 2010 16:35:21 +0000
(09:35 -0700)
committer
José 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
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_test_round.c
b/src/gallium/drivers/llvmpipe/lp_test_round.c
index 0ca279159238cb86ba717f27e731d13eeb438625..816518e5081f6a2e1eab92fbdd35e22692788a66 100644
(file)
--- a/
src/gallium/drivers/llvmpipe/lp_test_round.c
+++ b/
src/gallium/drivers/llvmpipe/lp_test_round.c
@@
-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];