Home
last modified time | relevance | path

Searched refs:incY (Results 1 – 1 of 1) sorted by relevance

/cts/tests/tests/rsblas/src/android/renderscript/cts/
DIntrinsicBLAS.java205 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateGEMV() argument
220 if (incX <= 0 || incY <= 0) { in validateGEMV()
226 expectedYDim = 1 + (M - 1) * incY; in validateGEMV()
229 expectedYDim = 1 + (N - 1) * incY; 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 …]