• Home
  • Raw
  • Download

Lines Matching defs:TransA

275 …static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y…  in validateGEMV()
320 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV()
321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local
324 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in SGEMV() local
342 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV()
343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local
346 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in DGEMV() local
364 … TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGEMV()
365 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV() local
368 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, a… in CGEMV() local
386 …ransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGEMV()
387 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV() local
390 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y… in ZGEMV() local
417 …L, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGBMV()
419 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGBMV() local
425 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in SGBMV() local
452 … int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGBMV()
454 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGBMV() local
460 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.ge… in DGBMV() local
487 … int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGBMV()
489 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGBMV() local
495 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, a… in CGBMV() local
522 …nt KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGBMV()
524 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGBMV() local
530 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y… in ZGBMV() local
533 …static void validateTRMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocat… in validateTRMV()
558 …static int validateTPMV(Element e, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocati… in validateTPMV()
603 …public void STRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in STRMV()
604 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STRMV() local
606 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in STRMV() local
622 …public void DTRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in DTRMV()
623 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTRMV() local
625 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in DTRMV() local
641 …public void CTRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in CTRMV()
642 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTRMV() local
644 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTRMV() local
660 …public void ZTRMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocation … in ZTRMV()
661 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTRMV() local
663 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, A.ge… in ZTRMV() local
687 …public void STBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in STBMV()
692 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STBMV() local
694 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in STBMV() local
718 …public void DTBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in DTBMV()
723 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTBMV() local
725 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in DTBMV() local
749 …public void CTBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in CTBMV()
754 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTBMV() local
756 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0… in CTBMV() local
780 …public void ZTBMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in ZTBMV()
785 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTBMV() local
787 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztbmv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0, A.ge… in ZTBMV() local
811 …public void STPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPMV()
813 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in STPMV() local
837 …public void DTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPMV()
839 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in DTPMV() local
863 …public void CTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in CTPMV()
865 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTPMV() local
889 …public void ZTPMV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in ZTPMV()
891 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztpmv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, Ap.g… in ZTPMV() local
907 …public void STRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in STRSV()
909 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STRSV() local
911 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in STRSV() local
928 …public void DTRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in DTRSV()
930 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTRSV() local
932 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, A.… in DTRSV() local
949 …public void CTRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in CTRSV()
951 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTRSV() local
953 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTRSV() local
970 …public void ZTRSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation A, Allocatio… in ZTRSV()
972 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTRSV() local
974 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, A.ge… in ZTRSV() local
999 …public void STBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in STBSV()
1001 validateTRMV(Element.F32(mRS), Uplo, TransA, Diag, A, X, incX); in STBSV() local
1006 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in STBSV() local
1030 …public void DTBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in DTBSV()
1032 validateTRMV(Element.F64(mRS), Uplo, TransA, Diag, A, X, incX); in DTBSV() local
1037 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, A.… in DTBSV() local
1061 …public void CTBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in CTBSV()
1063 validateTRMV(Element.F32_2(mRS), Uplo, TransA, Diag, A, X, incX); in CTBSV() local
1068 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0… in CTBSV() local
1092 …public void ZTBSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, int K, Allocation A, Al… in ZTBSV()
1094 validateTRMV(Element.F64_2(mRS), Uplo, TransA, Diag, A, X, incX); in ZTBSV() local
1099 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztbsv, TransA, 0, 0, Uplo, Diag, 0, N, K, 0, 0, A.ge… in ZTBSV() local
1123 …public void STPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in STPSV()
1126 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_stpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in STPSV() local
1150 …public void DTPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in DTPSV()
1153 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, Ap… in DTPSV() local
1177 …public void CTPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in CTPSV()
1180 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0… in CTPSV() local
1204 …public void ZTPSV(@Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Allocation Ap, Allocati… in ZTPSV()
1207 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztpsv, TransA, 0, 0, Uplo, Diag, 0, N, 0, 0, 0, Ap.g… in ZTPSV() local
2259 …static void validateL3(Element e, int TransA, int TransB, int Side, Allocation A, Allocation B, Al… in validateL3()
2340 public void SGEMM(@Transpose int TransA, @Transpose int TransB, float alpha, Allocation A, in SGEMM()
2344 validateL3(Element.F32(mRS), TransA, TransB, 0, A, B, C); in SGEMM() local
2359 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemm, TransA, TransB, 0, 0, 0, M, N, K, alpha… in SGEMM() local
2377 public void DGEMM(@Transpose int TransA, @Transpose int TransB, double alpha, Allocation A, in DGEMM()
2381 validateL3(Element.F64(mRS), TransA, TransB, 0, A, B, C); in DGEMM() local
2395 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgemm, TransA, TransB, 0, 0, 0, M, N, K, alpha… in DGEMM() local
2413 public void CGEMM(@Transpose int TransA, @Transpose int TransB, Float2 alpha, Allocation A, in CGEMM()
2417 validateL3(Element.F32_2(mRS), TransA, TransB, 0, A, B, C); in CGEMM() local
2431 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgemm, TransA, TransB, 0, 0, 0, M, N, K, alph… in CGEMM() local
2449 public void ZGEMM(@Transpose int TransA, @Transpose int TransB, Double2 alpha, Allocation A, in ZGEMM()
2453 validateL3(Element.F64_2(mRS), TransA, TransB, 0, A, B, C); in ZGEMM() local
2467 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgemm, TransA, TransB, 0, 0, 0, M, N, K, alpha.x, a… in ZGEMM() local
2813 …static void validateTRMM(Element e, @Side int Side, @Transpose int TransA, Allocation A, Allocatio… in validateTRMM()
2856 …public void STRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, float alp… in STRMM()
2859 validateTRMM(Element.F32(mRS), Side, TransA, A, B); in STRMM() local
2860 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strmm, TransA, 0, Side, Uplo, Diag, B.getType()… in STRMM() local
2879 …public void DTRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, double al… in DTRMM()
2882 validateTRMM(Element.F64(mRS), Side, TransA, A, B); in DTRMM() local
2883 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrmm, TransA, 0, Side, Uplo, Diag, B.getType()… in DTRMM() local
2902 …public void CTRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Float2 al… in CTRMM()
2905 validateTRMM(Element.F32_2(mRS), Side, TransA, A, B); in CTRMM() local
2906 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrmm, TransA, 0, Side, Uplo, Diag, B.getType(… in CTRMM() local
2925 …public void ZTRMM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Double2 a… in ZTRMM()
2928 validateTRMM(Element.F64_2(mRS), Side, TransA, A, B); in ZTRMM() local
2929 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrmm, TransA, 0, Side, Uplo, Diag, B.getType().getY… in ZTRMM() local
2933 …static void validateTRSM(Element e, @Side int Side, @Transpose int TransA, Allocation A, Allocatio… in validateTRSM()
2978 …public void STRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, float alp… in STRSM()
2981 validateTRSM(Element.F32(mRS), Side, TransA, A, B); in STRSM() local
2982 …mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_strsm, TransA, 0, Side, Uplo, Diag, B.getType()… in STRSM() local
3001 …public void DTRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, double al… in DTRSM()
3004 validateTRSM(Element.F64(mRS), Side, TransA, A, B); in DTRSM() local
3005 …mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dtrsm, TransA, 0, Side, Uplo, Diag, B.getType()… in DTRSM() local
3024 …public void CTRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Float2 al… in CTRSM()
3027 validateTRSM(Element.F32_2(mRS), Side, TransA, A, B); in CTRSM() local
3028 …mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_ctrsm, TransA, 0, Side, Uplo, Diag, B.getType(… in CTRSM() local
3047 …public void ZTRSM(@Side int Side, @Uplo int Uplo, @Transpose int TransA, @Diag int Diag, Double2 a… in ZTRSM()
3050 validateTRSM(Element.F64_2(mRS), Side, TransA, A, B); in ZTRSM() local
3051 …mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_ztrsm, TransA, 0, Side, Uplo, Diag, B.getType().getY… in ZTRSM() local