Searched refs:vectorXS (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/rsblas/src/android/renderscript/cts/ |
D | IntrinsicBLAS.java | 321 …Allocation vectorXS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), mBLASData.d… in test_L2_SGEMV_Correctness() local 324 vectorXS.copyFrom(mBLASData.L2_sGEMV_x_n1); in test_L2_SGEMV_Correctness() 328 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorXS, incX, betaS, vectorYS, incY); in test_L2_SGEMV_Correctness() 338 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorYS, incY, betaS, vectorXS, incX); in test_L2_SGEMV_Correctness() 341 verifyMatrix(vectorYRef, vectorXS); in test_L2_SGEMV_Correctness() 344 vectorXS.copyFrom(mBLASData.L2_sGEMV_x_n1); in test_L2_SGEMV_Correctness() 345 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorYS, incY, betaS, vectorXS, incX); in test_L2_SGEMV_Correctness() 347 verifyMatrix(vectorYRef, vectorXS); in test_L2_SGEMV_Correctness() 355 vectorXS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), dimX, 1)); in test_L2_SGEMV_Correctness() 357 vectorXS.copyFrom(mBLASData.L2_sGEMV_x_n2); in test_L2_SGEMV_Correctness() [all …]
|