Searched refs:matA (Results 1 – 4 of 4) sorted by relevance
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
D | SGEMMTest.java | 33 private Allocation matA; field in SGEMMTest 150 matA = Allocation.createTyped(mRS, a_type); in setTestSmall() 154 matA.copyFrom(a_float); in setTestSmall() 159 1.0f, matA, matB, 0.f, matC); in setTestSmall() 205 matA = Allocation.createTyped(mRS, a_type); in setTestMedium() 209 matA.copyFrom(a_float); in setTestMedium() 214 1.0f, matA, matB, 0.f, matC); in setTestMedium() 253 matA = Allocation.createTyped(mRS, a_type); in setTestLarge() 257 matA.copyFrom(a_float); in setTestLarge() 262 1.0f, matA, matB, 0.f, matC); in setTestLarge() [all …]
|
D | BNNMTest.java | 33 private Allocation matA; field in BNNMTest 227 matA = Allocation.createTyped(mRS, a_type); in setTestSmall() 230 matA.copyFrom(a_byte); in setTestSmall() 234 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int); in setTestSmall() 297 matA = Allocation.createTyped(mRS, a_type); in setTestMedium() 301 matA.copyFrom(a_byte); in setTestMedium() 305 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int); in setTestMedium() 346 matA = Allocation.createTyped(mRS, a_type); in setTestLarge() 350 matA.copyFrom(a_byte); in setTestLarge() 354 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int); in setTestLarge() [all …]
|
D | GoogLeNet.java | 27 private ArrayList<Allocation> matA; field in GoogLeNet 149 matA = new ArrayList<Allocation>(); in setTest() 202 matA.add(A); in setTest() 213 1.0f, matA.get(i), matB.get(i), 0.f, matC.get(i)); in runTest() 225 … mBLAS.BNNM(matA.get(i), a_offset, matB.get(i), b_offset, matC.get(i), c_offset, c_mult_int); in runTest()
|
/frameworks/base/libs/hwui/apex/java/android/graphics/ |
D | ColorMatrix.java | 181 public void setConcat(ColorMatrix matA, ColorMatrix matB) { in setConcat() argument 183 if (matA == this || matB == this) { in setConcat() 189 final float[] a = matA.mArray; in setConcat()
|