summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Sams <jsams@google.com>2013-11-13 02:22:22 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-11-13 02:22:22 +0000
commit07b42686780c1d1dce7e711088a783223d3668cf (patch)
tree4c9ecc3611c62e7c0f253fd7358cf0955d63a0a4
parent9ff57d537a5b0ca56c4d60da69673e9a9bc7e639 (diff)
parentecd2177b3564c5b1f6f219d611d1a79fda6c93ad (diff)
downloadcts-07b42686780c1d1dce7e711088a783223d3668cf.tar.gz
Merge "Test for histogram fixes." into klp-dev
-rw-r--r--tests/tests/renderscript/src/android/renderscript/cts/IntrinsicHistogram.java176
1 files changed, 176 insertions, 0 deletions
diff --git a/tests/tests/renderscript/src/android/renderscript/cts/IntrinsicHistogram.java b/tests/tests/renderscript/src/android/renderscript/cts/IntrinsicHistogram.java
new file mode 100644
index 00000000000..e970291c3a4
--- /dev/null
+++ b/tests/tests/renderscript/src/android/renderscript/cts/IntrinsicHistogram.java
@@ -0,0 +1,176 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package android.renderscript.cts;
+
+import android.renderscript.*;
+import android.util.Log;
+
+public class IntrinsicHistogram extends IntrinsicBase {
+ private Allocation mAin;
+ private Allocation mAout;
+
+ private void createAllocations(int inVSize, int outVSize, int w, int h) {
+ Element e1;
+ Element e2;
+
+ switch (inVSize) {
+ case 4: e1 = Element.U8_4(mRS); break;
+ case 3: e1 = Element.U8_3(mRS); break;
+ case 2: e1 = Element.U8_2(mRS); break;
+ default: e1 = Element.U8(mRS); break;
+ }
+
+ switch (outVSize) {
+ case 4: e2 = Element.I32_4(mRS); break;
+ case 3: e2 = Element.I32_3(mRS); break;
+ case 2: e2 = Element.I32_2(mRS); break;
+ default: e2 = Element.I32(mRS); break;
+ }
+
+ Type.Builder tb = new Type.Builder(mRS, e1);
+ tb.setX(w).setY(h);
+
+ mAin = Allocation.createTyped(mRS, tb.create());
+ mAout = Allocation.createSized(mRS, e2, 256);
+ }
+
+ private void testNorm(int inVSize, int outVSize, int w, int h) {
+ createAllocations(inVSize, outVSize, w, h);
+
+ int invs2 = (inVSize != 3) ? inVSize : 4;
+ int outvs2 = (outVSize != 3) ? outVSize : 4;
+
+ byte i[] = new byte[w * h * invs2];
+ int res[] = new int[256 * outvs2];
+ int ref[] = new int[256 * outvs2];
+
+ java.util.Random r = new java.util.Random();
+ r.nextBytes(i);
+
+ for (int ct=0; ct < i.length; ct++) {
+ int t = i[ct];
+ if (t < 0) t = 256 + t;
+ if ((ct % invs2) < outVSize) {
+ ref[(t * outvs2) + (ct % invs2)] ++;
+ }
+ }
+
+ mAin.copyFrom(i);
+ ScriptIntrinsicHistogram hist =
+ ScriptIntrinsicHistogram.create(mRS, mAin.getType().getElement());
+ hist.setOutput(mAout);
+ hist.forEach(mAin);
+
+ mAin.copyFrom(i);
+ mAout.copyTo(res);
+ for (int ct=0; ct < res.length; ct++) {
+ assertTrue(res[ct] == ref[ct]);
+ }
+ }
+
+ public void test_norm_4_4() {
+ testNorm(4, 4, 101, 101);
+ }
+ public void test_norm_4_3() {
+ testNorm(4, 3, 101, 101);
+ }
+ public void test_norm_4_2() {
+ testNorm(4, 2, 101, 101);
+ }
+ public void test_norm_4_1() {
+ testNorm(4, 1, 101, 101);
+ }
+
+ public void test_norm_3_3() {
+ testNorm(3, 3, 101, 101);
+ }
+ public void test_norm_3_2() {
+ testNorm(3, 2, 101, 101);
+ }
+ public void test_norm_3_1() {
+ testNorm(3, 1, 101, 101);
+ }
+
+ public void test_norm_2_2() {
+ testNorm(2, 2, 101, 101);
+ }
+ public void test_norm_2_1() {
+ testNorm(2, 1, 101, 101);
+ }
+
+ public void test_norm_1_1() {
+ testNorm(1, 1, 101, 101);
+ }
+
+
+
+ private void testDot(int inVSize, int w, int h) {
+ createAllocations(inVSize, 1, w, h);
+
+ int invs2 = (inVSize != 3) ? inVSize : 4;
+
+ byte i[] = new byte[w * h * invs2];
+ int res[] = new int[256];
+ int ref[] = new int[256];
+
+ java.util.Random r = new java.util.Random();
+ r.nextBytes(i);
+
+ float dotVals[] = {0.2501f, 0.1251f, 0.06251f, 0.1251f};
+ int doti[] = new int[4];
+ for (int ct=0; ct < 4; ct++) {
+ doti[ct] = (int)((dotVals[ct] * 256.f) + 0.5f);
+ }
+
+ for (int ct=0; ct < i.length; ct+=invs2) {
+ int v = 0;
+ for (int c = 0; c < inVSize; c++) {
+ int t = i[ct + c];
+ if (t < 0) t = 256 + t;
+ v += doti[c] * t;
+ }
+ ref[(v + 0x7f) >> 8] ++;
+ }
+
+ mAin.copyFrom(i);
+ ScriptIntrinsicHistogram hist =
+ ScriptIntrinsicHistogram.create(mRS, mAin.getType().getElement());
+ hist.setOutput(mAout);
+ hist.setDotCoefficients(dotVals[0], dotVals[1], dotVals[2], dotVals[3]);
+ hist.forEach_Dot(mAin);
+
+ mAin.copyFrom(i);
+ mAout.copyTo(res);
+ for (int ct=0; ct < res.length; ct++) {
+ assertTrue(res[ct] == ref[ct]);
+ }
+ }
+
+ public void test_dot_1() {
+ testDot(1, 101, 101);
+ }
+ public void test_dot_2() {
+ testDot(2, 101, 101);
+ }
+ public void test_dot_3() {
+ testDot(3, 101, 101);
+ }
+ public void test_dot_4() {
+ testDot(4, 101, 101);
+ }
+
+}