Searched refs:incX (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/rsblas/src/android/renderscript/cts/ |
D | IntrinsicBLAS.java | 205 …private boolean validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocati… in validateGEMV() argument 220 if (incX <= 0 || incY <= 0) { in validateGEMV() 225 expectedXDim = 1 + (N - 1) * incX; in validateGEMV() 228 expectedXDim = 1 + (M - 1) * incX; in validateGEMV() 238 private void xGEMV_API_test(int trans, int incX, int incY, ArrayList<Allocation> mMatrix) { in xGEMV_API_test() argument 249 if (validateGEMV(elemA, trans, matA, vecX, incX, vecY, incY)) { in xGEMV_API_test() 252 mBLAS.SGEMV(trans, alphaS, matA, vecX, incX, betaS, vecY, incY); in xGEMV_API_test() 254 mBLAS.DGEMV(trans, alphaD, matA, vecX, incX, betaD, vecY, incY); in xGEMV_API_test() 256 mBLAS.CGEMV(trans, alphaC, matA, vecX, incX, betaC, vecY, incY); in xGEMV_API_test() 258 mBLAS.ZGEMV(trans, alphaZ, matA, vecX, incX, betaZ, vecY, incY); in xGEMV_API_test() [all …]
|