blob: 388f150287c8e9bd54cdbd77b8dfead1726222de [file] [log] [blame]
/*
* Copyright (C) 2015 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.
*/
// Don't edit this file! It is auto-generated by frameworks/rs/api/gen_runtime.
package android.renderscript.cts;
import android.renderscript.Allocation;
import android.renderscript.RSRuntimeException;
import android.renderscript.Element;
public class TestDot extends RSBaseCompute {
private ScriptC_TestDot script;
private ScriptC_TestDotRelaxed scriptRelaxed;
@Override
protected void setUp() throws Exception {
super.setUp();
script = new ScriptC_TestDot(mRS);
scriptRelaxed = new ScriptC_TestDotRelaxed(mRS);
}
public class ArgumentsFloatFloatFloat {
public float inLeftVector;
public float inRightVector;
public Target.Floaty out;
}
private void checkDotFloatFloatFloat() {
Allocation inLeftVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x38fe5ebdf7ff2d3el, false);
Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x948dc35615f562efl, false);
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
script.set_gAllocInRightVector(inRightVector);
script.forEach_testDotFloatFloatFloat(inLeftVector, out);
verifyResultsDotFloatFloatFloat(inLeftVector, inRightVector, out, false);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloatFloatFloat: " + e.toString());
}
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
scriptRelaxed.set_gAllocInRightVector(inRightVector);
scriptRelaxed.forEach_testDotFloatFloatFloat(inLeftVector, out);
verifyResultsDotFloatFloatFloat(inLeftVector, inRightVector, out, true);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloatFloatFloat: " + e.toString());
}
}
private void verifyResultsDotFloatFloatFloat(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) {
float[] arrayInLeftVector = new float[INPUTSIZE * 1];
inLeftVector.copyTo(arrayInLeftVector);
float[] arrayInRightVector = new float[INPUTSIZE * 1];
inRightVector.copyTo(arrayInRightVector);
float[] arrayOut = new float[INPUTSIZE * 1];
out.copyTo(arrayOut);
for (int i = 0; i < INPUTSIZE; i++) {
ArgumentsFloatFloatFloat args = new ArgumentsFloatFloatFloat();
// Create the appropriate sized arrays in args
// Fill args with the input values
args.inLeftVector = arrayInLeftVector[i];
args.inRightVector = arrayInRightVector[i];
Target target = new Target(relaxed);
CoreMathVerifier.computeDot(args, target);
// Compare the expected outputs to the actual values returned by RS.
boolean valid = true;
if (!args.out.couldBe(arrayOut[i])) {
valid = false;
}
if (!valid) {
StringBuilder message = new StringBuilder();
message.append("Input inLeftVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInLeftVector[i], Float.floatToRawIntBits(arrayInLeftVector[i]), arrayInLeftVector[i]));
message.append("\n");
message.append("Input inRightVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInRightVector[i], Float.floatToRawIntBits(arrayInRightVector[i]), arrayInRightVector[i]));
message.append("\n");
message.append("Expected output out: ");
message.append(args.out.toString());
message.append("\n");
message.append("Actual output out: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayOut[i], Float.floatToRawIntBits(arrayOut[i]), arrayOut[i]));
if (!args.out.couldBe(arrayOut[i])) {
message.append(" FAIL");
}
message.append("\n");
assertTrue("Incorrect output for checkDotFloatFloatFloat" +
(relaxed ? "_relaxed" : "") + ":\n" + message.toString(), valid);
}
}
}
public class ArgumentsFloatNFloatNFloat {
public float[] inLeftVector;
public float[] inRightVector;
public Target.Floaty out;
}
private void checkDotFloat2Float2Float() {
Allocation inLeftVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x3a9fadaebf79d3a2l, false);
Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xdaa605c7978f55bbl, false);
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
script.set_gAllocInRightVector(inRightVector);
script.forEach_testDotFloat2Float2Float(inLeftVector, out);
verifyResultsDotFloat2Float2Float(inLeftVector, inRightVector, out, false);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloat2Float2Float: " + e.toString());
}
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
scriptRelaxed.set_gAllocInRightVector(inRightVector);
scriptRelaxed.forEach_testDotFloat2Float2Float(inLeftVector, out);
verifyResultsDotFloat2Float2Float(inLeftVector, inRightVector, out, true);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloat2Float2Float: " + e.toString());
}
}
private void verifyResultsDotFloat2Float2Float(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) {
float[] arrayInLeftVector = new float[INPUTSIZE * 2];
inLeftVector.copyTo(arrayInLeftVector);
float[] arrayInRightVector = new float[INPUTSIZE * 2];
inRightVector.copyTo(arrayInRightVector);
float[] arrayOut = new float[INPUTSIZE * 1];
out.copyTo(arrayOut);
for (int i = 0; i < INPUTSIZE; i++) {
ArgumentsFloatNFloatNFloat args = new ArgumentsFloatNFloatNFloat();
// Create the appropriate sized arrays in args
args.inLeftVector = new float[2];
args.inRightVector = new float[2];
// Fill args with the input values
for (int j = 0; j < 2 ; j++) {
args.inLeftVector[j] = arrayInLeftVector[i * 2 + j];
}
for (int j = 0; j < 2 ; j++) {
args.inRightVector[j] = arrayInRightVector[i * 2 + j];
}
Target target = new Target(relaxed);
CoreMathVerifier.computeDot(args, target);
// Compare the expected outputs to the actual values returned by RS.
boolean valid = true;
if (!args.out.couldBe(arrayOut[i])) {
valid = false;
}
if (!valid) {
StringBuilder message = new StringBuilder();
for (int j = 0; j < 2 ; j++) {
message.append("Input inLeftVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInLeftVector[i * 2 + j], Float.floatToRawIntBits(arrayInLeftVector[i * 2 + j]), arrayInLeftVector[i * 2 + j]));
message.append("\n");
}
for (int j = 0; j < 2 ; j++) {
message.append("Input inRightVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInRightVector[i * 2 + j], Float.floatToRawIntBits(arrayInRightVector[i * 2 + j]), arrayInRightVector[i * 2 + j]));
message.append("\n");
}
message.append("Expected output out: ");
message.append(args.out.toString());
message.append("\n");
message.append("Actual output out: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayOut[i], Float.floatToRawIntBits(arrayOut[i]), arrayOut[i]));
if (!args.out.couldBe(arrayOut[i])) {
message.append(" FAIL");
}
message.append("\n");
assertTrue("Incorrect output for checkDotFloat2Float2Float" +
(relaxed ? "_relaxed" : "") + ":\n" + message.toString(), valid);
}
}
}
private void checkDotFloat3Float3Float() {
Allocation inLeftVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x948d32ce11887f0l, false);
Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x910f51f73d379ed5l, false);
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
script.set_gAllocInRightVector(inRightVector);
script.forEach_testDotFloat3Float3Float(inLeftVector, out);
verifyResultsDotFloat3Float3Float(inLeftVector, inRightVector, out, false);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloat3Float3Float: " + e.toString());
}
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
scriptRelaxed.set_gAllocInRightVector(inRightVector);
scriptRelaxed.forEach_testDotFloat3Float3Float(inLeftVector, out);
verifyResultsDotFloat3Float3Float(inLeftVector, inRightVector, out, true);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloat3Float3Float: " + e.toString());
}
}
private void verifyResultsDotFloat3Float3Float(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) {
float[] arrayInLeftVector = new float[INPUTSIZE * 4];
inLeftVector.copyTo(arrayInLeftVector);
float[] arrayInRightVector = new float[INPUTSIZE * 4];
inRightVector.copyTo(arrayInRightVector);
float[] arrayOut = new float[INPUTSIZE * 1];
out.copyTo(arrayOut);
for (int i = 0; i < INPUTSIZE; i++) {
ArgumentsFloatNFloatNFloat args = new ArgumentsFloatNFloatNFloat();
// Create the appropriate sized arrays in args
args.inLeftVector = new float[3];
args.inRightVector = new float[3];
// Fill args with the input values
for (int j = 0; j < 3 ; j++) {
args.inLeftVector[j] = arrayInLeftVector[i * 4 + j];
}
for (int j = 0; j < 3 ; j++) {
args.inRightVector[j] = arrayInRightVector[i * 4 + j];
}
Target target = new Target(relaxed);
CoreMathVerifier.computeDot(args, target);
// Compare the expected outputs to the actual values returned by RS.
boolean valid = true;
if (!args.out.couldBe(arrayOut[i])) {
valid = false;
}
if (!valid) {
StringBuilder message = new StringBuilder();
for (int j = 0; j < 3 ; j++) {
message.append("Input inLeftVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInLeftVector[i * 4 + j], Float.floatToRawIntBits(arrayInLeftVector[i * 4 + j]), arrayInLeftVector[i * 4 + j]));
message.append("\n");
}
for (int j = 0; j < 3 ; j++) {
message.append("Input inRightVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInRightVector[i * 4 + j], Float.floatToRawIntBits(arrayInRightVector[i * 4 + j]), arrayInRightVector[i * 4 + j]));
message.append("\n");
}
message.append("Expected output out: ");
message.append(args.out.toString());
message.append("\n");
message.append("Actual output out: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayOut[i], Float.floatToRawIntBits(arrayOut[i]), arrayOut[i]));
if (!args.out.couldBe(arrayOut[i])) {
message.append(" FAIL");
}
message.append("\n");
assertTrue("Incorrect output for checkDotFloat3Float3Float" +
(relaxed ? "_relaxed" : "") + ":\n" + message.toString(), valid);
}
}
}
private void checkDotFloat4Float4Float() {
Allocation inLeftVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 4, 0xd7f1f8ab02b73c3el, false);
Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 4, 0x47789e26e2dfe7efl, false);
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
script.set_gAllocInRightVector(inRightVector);
script.forEach_testDotFloat4Float4Float(inLeftVector, out);
verifyResultsDotFloat4Float4Float(inLeftVector, inRightVector, out, false);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloat4Float4Float: " + e.toString());
}
try {
Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
scriptRelaxed.set_gAllocInRightVector(inRightVector);
scriptRelaxed.forEach_testDotFloat4Float4Float(inLeftVector, out);
verifyResultsDotFloat4Float4Float(inLeftVector, inRightVector, out, true);
} catch (Exception e) {
throw new RSRuntimeException("RenderScript. Can't invoke forEach_testDotFloat4Float4Float: " + e.toString());
}
}
private void verifyResultsDotFloat4Float4Float(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) {
float[] arrayInLeftVector = new float[INPUTSIZE * 4];
inLeftVector.copyTo(arrayInLeftVector);
float[] arrayInRightVector = new float[INPUTSIZE * 4];
inRightVector.copyTo(arrayInRightVector);
float[] arrayOut = new float[INPUTSIZE * 1];
out.copyTo(arrayOut);
for (int i = 0; i < INPUTSIZE; i++) {
ArgumentsFloatNFloatNFloat args = new ArgumentsFloatNFloatNFloat();
// Create the appropriate sized arrays in args
args.inLeftVector = new float[4];
args.inRightVector = new float[4];
// Fill args with the input values
for (int j = 0; j < 4 ; j++) {
args.inLeftVector[j] = arrayInLeftVector[i * 4 + j];
}
for (int j = 0; j < 4 ; j++) {
args.inRightVector[j] = arrayInRightVector[i * 4 + j];
}
Target target = new Target(relaxed);
CoreMathVerifier.computeDot(args, target);
// Compare the expected outputs to the actual values returned by RS.
boolean valid = true;
if (!args.out.couldBe(arrayOut[i])) {
valid = false;
}
if (!valid) {
StringBuilder message = new StringBuilder();
for (int j = 0; j < 4 ; j++) {
message.append("Input inLeftVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInLeftVector[i * 4 + j], Float.floatToRawIntBits(arrayInLeftVector[i * 4 + j]), arrayInLeftVector[i * 4 + j]));
message.append("\n");
}
for (int j = 0; j < 4 ; j++) {
message.append("Input inRightVector: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayInRightVector[i * 4 + j], Float.floatToRawIntBits(arrayInRightVector[i * 4 + j]), arrayInRightVector[i * 4 + j]));
message.append("\n");
}
message.append("Expected output out: ");
message.append(args.out.toString());
message.append("\n");
message.append("Actual output out: ");
message.append(String.format("%14.8g {%8x} %15a",
arrayOut[i], Float.floatToRawIntBits(arrayOut[i]), arrayOut[i]));
if (!args.out.couldBe(arrayOut[i])) {
message.append(" FAIL");
}
message.append("\n");
assertTrue("Incorrect output for checkDotFloat4Float4Float" +
(relaxed ? "_relaxed" : "") + ":\n" + message.toString(), valid);
}
}
}
public void testDot() {
checkDotFloatFloatFloat();
checkDotFloat2Float2Float();
checkDotFloat3Float3Float();
checkDotFloat4Float4Float();
}
}