HomeSort by relevance Sort by last modified time
    Searched full:vectorxc (Results 1 - 1 of 1) sorted by null

  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 431 Allocation vectorXC = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32_2(mRS), mBLASData.dN, 1));
434 vectorXC.copyFrom(mBLASData.L2_cGEMV_x_n1);
438 mBLAS.CGEMV(trans, alphaC, matrixAC, vectorXC, incX, betaC, vectorYC, incY);
448 mBLAS.CGEMV(trans, alphaC, matrixAC, vectorYC, incY, betaC, vectorXC, incX);
451 verifyMatrix(vectorYRef, vectorXC);
454 vectorXC.copyFrom(mBLASData.L2_cGEMV_x_n1);
455 mBLAS.CGEMV(trans, alphaC, matrixAC, vectorYC, incY, betaC, vectorXC, incX);
457 verifyMatrix(vectorYRef, vectorXC);
465 vectorXC = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32_2(mRS), dimX, 1));
467 vectorXC.copyFrom(mBLASData.L2_cGEMV_x_n2)
    [all...]

Completed in 3215 milliseconds