HomeSort by relevance Sort by last modified time
    Searched refs:KL (Results 1 - 25 of 31) sorted by null

1 2

  /external/cblas/src/
cblas_dgbmv.c 13 const int KL, const int KU,
26 F77_INT F77_KL=KL,F77_KU=KU;
31 #define F77_KL KL
cblas_sgbmv.c 14 const int KL, const int KU,
27 F77_INT F77_KL=KL,F77_KU=KU;
32 #define F77_KL KL
cblas_cgbmv.c 14 const int KL, const int KU,
27 F77_INT F77_KL=KL,F77_KU=KU;
32 #define F77_KL KL
cblas_zgbmv.c 14 const int KL, const int KU,
27 F77_INT F77_KL=KL,F77_KU=KU;
32 #define F77_KL KL
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java     [all...]
ScriptIntrinsicBLAS.java 400 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
403 * for j in range(max(0, i-kl), min(i+ku+1, n)):
404 * b[i, j-i+kl] = a[i, j]
407 * @param KL The number of sub-diagonals of the matrix A.
417 public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
418 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
420 if (KL < 0 || KU < 0) {
421 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
425 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, KL, KU);
435 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is a
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
RenderScript.java     [all...]
ScriptIntrinsicBLAS.java 447 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
450 * for j in range(max(0, i-kl), min(i+ku+1, n)):
451 * b[i, j-i+kl] = a[i, j]
454 * @param KL The number of sub-diagonals of the matrix A.
464 public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
465 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
467 if (KL < 0 || KU < 0) {
468 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
482 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp);
492 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is a
    [all...]
  /frameworks/rs/cpp/
ScriptIntrinsicBLAS.cpp 52 int M, int N, int K, int incX, int incY, int KL, int KU,
100 call.KL = KL;
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) {
112 M, N, K, incX, incY, KL, KU, alpha, beta, 0.0, 0.0,
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) {
126 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, alpha, beta,
137 float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) {
139 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0,
150 double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU)
    [all...]
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 536 private void xGBMV_API_test(int trans, int KL, int KU, int incX, int incY, ArrayList<Allocation> mMatrix) {
547 if (validateGEMV(elemA, trans, matA, vecX, incX, vecY, incY) && KU >= 0 && KL >= 0) {
550 mBLAS.SGBMV(trans, KL, KU, alphaS, matA, vecX, incX, betaS, vecY, incY);
552 mBLAS.DGBMV(trans, KL, KU, alphaD, matA, vecX, incX, betaD, vecY, incY);
554 mBLAS.CGBMV(trans, KL, KU, alphaC, matA, vecX, incX, betaC, vecY, incY);
556 mBLAS.ZGBMV(trans, KL, KU, alphaZ, matA, vecX, incX, betaZ, vecY, incY);
563 mBLAS.SGBMV(trans, KL, KU, alphaS, matA, vecX, incX, betaS, vecY, incY);
568 mBLAS.DGBMV(trans, KL, KU, alphaD, matA, vecX, incX, betaD, vecY, incY);
573 mBLAS.CGBMV(trans, KL, KU, alphaC, matA, vecX, incX, betaC, vecY, incY);
578 mBLAS.ZGBMV(trans, KL, KU, alphaZ, matA, vecX, incX, betaZ, vecY, incY)
    [all...]
  /external/cblas/include/
cblas.h 154 const int KL, const int KU, const float alpha,
187 const int KL, const int KU, const double alpha,
220 const int KL, const int KU, const void *alpha,
253 const int KL, const int KU, const void *alpha,
  /frameworks/rs/cpu_ref/
rsCpuBLASDispatch.h 31 const int KL, const int KU, const float alpha,
64 const int KL, const int KU, const double alpha,
97 const int KL, const int KU, const void *alpha,
130 const int KL, const int KU, const void *alpha,
    [all...]
rsCpuIntrinsicBLAS.cpp 285 cblas_sgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
327 cblas_dgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
369 cblas_cgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
411 cblas_zgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
    [all...]
  /frameworks/rs/
rsDefines.h 467 int KL;
  /external/cblas/testing/
c_cblat2.f 498 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
553 KL = MAX( KU - 1, 0 )
556 KL = M - 1
560 LDA = KL + KU + 1
576 $ LDA, KL, KU, RESET, TRANSL )
636 KLS = KL
668 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
672 CALL CCGBMV( IORDER, TRANS, M, N, KL,
707 ISAME( 4 ) = KLS.EQ.KL
790 WRITE( NOUT, FMT = 9995 )NC, SNAME, CTRANS, M, N, KL, KU
    [all...]
c_dblat2.f 489 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
544 KL = MAX( KU - 1, 0 )
547 KL = M - 1
551 LDA = KL + KU + 1
567 $ LDA, KL, KU, RESET, TRANSL )
627 KLS = KL
659 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
663 CALL CDGBMV( IORDER, TRANS, M, N, KL,
697 ISAME( 4 ) = KLS.EQ.KL
781 WRITE( NOUT, FMT = 9995 )NC, SNAME, CTRANS, M, N, KL, KU
    [all...]
c_sblat2.f 489 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
544 KL = MAX( KU - 1, 0 )
547 KL = M - 1
551 LDA = KL + KU + 1
567 $ LDA, KL, KU, RESET, TRANSL )
627 KLS = KL
659 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
663 CALL CSGBMV( IORDER, TRANS, M, N, KL,
697 ISAME( 4 ) = KLS.EQ.KL
781 WRITE( NOUT, FMT = 9995 )NC, SNAME, CTRANS, M, N, KL, KU
    [all...]
c_zblat2.f 499 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
554 KL = MAX( KU - 1, 0 )
557 KL = M - 1
561 LDA = KL + KU + 1
577 $ LDA, KL, KU, RESET, TRANSL )
637 KLS = KL
669 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
673 CALL CZGBMV( IORDER, TRANS, M, N, KL,
708 ISAME( 4 ) = KLS.EQ.KL
791 WRITE( NOUT, FMT = 9995 )NC, SNAME, CTRANS, M, N, KL, KU
    [all...]
  /external/eigen/blas/testing/
cblat2.f 473 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
527 KL = MAX( KU - 1, 0 )
530 KL = M - 1
534 LDA = KL + KU + 1
550 $ LDA, KL, KU, RESET, TRANSL )
603 KLS = KL
635 $ TRANS, M, N, KL, KU, ALPHA, LDA,
639 CALL CGBMV( TRANS, M, N, KL, KU, ALPHA,
673 ISAME( 4 ) = KLS.EQ.KL
755 WRITE( NOUT, FMT = 9995 )NC, SNAME, TRANS, M, N, KL, KU
    [all...]
dblat2.f 463 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
517 KL = MAX( KU - 1, 0 )
520 KL = M - 1
524 LDA = KL + KU + 1
540 $ LDA, KL, KU, RESET, TRANSL )
593 KLS = KL
625 $ TRANS, M, N, KL, KU, ALPHA, LDA,
629 CALL DGBMV( TRANS, M, N, KL, KU, ALPHA,
663 ISAME( 4 ) = KLS.EQ.KL
745 WRITE( NOUT, FMT = 9995 )NC, SNAME, TRANS, M, N, KL, KU
    [all...]
sblat2.f 463 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
517 KL = MAX( KU - 1, 0 )
520 KL = M - 1
524 LDA = KL + KU + 1
540 $ LDA, KL, KU, RESET, TRANSL )
593 KLS = KL
625 $ TRANS, M, N, KL, KU, ALPHA, LDA,
629 CALL SGBMV( TRANS, M, N, KL, KU, ALPHA,
663 ISAME( 4 ) = KLS.EQ.KL
745 WRITE( NOUT, FMT = 9995 )NC, SNAME, TRANS, M, N, KL, KU
    [all...]
zblat2.f 475 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
529 KL = MAX( KU - 1, 0 )
532 KL = M - 1
536 LDA = KL + KU + 1
552 $ LDA, KL, KU, RESET, TRANSL )
605 KLS = KL
637 $ TRANS, M, N, KL, KU, ALPHA, LDA,
641 CALL ZGBMV( TRANS, M, N, KL, KU, ALPHA,
675 ISAME( 4 ) = KLS.EQ.KL
757 WRITE( NOUT, FMT = 9995 )NC, SNAME, TRANS, M, N, KL, KU
    [all...]
  /frameworks/base/rs/jni/
android_renderscript_RenderScript.cpp 621 jint KL, jint KU) {
637 call.KL = KL;
654 jint KL, jint KU) {
670 call.KL = KL;
    [all...]
  /frameworks/rs/support/jni/
android_renderscript_RenderScript.cpp 586 jint KL, jint KU, jboolean mUseInc) {
602 call.KL = KL;
626 jint KL, jint KU, jboolean mUseInc) {
642 call.KL = KL;
666 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) {
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 2476 milliseconds

1 2