• Home
  • Raw
  • Download

Lines Matching refs:Y

275 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) {  in validateGEMV()  argument
281 !Y.getType().getElement().isCompatible(e)) { in validateGEMV()
284 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGEMV()
300 Y.getType().getX() != expectedYDim) { in validateGEMV()
320 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument
321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local
324 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SGEMV()
342 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument
343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local
346 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DGEMV()
364 … TransA, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGEMV() argument
365 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGEMV() local
368 …, 0, M, N, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in CGEMV()
386 …ransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGEMV() argument
387 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGEMV() local
390 …, 0, M, N, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in ZGEMV()
417 …L, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGBMV() argument
419 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGBMV() local
425 …gbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SGBMV()
452 … int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGBMV() argument
454 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGBMV() local
460 …gbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DGBMV()
487 … int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CGBMV() argument
489 validateGEMV(Element.F32_2(mRS), TransA, A, X, incX, Y, incY); in CGBMV() local
495 …, 0, M, N, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in CGBMV()
522 …nt KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZGBMV() argument
524 validateGEMV(Element.F64_2(mRS), TransA, A, X, incX, Y, incY); in ZGBMV() local
530 …, 0, M, N, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in ZGBMV()
1213 …static int validateSYMV(Element e, @Uplo int Uplo, Allocation A, Allocation X, Allocation Y, int i… in validateSYMV() argument
1221 !Y.getType().getElement().isCompatible(e) ) { in validateSYMV()
1224 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateSYMV()
1236 if (Y.getType().getX() != expectedYDim) { in validateSYMV()
1241 …ateSPMV(Element e, @Uplo int Uplo, Allocation Ap, Allocation X, int incX, Allocation Y, int incY) { in validateSPMV() argument
1245 !Y.getType().getElement().isCompatible(e)) { in validateSPMV()
1248 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateSPMV()
1268 if (Y.getType().getX() != expectedYDim) { in validateSPMV()
1274 … static void validateGER(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in validateGER() argument
1277 !Y.getType().getElement().isCompatible(e) ) { in validateGER()
1281 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGER()
1299 if (Y.getType().getX() != expectedYDim) { in validateGER()
1358 …static int validateSYR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY,… in validateSYR2() argument
1362 !Y.getType().getElement().isCompatible(e)) { in validateSYR2()
1366 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateSYR2()
1380 if (X.getType().getX() != expectedXDim || Y.getType().getX() != expectedYDim) { in validateSYR2()
1386 …static int validateSPR2(Element e, @Uplo int Uplo, Allocation X, int incX, Allocation Y, int incY,… in validateSPR2() argument
1390 !Y.getType().getElement().isCompatible(e)) { in validateSPR2()
1393 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateSPR2()
1410 if (X.getType().getX() != expectedXDim || Y.getType().getX() != expectedYDim) { in validateSPR2()
1432 … int Uplo, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SSYMV() argument
1433 int N = validateSYMV(Element.F32(mRS), Uplo, A, X, Y, incX, incY); in SSYMV()
1434 …_ssymv, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SSYMV()
1460 …lo, int K, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SSBMV() argument
1465 int N = validateSYMV(Element.F32(mRS), Uplo, A, X, Y, incX, incY); in SSBMV()
1466 …_ssbmv, 0, 0, 0, Uplo, 0, 0, N, K, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SSBMV()
1492 …int Uplo, float alpha, Allocation Ap, Allocation X, int incX, float beta, Allocation Y, int incY) { in SSPMV() argument
1493 int N = validateSPMV(Element.F32(mRS), Uplo, Ap, X, incX, Y, incY); in SSPMV()
1494 …sspmv, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, Ap.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SSPMV()
1510 public void SGER(float alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in SGER() argument
1513 validateGER(Element.F32(mRS), X, incX, Y, incY, A); in SGER() local
1514 …ingle(getID(mRS), RsBlas_sger, 0, 0, 0, 0, 0, M, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0.f, A.g… in SGER()
1573 …public void SSYR2(@Uplo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, All… in SSYR2() argument
1574 int N = validateSYR2(Element.F32(mRS), Uplo, X, incX, Y, incY, A); in SSYR2()
1575 …e(getID(mRS), RsBlas_ssyr2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, A.get… in SSYR2()
1600 …public void SSPR2(@Uplo int Uplo, float alpha, Allocation X, int incX, Allocation Y, int incY, All… in SSPR2() argument
1601 int N = validateSPR2(Element.F32(mRS), Uplo, X, incX, Y, incY, Ap); in SSPR2()
1602 …e(getID(mRS), RsBlas_sspr2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, Ap.ge… in SSPR2()
1620 …nt Uplo, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DSYMV() argument
1621 int N = validateSYMV(Element.F64(mRS), Uplo, A, X, Y, incX, incY); in DSYMV()
1622 …_dsymv, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DSYMV()
1648 …, int K, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DSBMV() argument
1653 int N = validateSYMV(Element.F64(mRS), Uplo, A, X, Y, incX, incY); in DSBMV()
1654 …_dsbmv, 0, 0, 0, Uplo, 0, 0, N, K, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DSBMV()
1680 …t Uplo, double alpha, Allocation Ap, Allocation X, int incX, double beta, Allocation Y, int incY) { in DSPMV() argument
1681 int N = validateSPMV(Element.F64(mRS), Uplo, Ap, X, incX, Y, incY); in DSPMV()
1682 …dspmv, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, Ap.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DSPMV()
1698 public void DGER(double alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in DGER() argument
1701 validateGER(Element.F64(mRS), X, incX, Y, incY, A); in DGER() local
1702 …ouble(getID(mRS), RsBlas_dger, 0, 0, 0, 0, 0, M, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0.f, A.g… in DGER()
1761 …public void DSYR2(@Uplo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Al… in DSYR2() argument
1762 int N = validateSYR2(Element.F64(mRS), Uplo, X, incX, Y, incY, A); in DSYR2()
1763 …e(getID(mRS), RsBlas_dsyr2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, A.get… in DSYR2()
1788 …public void DSPR2(@Uplo int Uplo, double alpha, Allocation X, int incX, Allocation Y, int incY, Al… in DSPR2() argument
1789 int N = validateSPR2(Element.F64(mRS), Uplo, X, incX, Y, incY, Ap); in DSPR2()
1790 …e(getID(mRS), RsBlas_dspr2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, X.getID(mRS), Y.getID(mRS), 0, Ap.ge… in DSPR2()
1798 …static void validateGERU(Element e, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in validateGERU() argument
1801 !Y.getType().getElement().isCompatible(e)) { in validateGERU()
1804 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGERU()
1818 if (Y.getType().getX() != expectedYDim) { in validateGERU()
1839 …nt Uplo, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CHEMV() argument
1841 int N = validateSYR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHEMV()
1842 …, 0, 0, N, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in CHEMV()
1868 …, int K, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CHBMV() argument
1870 int N = validateSYR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHBMV()
1874 …, 0, 0, N, K, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in CHBMV()
1900 …t Uplo, Float2 alpha, Allocation Ap, Allocation X, int incX, Float2 beta, Allocation Y, int incY) { in CHPMV() argument
1902 int N = validateSPR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, Ap); in CHPMV()
1903 … 0, 0, N, 0, alpha.x, alpha.y, Ap.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in CHPMV()
1919 public void CGERU(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in CGERU() argument
1920 validateGERU(Element.F32_2(mRS), X, incX, Y, incY, A); in CGERU() local
1923 …mRS), RsBlas_cgeru, 0, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.… in CGERU()
1939 public void CGERC(Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in CGERC() argument
1941 validateGERU(Element.F32_2(mRS), X, incX, Y, incY, A); in CGERC() local
1944 …mRS), RsBlas_cgerc, 0, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.… in CGERC()
2005 …public void CHER2(@Uplo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Al… in CHER2() argument
2007 int N = validateSYR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, A); in CHER2()
2008 …), RsBlas_cher2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.… in CHER2()
2033 …public void CHPR2(@Uplo int Uplo, Float2 alpha, Allocation X, int incX, Allocation Y, int incY, Al… in CHPR2() argument
2035 int N = validateSPR2(Element.F32_2(mRS), Uplo, X, incX, Y, incY, Ap); in CHPR2()
2036 …), RsBlas_chpr2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, Ap… in CHPR2()
2054 … Uplo, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZHEMV() argument
2056 int N = validateSYR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHEMV()
2057 …, 0, 0, N, 0, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in ZHEMV()
2083 …int K, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZHBMV() argument
2085 int N = validateSYR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHBMV()
2089 …, 0, 0, N, K, alpha.x, alpha.y, A.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in ZHBMV()
2115 …Uplo, Double2 alpha, Allocation Ap, Allocation X, int incX, Double2 beta, Allocation Y, int incY) { in ZHPMV() argument
2117 int N = validateSPR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, Ap); in ZHPMV()
2118 … 0, 0, N, 0, alpha.x, alpha.y, Ap.getID(mRS), X.getID(mRS), beta.x, beta.y, Y.getID(mRS), incX, in… in ZHPMV()
2134 public void ZGERU(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERU() argument
2135 validateGERU(Element.F64_2(mRS), X, incX, Y, incY, A); in ZGERU() local
2138 …mRS), RsBlas_zgeru, 0, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.… in ZGERU()
2154 public void ZGERC(Double2 alpha, Allocation X, int incX, Allocation Y, int incY, Allocation A) { in ZGERC() argument
2156 validateGERU(Element.F64_2(mRS), X, incX, Y, incY, A); in ZGERC() local
2159 …mRS), RsBlas_zgerc, 0, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.… in ZGERC()
2220 …public void ZHER2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHER2() argument
2222 int N = validateSYR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, A); in ZHER2()
2223 …), RsBlas_zher2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, A.… in ZHER2()
2248 …public void ZHPR2(@Uplo int Uplo, Double2 alpha, Allocation X, int incX, Allocation Y, int incY, A… in ZHPR2() argument
2250 int N = validateSPR2(Element.F64_2(mRS), Uplo, X, incX, Y, incY, Ap); in ZHPR2()
2251 …), RsBlas_zhpr2, 0, 0, 0, Uplo, 0, 0, N, 0, alpha.x, alpha.y, X.getID(mRS), Y.getID(mRS), 0, 0, Ap… in ZHPR2()