aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/MathTest.cpp
diff options
context:
space:
mode:
authorGravatar jvanverth <jvanverth@google.com>2015-07-23 11:14:29 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-07-23 11:14:29 -0700
commit29c69793f0201a5f221d6e0f3d41c1adbc4e5656 (patch)
tree0d30309892350a4cd280068fa0ed3c0e2b891894 /tests/MathTest.cpp
parent4765bdcd638152420fd23bc407b48c6a4a9837f8 (diff)
Update fallback rsqrt implementation to use optimal constants.
Improves max relative error from 0.00175126 to 0.000650197. Also add unit tests to check error bounds. BUG=chromium:511458 Review URL: https://codereview.chromium.org/1251423002
Diffstat (limited to 'tests/MathTest.cpp')
-rw-r--r--tests/MathTest.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
index 772bade185..3c2bc64407 100644
--- a/tests/MathTest.cpp
+++ b/tests/MathTest.cpp
@@ -382,6 +382,40 @@ static void unittest_half(skiatest::Reporter* reporter) {
}
+static void test_rsqrt(skiatest::Reporter* reporter) {
+ const float maxRelativeError = 6.50196699e-4f;
+
+ // test close to 0 up to 1
+ float input = 0.000001f;
+ for (int i = 0; i < 1000; ++i) {
+ float exact = 1.0f/sk_float_sqrt(input);
+ float estimate = sk_float_rsqrt(input);
+ float relativeError = sk_float_abs(exact - estimate)/exact;
+ REPORTER_ASSERT(reporter, relativeError <= maxRelativeError);
+ input += 0.001f;
+ }
+
+ // test 1 to ~100
+ input = 1.0f;
+ for (int i = 0; i < 1000; ++i) {
+ float exact = 1.0f/sk_float_sqrt(input);
+ float estimate = sk_float_rsqrt(input);
+ float relativeError = sk_float_abs(exact - estimate)/exact;
+ REPORTER_ASSERT(reporter, relativeError <= maxRelativeError);
+ input += 0.01f;
+ }
+
+ // test some big numbers
+ input = 1000000.0f;
+ for (int i = 0; i < 100; ++i) {
+ float exact = 1.0f/sk_float_sqrt(input);
+ float estimate = sk_float_rsqrt(input);
+ float relativeError = sk_float_abs(exact - estimate)/exact;
+ REPORTER_ASSERT(reporter, relativeError <= maxRelativeError);
+ input += 754326.f;
+ }
+}
+
static void test_muldiv255(skiatest::Reporter* reporter) {
for (int a = 0; a <= 255; a++) {
for (int b = 0; b <= 255; b++) {
@@ -521,6 +555,7 @@ DEF_TEST(Math, reporter) {
unittest_fastfloat(reporter);
unittest_isfinite(reporter);
unittest_half(reporter);
+ test_rsqrt(reporter);
for (i = 0; i < 10000; i++) {
SkFixed numer = rand.nextS();