Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1180)

Unified Diff: tests/SkNxTest.cpp

Issue 1088883005: Sk4h and Sk8h for SSE (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/opts/SkNx_sse.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/SkNxTest.cpp
diff --git a/tests/SkNxTest.cpp b/tests/SkNxTest.cpp
index 0a77ce66b93e130d669f45f8427dbb71887b77f5..af6918e38c0ec500dcf666583aa0fb660797533a 100644
--- a/tests/SkNxTest.cpp
+++ b/tests/SkNxTest.cpp
@@ -77,3 +77,44 @@ DEF_TEST(SkNf, r) {
test_Nf<4, float>(r);
test_Nf<4, double>(r);
}
+
+template <int N, typename T>
+void test_Ni(skiatest::Reporter* r) {
+ auto assert_eq = [&](const SkNi<N,T>& v, T a, T b, T c, T d, T e, T f, T g, T h) {
+ T vals[8];
+ v.store(vals);
+
+ switch (N) {
+ case 8: REPORTER_ASSERT(r, vals[4] == e && vals[5] == f && vals[6] == g && vals[7] == h);
+ case 4: REPORTER_ASSERT(r, vals[2] == c && vals[3] == d);
+ case 2: REPORTER_ASSERT(r, vals[0] == a && vals[1] == b);
+ }
+ };
+
+ T vals[] = { 1,2,3,4,5,6,7,8 };
+ SkNi<N,T> a = SkNi<N,T>::Load(vals),
+ b(a),
+ c = a;
+ SkNi<N,T> d;
+ d = a;
+
+ assert_eq(a, 1,2,3,4,5,6,7,8);
+ assert_eq(b, 1,2,3,4,5,6,7,8);
+ assert_eq(c, 1,2,3,4,5,6,7,8);
+ assert_eq(d, 1,2,3,4,5,6,7,8);
+
+ assert_eq(a+a, 2,4,6,8,10,12,14,16);
+ assert_eq(a*a, 1,4,9,16,25,36,49,64);
+ assert_eq(a*a-a, 0,2,6,12,20,30,42,56);
+
+ assert_eq(a >> 2, 0,0,0,1,1,1,1,2);
+ assert_eq(a << 1, 2,4,6,8,10,12,14,16);
+
+ REPORTER_ASSERT(r, a.template kth<1>() == 2);
+}
+
+DEF_TEST(SkNi, r) {
+ test_Ni<2, uint16_t>(r);
+ test_Ni<4, uint16_t>(r);
+ test_Ni<8, uint16_t>(r);
+}
« no previous file with comments | « src/opts/SkNx_sse.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698