From 3719c196c88723c0d9f05a92ef30454429a4b82f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 22 Dec 2016 18:37:05 +0300 Subject: Improve dye speed tests. --- src/test/testlauncher.cpp | 45 +++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp index 313986c8c..661960b1d 100644 --- a/src/test/testlauncher.cpp +++ b/src/test/testlauncher.cpp @@ -497,7 +497,7 @@ int TestLauncher::testDyeSSpeed() clock_gettime(CLOCK_MONOTONIC, &time1); for (int f = 0; f < 50000; f ++) - pal.replaceSColor(buf, sz); + pal.replaceSColorDefault(buf, sz); clock_gettime(CLOCK_MONOTONIC, &time2); long diff = ((static_cast(time2.tv_sec) * 1000000000L @@ -505,7 +505,25 @@ int TestLauncher::testDyeSSpeed() ((static_cast(time1.tv_sec) * 1000000000L + static_cast(time1.tv_nsec)) / 1); printf("dye s salt: %u\n", buf[0]); - printf("time: %ld\n", diff); + printf("default time: %011ld\n", diff); + + for (int f = 0; f < sz; f ++) + buf[f] = f; + + pal.replaceSColor(buf, sz); + + clock_gettime(CLOCK_MONOTONIC, &time1); + + for (int f = 0; f < 50000; f ++) + pal.replaceSColorSimd(buf, sz); + + clock_gettime(CLOCK_MONOTONIC, &time2); + diff = ((static_cast(time2.tv_sec) * 1000000000L + + static_cast(time2.tv_nsec)) / 1) - + ((static_cast(time1.tv_sec) * 1000000000L + + static_cast(time1.tv_nsec)) / 1); + printf("dye s salt: %u\n", buf[0]); + printf("simd time : %011ld\n", diff); #endif // defined __linux__ || defined __linux return 0; @@ -529,7 +547,7 @@ int TestLauncher::testDyeASpeed() clock_gettime(CLOCK_MONOTONIC, &time1); for (int f = 0; f < 50000; f ++) - pal.replaceSColor(buf, sz); + pal.replaceSColorDefault(buf, sz); clock_gettime(CLOCK_MONOTONIC, &time2); long diff = ((static_cast(time2.tv_sec) * 1000000000L @@ -537,7 +555,26 @@ int TestLauncher::testDyeASpeed() ((static_cast(time1.tv_sec) * 1000000000L + static_cast(time1.tv_nsec)) / 1); printf("dye a salt: %u\n", buf[0]); - printf("time: %ld\n", diff); + printf("default time: %011ld\n", diff); + + for (int f = 0; f < sz; f ++) + buf[f] = f; + + pal.replaceAColor(buf, sz); + + clock_gettime(CLOCK_MONOTONIC, &time1); + + for (int f = 0; f < 50000; f ++) + pal.replaceSColorSimd(buf, sz); + + clock_gettime(CLOCK_MONOTONIC, &time2); + diff = ((static_cast(time2.tv_sec) * 1000000000L + + static_cast(time2.tv_nsec)) / 1) - + ((static_cast(time1.tv_sec) * 1000000000L + + static_cast(time1.tv_nsec)) / 1); + printf("dye a salt: %u\n", buf[0]); + printf("simd time : %011ld\n", diff); + #endif // defined __linux__ || defined __linux return 0; -- cgit v1.2.3-60-g2f50