[Piglit] [PATCH v2 1/1] cl: add log10 test

Jan Vesely jan.vesely at rutgers.edu
Fri Jan 23 15:59:13 PST 2015


v2: Fix tolerance

Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
---
 generated_tests/generate-cl-math-builtins.py | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/generated_tests/generate-cl-math-builtins.py b/generated_tests/generate-cl-math-builtins.py
index af3843f..1c96adb 100644
--- a/generated_tests/generate-cl-math-builtins.py
+++ b/generated_tests/generate-cl-math-builtins.py
@@ -27,7 +27,7 @@ import os
 
 from genclbuiltins import gen, NEGNAN
 from math import acos, acosh, asin, asinh, atan, atan2, atanh, cos, cosh, exp
-from math import fabs, fmod, log1p, pi, pow, sin, sinh, sqrt, tan, tanh
+from math import fabs, fmod, log10, log1p, pi, pow, sin, sinh, sqrt, tan, tanh
 
 CLC_VERSION_MIN = {
     'acos' : 10,
@@ -51,6 +51,7 @@ CLC_VERSION_MIN = {
     'floor' : 10,
     'fmod' : 10,
     'ldexp' : 10,
+    'log10' : 10,
     'log1p' : 10,
     'mix' : 10,
     'nextafter' : 10,
@@ -266,6 +267,15 @@ tests = {
         ],
         'tolerance' : 0
     },
+    'log10' : {
+        'arg_types': [F, F],
+        'function_type': 'ttt',
+        'values': [
+            [log10(0.5), float("-inf"), log10(1.e-15), float("nan")],
+            [0.5,        0.0,           1.e-15,        float("nan")]
+        ],
+        'tolerance' : 3
+    },
     'log1p' : {
         'arg_types': [F, F],
         'function_type': 'ttt',
-- 
2.1.0



More information about the Piglit mailing list