• Home
  • Raw
  • Download

Lines Matching defs:TransA

279 …static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y…  in validateGEMV()
324 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV()
325 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local
328 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in SGEMV() local
346 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV()
347 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local
350 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in DGEMV() local
368 … TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGEMV()
369 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV() local
372 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, a… in CGEMV() local
390 …ransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGEMV()
391 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV() local
394 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y… in ZGEMV() local
421 …L, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGBMV()
423 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGBMV() local
429 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in SGBMV() local
456 … int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGBMV()
458 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGBMV() local
464 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in DGBMV() local
491 … int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGBMV()
493 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGBMV() local
499 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, a… in CGBMV() local
526 …nt KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGBMV()
528 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGBMV() local
534 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y… in ZGBMV() local
537 …static void validateTRMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocat… in validateTRMV()
562 …static int validateTPMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocati… in validateTPMV()
607 …public void STRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in STRMV()
608 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STRMV() local
610 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in STRMV() local
626 …public void DTRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in DTRMV()
627 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTRMV() local
629 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in DTRMV() local
645 …public void CTRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in CTRMV()
646 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTRMV() local
648 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTRMV() local
664 …public void ZTRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in ZTRMV()
665 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTRMV() local
667 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, A.ge… in ZTRMV() local
691 …public void STBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in STBMV()
696 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STBMV() local
698 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in STBMV() local
722 …public void DTBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in DTBMV()
727 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTBMV() local
729 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in DTBMV() local
753 …public void CTBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in CTBMV()
758 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTBMV() local
760 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0… in CTBMV() local
784 …public void ZTBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in ZTBMV()
789 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTBMV() local
791 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0, A.ge… in ZTBMV() local
815 …public void STPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPMV()
817 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in STPMV() local
841 …public void DTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPMV()
843 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in DTPMV() local
867 …public void CTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in CTPMV()
869 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTPMV() local
893 …public void ZTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in ZTPMV()
895 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, Ap.g… in ZTPMV() local
911 …public void STRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in STRSV()
913 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STRSV() local
915 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in STRSV() local
932 …public void DTRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in DTRSV()
934 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTRSV() local
936 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in DTRSV() local
953 …public void CTRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in CTRSV()
955 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTRSV() local
957 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTRSV() local
974 …public void ZTRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in ZTRSV()
976 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTRSV() local
978 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, A.ge… in ZTRSV() local
1003 …public void STBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in STBSV()
1005 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STBSV() local
1010 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in STBSV() local
1034 …public void DTBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in DTBSV()
1036 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTBSV() local
1041 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in DTBSV() local
1065 …public void CTBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in CTBSV()
1067 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTBSV() local
1072 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0… in CTBSV() local
1096 …public void ZTBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in ZTBSV()
1098 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTBSV() local
1103 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0, A.ge… in ZTBSV() local
1127 …public void STPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPSV()
1130 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in STPSV() local
1154 …public void DTPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPSV()
1157 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in DTPSV() local
1181 …public void CTPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in CTPSV()
1184 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTPSV() local
1208 …public void ZTPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in ZTPSV()
1211 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, Ap.g… in ZTPSV() local
2263 …static void validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Al… in validateL3()
2344 public void SGEMM(@Transpose int TransA, @Transpose int TransB, float alpha, Allocation A, in SGEMM()
2348 validateL3(Element.F32(mRS), TransA, TransB, 0, A, B, C); in SGEMM() local
2363 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemm, TransA, TransB, 0, 0, 0, M, N, K, alpha… in SGEMM() local
2381 public void DGEMM(@Transpose int TransA, @Transpose int TransB, double alpha, Allocation A, in DGEMM()
2385 validateL3(Element.F64(mRS), TransA, TransB, 0, A, B, C); in DGEMM() local
2399 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgemm, TransA, TransB, 0, 0, 0, M, N, K, alpha… in DGEMM() local
2417 public void CGEMM(@Transpose int TransA, @Transpose int TransB, Float2 alpha, Allocation A, in CGEMM()
2421 validateL3(Element.F32_2(mRS), TransA, TransB, 0, A, B, C); in CGEMM() local
2435 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgemm, TransA, TransB, 0, 0, 0, M, N, K, alph… in CGEMM() local
2453 public void ZGEMM(@Transpose int TransA, @Transpose int TransB, Double2 alpha, Allocation A, in ZGEMM()
2457 validateL3(Element.F64_2(mRS), TransA, TransB, 0, A, B, C); in ZGEMM() local
2471 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgemm, TransA, TransB, 0, 0, 0, M, N, K, alpha.x, a… in ZGEMM() local
2817 …static void validateTRMM(Element e, @Side int Side, @Transpose int TransA, Allocation A, Allocatio… in validateTRMM()
2860 …public void STRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, float alp… in STRMM()
2863 validateTRMM(Element.F32(mRS), Side, TransA, A, B); in STRMM() local
2864 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strmm, TransA, 0, Side, Uplo, Diag, B.getType()… in STRMM() local
2883 …public void DTRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, double al… in DTRMM()
2886 validateTRMM(Element.F64(mRS), Side, TransA, A, B); in DTRMM() local
2887 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrmm, TransA, 0, Side, Uplo, Diag, B.getType()… in DTRMM() local
2906 …public void CTRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Float2 al… in CTRMM()
2909 validateTRMM(Element.F32_2(mRS), Side, TransA, A, B); in CTRMM() local
2910 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrmm, TransA, 0, Side, Uplo, Diag, B.getType(… in CTRMM() local
2929 …public void ZTRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Double2 a… in ZTRMM()
2932 validateTRMM(Element.F64_2(mRS), Side, TransA, A, B); in ZTRMM() local
2933 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrmm, TransA, 0, Side, Uplo, Diag, B.getType().getY… in ZTRMM() local
2937 …static void validateTRSM(Element e, @Side int Side, @Transpose int TransA, Allocation A, Allocatio… in validateTRSM()
2982 …public void STRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, float alp… in STRSM()
2985 validateTRSM(Element.F32(mRS), Side, TransA, A, B); in STRSM() local
2986 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strsm, TransA, 0, Side, Uplo, Diag, B.getType()… in STRSM() local
3005 …public void DTRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, double al… in DTRSM()
3008 validateTRSM(Element.F64(mRS), Side, TransA, A, B); in DTRSM() local
3009 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrsm, TransA, 0, Side, Uplo, Diag, B.getType()… in DTRSM() local
3028 …public void CTRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Float2 al… in CTRSM()
3031 validateTRSM(Element.F32_2(mRS), Side, TransA, A, B); in CTRSM() local
3032 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrsm, TransA, 0, Side, Uplo, Diag, B.getType(… in CTRSM() local
3051 …public void ZTRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Double2 a… in ZTRSM()
3054 validateTRSM(Element.F64_2(mRS), Side, TransA, A, B); in ZTRSM() local
3055 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrsm, TransA, 0, Side, Uplo, Diag, B.getType().getY… in ZTRSM() local