Searched refs:matB (Results 1 – 4 of 4) sorted by relevance
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
D | SGEMMTest.java | 34 private Allocation matB; field in SGEMMTest 151 matB = Allocation.createTyped(mRS, b_type); in setTestSmall() 155 matB.copyFrom(b_float); in setTestSmall() 159 1.0f, matA, matB, 0.f, matC); in setTestSmall() 206 matB = Allocation.createTyped(mRS, b_type); in setTestMedium() 210 matB.copyFrom(b_float); in setTestMedium() 214 1.0f, matA, matB, 0.f, matC); in setTestMedium() 254 matB = Allocation.createTyped(mRS, b_type); in setTestLarge() 258 matB.copyFrom(b_float); in setTestLarge() 262 1.0f, matA, matB, 0.f, matC); in setTestLarge() [all …]
|
D | BNNMTest.java | 34 private Allocation matB; field in BNNMTest 228 matB = Allocation.createTyped(mRS, b_type); in setTestSmall() 231 matB.copyFrom(b_byte); in setTestSmall() 234 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int); in setTestSmall() 298 matB = Allocation.createTyped(mRS, b_type); in setTestMedium() 302 matB.copyFrom(b_byte); in setTestMedium() 305 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int); in setTestMedium() 347 matB = Allocation.createTyped(mRS, b_type); in setTestLarge() 351 matB.copyFrom(b_byte); in setTestLarge() 354 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int); in setTestLarge() [all …]
|
D | GoogLeNet.java | 28 private ArrayList<Allocation> matB; field in GoogLeNet 150 matB = new ArrayList<Allocation>(); in setTest() 203 matB.add(B); 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() 190 final float[] b = matB.mArray; in setConcat()
|