Home
last modified time | relevance | path

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

/cts/tests/tests/rsblas/src/android/renderscript/cts/
DIntrinsicBLAS.java890 int uplo = ScriptIntrinsicBLAS.UPPER; in test_L2_CHEMV_Correctness() local
903 mBLAS.CHEMV(uplo, alphaC, matrixAC, vectorXC, incX, betaC, vectorYC, incY); in test_L2_CHEMV_Correctness()
918 mBLAS.CHEMV(uplo, alphaC, matrixAC, vectorXC, incX, betaC, vectorYC, incY); in test_L2_CHEMV_Correctness()
928 int uplo = ScriptIntrinsicBLAS.UPPER; in test_L2_ZHEMV_Correctness() local
941 mBLAS.ZHEMV(uplo, alphaZ, matrixAZ, vectorXZ, incX, betaZ, vectorYZ, incY); in test_L2_ZHEMV_Correctness()
956 mBLAS.ZHEMV(uplo, alphaZ, matrixAZ, vectorXZ, incX, betaZ, vectorYZ, incY); in test_L2_ZHEMV_Correctness()
1024 int uplo = ScriptIntrinsicBLAS.UPPER; in test_L2_CHBMV_Correctness() local
1037 mBLAS.CHBMV(uplo, mBLASData.KL, alphaC, matrixAC, vectorXC, incX, betaC, vectorYC, incY); in test_L2_CHBMV_Correctness()
1052 mBLAS.CHBMV(uplo, mBLASData.KL, alphaC, matrixAC, vectorXC, incX, betaC, vectorYC, incY); in test_L2_CHBMV_Correctness()
1062 int uplo = ScriptIntrinsicBLAS.UPPER; in test_L2_ZHBMV_Correctness() local
[all …]
/cts/tests/tests/rsblas/assets/
Dblas_gen.py27 def triangularMatrixGen(a, uplo): argument
28 if uplo == 'u': #upper = 1, lower = 2
32 elif uplo == 'l':