D | IntrinsicBLAS.java | 536 …private void xGBMV_API_test(int trans, int KL, int KU, int incX, int incY, ArrayList<Allocation> m… in xGBMV_API_test() argument 547 … if (validateGEMV(elemA, trans, matA, vecX, incX, vecY, incY) && KU >= 0 && KL >= 0) { in xGBMV_API_test() 550 … mBLAS.SGBMV(trans, KL, KU, alphaS, matA, vecX, incX, betaS, vecY, incY); in xGBMV_API_test() 552 … mBLAS.DGBMV(trans, KL, KU, alphaD, matA, vecX, incX, betaD, vecY, incY); in xGBMV_API_test() 554 … mBLAS.CGBMV(trans, KL, KU, alphaC, matA, vecX, incX, betaC, vecY, incY); in xGBMV_API_test() 556 … mBLAS.ZGBMV(trans, KL, KU, alphaZ, matA, vecX, incX, betaZ, vecY, incY); in xGBMV_API_test() 563 mBLAS.SGBMV(trans, KL, KU, alphaS, matA, vecX, incX, betaS, vecY, incY); in xGBMV_API_test() 568 mBLAS.DGBMV(trans, KL, KU, alphaD, matA, vecX, incX, betaD, vecY, incY); in xGBMV_API_test() 573 mBLAS.CGBMV(trans, KL, KU, alphaC, matA, vecX, incX, betaC, vecY, incY); in xGBMV_API_test() 578 mBLAS.ZGBMV(trans, KL, KU, alphaZ, matA, vecX, incX, betaZ, vecY, incY); in xGBMV_API_test() [all …]
|