Package dev.ludovic.netlib.blas
Class JavaBLAS
java.lang.Object
dev.ludovic.netlib.blas.JavaBLAS
- All Implemented Interfaces:
BLAS
- Direct Known Subclasses:
VectorizedBLAS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoubledasum(int n, double[] x, int incx)doubledasum(int n, double[] x, int offsetx, int incx)protected doubledasumK(int n, double[] x, int offsetx, int incx)voiddaxpy(int n, double alpha, double[] x, int incx, double[] y, int incy)voiddaxpy(int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)protected voiddaxpyK(int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)voiddcopy(int n, double[] x, int incx, double[] y, int incy)voiddcopy(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)protected voiddcopyK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)doubleddot(int n, double[] x, int incx, double[] y, int incy)doubleddot(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)protected doubleddotK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)voiddgbmv(String trans, int m, int n, int kl, int ku, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy)voiddgbmv(String trans, int m, int n, int kl, int ku, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddgbmvK(String trans, int m, int n, int kl, int ku, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddgebpTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddgecpyNN(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)protected voiddgecpyNT(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)protected voiddgecpyTN(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)protected voiddgecpyTT(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)voiddgemm(String transa, String transb, int m, int n, int k, double alpha, double[] a, int lda, double[] b, int ldb, double beta, double[] c, int ldc)voiddgemm(String transa, String transb, int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddgemmBeta(int rows, int rowe, int cols, int cole, double beta, double[] c, int offsetc, int ldc)protected voiddgemmK(String transa, String transb, int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddgemmNN(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddgemmNT(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddgemmTN(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddgemmTT(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)voiddgemv(String trans, int m, int n, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy)voiddgemv(String trans, int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddgemvK(String trans, int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddgemvN(int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddgemvT(int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddgepdotTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)voiddger(int m, int n, double alpha, double[] x, int incx, double[] y, int incy, double[] a, int lda)voiddger(int m, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda)protected voiddgerK(int m, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda)doublednrm2(int n, double[] x, int incx)doublednrm2(int n, double[] x, int offsetx, int incx)protected doublednrm2K(int n, double[] x, int offsetx, int incx)voiddrot(int n, double[] x, int incx, double[] y, int incy, double c, double s)voiddrot(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double c, double s)voiddrotg(org.netlib.util.doubleW da, org.netlib.util.doubleW db, org.netlib.util.doubleW c, org.netlib.util.doubleW s)protected voiddrotK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double c, double s)voiddrotm(int n, double[] x, int incx, double[] y, int incy, double[] param)voiddrotm(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] param, int offsetparam)voiddrotmg(org.netlib.util.doubleW dd1, org.netlib.util.doubleW dd2, org.netlib.util.doubleW dx1, double dy1, double[] param)voiddrotmg(org.netlib.util.doubleW dd1, org.netlib.util.doubleW dd2, org.netlib.util.doubleW dx1, double dy1, double[] param, int offsetparam)protected voiddrotmgK(org.netlib.util.doubleW dd1, org.netlib.util.doubleW dd2, org.netlib.util.doubleW dx1, double dy1, double[] param, int offsetparam)protected voiddrotmK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] param, int offsetparam)voiddsbmv(String uplo, int n, int k, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy)voiddsbmv(String uplo, int n, int k, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddsbmvK(String uplo, int n, int k, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)voiddscal(int n, double alpha, double[] x, int incx)voiddscal(int n, double alpha, double[] x, int offsetx, int incx)protected voiddscalK(int n, double alpha, double[] x, int offsetx, int incx)voiddspmv(String uplo, int n, double alpha, double[] a, double[] x, int incx, double beta, double[] y, int incy)voiddspmv(String uplo, int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddspmvK(String uplo, int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddspmvL(int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddspmvU(int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)voidvoidvoidvoiddspr2(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta)protected voiddspr2K(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta)protected voiddsprK(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta)voiddswap(int n, double[] x, int incx, double[] y, int incy)voiddswap(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)protected voiddswapK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy)voiddsymm(String side, String uplo, int m, int n, double alpha, double[] a, int lda, double[] b, int ldb, double beta, double[] c, int ldc)voiddsymm(String side, String uplo, int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddsymmK(String side, String uplo, int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddsymmLL(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddsymmLU(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddsymmRL(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddsymmRU(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)voiddsymv(String uplo, int n, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy)voiddsymv(String uplo, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddsymvK(String uplo, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddsymvL(int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)protected voiddsymvU(int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy)voidvoiddsyr(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta, int lda)voiddsyr2(String uplo, int n, double alpha, double[] x, int incx, double[] y, int incy, double[] a, int lda)voiddsyr2(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda)voiddsyr2k(String uplo, String trans, int n, int k, double alpha, double[] a, int lda, double[] b, int ldb, double beta, double[] c, int ldc)voiddsyr2k(String uplo, String trans, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)protected voiddsyr2K(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda)protected voiddsyr2kK(String uplo, String trans, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc)voiddsyrk(String uplo, String trans, int n, int k, double alpha, double[] a, int lda, double beta, double[] c, int ldc)voiddsyrk(String uplo, String trans, int n, int k, double alpha, double[] a, int offseta, int lda, double beta, double[] c, int offsetc, int ldc)protected voiddsyrK(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta, int lda)protected voiddsyrkK(String uplo, String trans, int n, int k, double alpha, double[] a, int offseta, int lda, double beta, double[] c, int offsetc, int ldc)voiddtbmv(String uplo, String trans, String diag, int n, int k, double[] a, int lda, double[] x, int incx)voiddtbmv(String uplo, String trans, String diag, int n, int k, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)protected voiddtbmvK(String uplo, String trans, String diag, int n, int k, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)voiddtbsv(String uplo, String trans, String diag, int n, int k, double[] a, int lda, double[] x, int incx)voiddtbsv(String uplo, String trans, String diag, int n, int k, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)protected voiddtbsvK(String uplo, String trans, String diag, int n, int k, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)voidvoiddtpmv(String uplo, String trans, String diag, int n, double[] a, int offseta, double[] x, int offsetx, int incx)protected voiddtpmvK(String uplo, String trans, String diag, int n, double[] a, int offseta, double[] x, int offsetx, int incx)voidvoiddtpsv(String uplo, String trans, String diag, int n, double[] a, int offseta, double[] x, int offsetx, int incx)protected voiddtpsvK(String uplo, String trans, String diag, int n, double[] a, int offseta, double[] x, int offsetx, int incx)voiddtrmm(String side, String uplo, String transa, String diag, int m, int n, double alpha, double[] a, int lda, double[] b, int ldb)voiddtrmm(String side, String uplo, String transa, String diag, int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb)protected voiddtrmmK(String side, String uplo, String transa, String diag, int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb)voidvoiddtrmv(String uplo, String trans, String diag, int n, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)protected voiddtrmvK(String uplo, String trans, String diag, int n, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)voiddtrsm(String side, String uplo, String transa, String diag, int m, int n, double alpha, double[] a, int lda, double[] b, int ldb)voiddtrsm(String side, String uplo, String transa, String diag, int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb)protected voiddtrsmK(String side, String uplo, String transa, String diag, int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb)voidvoiddtrsv(String uplo, String trans, String diag, int n, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)protected voiddtrsvK(String uplo, String trans, String diag, int n, double[] a, int offseta, int lda, double[] x, int offsetx, int incx)static BLASintidamax(int n, double[] x, int incx)intidamax(int n, double[] x, int offsetx, int incx)protected intidamaxK(int n, double[] x, int offsetx, int incx)protected IllegalArgumentExceptionillegalArgument(String method, int arg)intisamax(int n, float[] x, int incx)intisamax(int n, float[] x, int offsetx, int incx)protected intisamaxK(int n, float[] x, int offsetx, int incx)protected intloopAlign(int index, int max, int size)protected intloopBound(int index, int size)booleanfloatsasum(int n, float[] x, int incx)floatsasum(int n, float[] x, int offsetx, int incx)protected floatsasumK(int n, float[] x, int offsetx, int incx)voidsaxpy(int n, float alpha, float[] x, int incx, float[] y, int incy)voidsaxpy(int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)protected voidsaxpyK(int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)voidscopy(int n, float[] x, int incx, float[] y, int incy)voidscopy(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)protected voidscopyK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)floatsdot(int n, float[] x, int incx, float[] y, int incy)floatsdot(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)protected floatsdotK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)floatsdsdot(int n, float sb, float[] x, int incx, float[] y, int incy)floatsdsdot(int n, float sb, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)protected floatsdsdotK(int n, float sb, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)voidsgbmv(String trans, int m, int n, int kl, int ku, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy)voidsgbmv(String trans, int m, int n, int kl, int ku, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsgbmvK(String trans, int m, int n, int kl, int ku, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsgebpTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidsgecpyNN(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)protected voidsgecpyNT(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)protected voidsgecpyTN(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)protected voidsgecpyTT(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst)voidsgemm(String transa, String transb, int m, int n, int k, float alpha, float[] a, int lda, float[] b, int ldb, float beta, float[] c, int ldc)voidsgemm(String transa, String transb, int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidsgemmBeta(int rows, int rowe, int cols, int cole, float beta, float[] c, int offsetc, int ldc)protected voidsgemmK(String transa, String transb, int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidsgemmNN(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidsgemmNT(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidsgemmTN(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidsgemmTT(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)voidsgemv(String trans, int m, int n, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy)voidsgemv(String trans, int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsgemvK(String trans, int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsgemvN(int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsgemvT(int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsgepdotTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)voidsger(int m, int n, float alpha, float[] x, int incx, float[] y, int incy, float[] a, int lda)voidsger(int m, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda)protected voidsgerK(int m, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda)floatsnrm2(int n, float[] x, int incx)floatsnrm2(int n, float[] x, int offsetx, int incx)protected floatsnrm2K(int n, float[] x, int offsetx, int incx)voidsrot(int n, float[] x, int incx, float[] y, int incy, float c, float s)voidsrot(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float c, float s)voidsrotg(org.netlib.util.floatW sa, org.netlib.util.floatW sb, org.netlib.util.floatW c, org.netlib.util.floatW s)protected voidsrotK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float c, float s)voidsrotm(int n, float[] x, int incx, float[] y, int incy, float[] param)voidsrotm(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] param, int offsetparam)voidsrotmg(org.netlib.util.floatW sd1, org.netlib.util.floatW sd2, org.netlib.util.floatW sx1, float sy1, float[] param)voidsrotmg(org.netlib.util.floatW sd1, org.netlib.util.floatW sd2, org.netlib.util.floatW sx1, float sy1, float[] param, int offsetparam)protected voidsrotmgK(org.netlib.util.floatW sd1, org.netlib.util.floatW sd2, org.netlib.util.floatW sx1, float sy1, float[] param, int offsetparam)protected voidsrotmK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] param, int offsetparam)voidssbmv(String uplo, int n, int k, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy)voidssbmv(String uplo, int n, int k, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidssbmvK(String uplo, int n, int k, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)voidsscal(int n, float alpha, float[] x, int incx)voidsscal(int n, float alpha, float[] x, int offsetx, int incx)protected voidsscalK(int n, float alpha, float[] x, int offsetx, int incx)voidsspmv(String uplo, int n, float alpha, float[] a, float[] x, int incx, float beta, float[] y, int incy)voidsspmv(String uplo, int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsspmvK(String uplo, int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsspmvL(int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidsspmvU(int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)voidvoidvoidvoidsspr2(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta)protected voidsspr2K(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta)protected voidvoidsswap(int n, float[] x, int incx, float[] y, int incy)voidsswap(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)protected voidsswapK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy)voidssymm(String side, String uplo, int m, int n, float alpha, float[] a, int lda, float[] b, int ldb, float beta, float[] c, int ldc)voidssymm(String side, String uplo, int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidssymmK(String side, String uplo, int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidssymmLL(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidssymmLU(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidssymmRL(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidssymmRU(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)voidssymv(String uplo, int n, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy)voidssymv(String uplo, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidssymvK(String uplo, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidssymvL(int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)protected voidssymvU(int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy)voidvoidssyr(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] a, int offseta, int lda)voidssyr2(String uplo, int n, float alpha, float[] x, int incx, float[] y, int incy, float[] a, int lda)voidssyr2(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda)voidssyr2k(String uplo, String trans, int n, int k, float alpha, float[] a, int lda, float[] b, int ldb, float beta, float[] c, int ldc)voidssyr2k(String uplo, String trans, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)protected voidssyr2K(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda)protected voidssyr2kK(String uplo, String trans, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc)voidssyrk(String uplo, String trans, int n, int k, float alpha, float[] a, int lda, float beta, float[] c, int ldc)voidssyrk(String uplo, String trans, int n, int k, float alpha, float[] a, int offseta, int lda, float beta, float[] c, int offsetc, int ldc)protected voidssyrK(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] a, int offseta, int lda)protected voidssyrkK(String uplo, String trans, int n, int k, float alpha, float[] a, int offseta, int lda, float beta, float[] c, int offsetc, int ldc)voidstbmv(String uplo, String trans, String diag, int n, int k, float[] a, int lda, float[] x, int incx)voidstbmv(String uplo, String trans, String diag, int n, int k, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)protected voidstbmvK(String uplo, String trans, String diag, int n, int k, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)voidstbsv(String uplo, String trans, String diag, int n, int k, float[] a, int lda, float[] x, int incx)voidstbsv(String uplo, String trans, String diag, int n, int k, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)protected voidstbsvK(String uplo, String trans, String diag, int n, int k, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)voidvoidstpmv(String uplo, String trans, String diag, int n, float[] a, int offseta, float[] x, int offsetx, int incx)protected voidstpmvK(String uplo, String trans, String diag, int n, float[] a, int offseta, float[] x, int offsetx, int incx)voidvoidstpsv(String uplo, String trans, String diag, int n, float[] a, int offseta, float[] x, int offsetx, int incx)protected voidstpsvK(String uplo, String trans, String diag, int n, float[] a, int offseta, float[] x, int offsetx, int incx)voidstrmm(String side, String uplo, String transa, String diag, int m, int n, float alpha, float[] a, int lda, float[] b, int ldb)voidstrmm(String side, String uplo, String transa, String diag, int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb)protected voidstrmmK(String side, String uplo, String transa, String diag, int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb)voidvoidstrmv(String uplo, String trans, String diag, int n, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)protected voidstrmvK(String uplo, String trans, String diag, int n, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)voidstrsm(String side, String uplo, String transa, String diag, int m, int n, float alpha, float[] a, int lda, float[] b, int ldb)voidstrsm(String side, String uplo, String transa, String diag, int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb)protected voidstrsmK(String side, String uplo, String transa, String diag, int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb)voidvoidstrsv(String uplo, String trans, String diag, int n, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)protected voidstrsvK(String uplo, String trans, String diag, int n, float[] a, int offseta, int lda, float[] x, int offsetx, int incx)
-
Constructor Details
-
JavaBLAS
protected JavaBLAS()
-
-
Method Details
-
getInstance
-
dasumK
protected double dasumK(int n, double[] x, int offsetx, int incx) -
sasumK
protected float sasumK(int n, float[] x, int offsetx, int incx) -
daxpyK
protected void daxpyK(int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
saxpyK
protected void saxpyK(int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
dcopyK
protected void dcopyK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
scopyK
protected void scopyK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
ddotK
protected double ddotK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
sdotK
protected float sdotK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
sdsdotK
protected float sdsdotK(int n, float sb, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
dgbmvK
protected void dgbmvK(String trans, int m, int n, int kl, int ku, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
sgbmvK
protected void sgbmvK(String trans, int m, int n, int kl, int ku, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dgemmK
-
dgemmBeta
protected void dgemmBeta(int rows, int rowe, int cols, int cole, double beta, double[] c, int offsetc, int ldc) -
dgecpyNN
protected void dgecpyNN(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
dgecpyNT
protected void dgecpyNT(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
dgecpyTN
protected void dgecpyTN(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
dgecpyTT
protected void dgecpyTT(int m, int n, double[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, double[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
dgebpTN
protected void dgebpTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dgepdotTN
protected void dgepdotTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dgemmNN
protected void dgemmNN(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dgemmNT
protected void dgemmNT(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dgemmTN
protected void dgemmTN(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dgemmTT
protected void dgemmTT(int m, int n, int k, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
sgemmK
-
sgemmBeta
protected void sgemmBeta(int rows, int rowe, int cols, int cole, float beta, float[] c, int offsetc, int ldc) -
sgecpyNN
protected void sgecpyNN(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
sgecpyNT
protected void sgecpyNT(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
sgecpyTN
protected void sgecpyTN(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
sgecpyTT
protected void sgecpyTT(int m, int n, float[] src, int offsetsrc, int ldsrc, int rowssrc, int colssrc, float[] dst, int offsetdst, int lddst, int rowsdst, int colsdst) -
sgebpTN
protected void sgebpTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
sgepdotTN
protected void sgepdotTN(int m, int rows, int rowe, int n, int cols, int cole, int k, int is, int ie, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
sgemmNN
protected void sgemmNN(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
sgemmNT
protected void sgemmNT(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
sgemmTN
protected void sgemmTN(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
sgemmTT
protected void sgemmTT(int m, int n, int k, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
dgemvK
protected void dgemvK(String trans, int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
dgemvN
protected void dgemvN(int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
dgemvT
protected void dgemvT(int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
sgemvK
protected void sgemvK(String trans, int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
sgemvN
protected void sgemvN(int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
sgemvT
protected void sgemvT(int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dgerK
protected void dgerK(int m, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda) -
sgerK
protected void sgerK(int m, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda) -
dnrm2K
protected double dnrm2K(int n, double[] x, int offsetx, int incx) -
snrm2K
protected float snrm2K(int n, float[] x, int offsetx, int incx) -
drotK
protected void drotK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double c, double s) -
srotK
protected void srotK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float c, float s) -
drotmK
protected void drotmK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] param, int offsetparam) -
srotmK
protected void srotmK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] param, int offsetparam) -
drotmgK
protected void drotmgK(org.netlib.util.doubleW dd1, org.netlib.util.doubleW dd2, org.netlib.util.doubleW dx1, double dy1, double[] param, int offsetparam) -
srotmgK
protected void srotmgK(org.netlib.util.floatW sd1, org.netlib.util.floatW sd2, org.netlib.util.floatW sx1, float sy1, float[] param, int offsetparam) -
dsbmvK
protected void dsbmvK(String uplo, int n, int k, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
ssbmvK
protected void ssbmvK(String uplo, int n, int k, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dscalK
protected void dscalK(int n, double alpha, double[] x, int offsetx, int incx) -
sscalK
protected void sscalK(int n, float alpha, float[] x, int offsetx, int incx) -
dspmvK
protected void dspmvK(String uplo, int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
dspmvU
protected void dspmvU(int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
dspmvL
protected void dspmvL(int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
sspmvK
protected void sspmvK(String uplo, int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
sspmvU
protected void sspmvU(int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
sspmvL
protected void sspmvL(int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dsprK
protected void dsprK(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta) -
ssprK
protected void ssprK(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] a, int offseta) -
dspr2K
protected void dspr2K(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta) -
sspr2K
protected void sspr2K(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta) -
dswapK
protected void dswapK(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
sswapK
protected void sswapK(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
dsymmK
-
dsymmLU
protected void dsymmLU(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dsymmLL
protected void dsymmLL(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dsymmRU
protected void dsymmRU(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
dsymmRL
protected void dsymmRL(int m, int n, double alpha, double[] a, int offseta, int lda, double[] b, int offsetb, int ldb, double beta, double[] c, int offsetc, int ldc) -
ssymmK
-
ssymmLU
protected void ssymmLU(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
ssymmLL
protected void ssymmLL(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
ssymmRU
protected void ssymmRU(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
ssymmRL
protected void ssymmRL(int m, int n, float alpha, float[] a, int offseta, int lda, float[] b, int offsetb, int ldb, float beta, float[] c, int offsetc, int ldc) -
dsymvK
protected void dsymvK(String uplo, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
dsymvU
protected void dsymvU(int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
dsymvL
protected void dsymvL(int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
ssymvK
protected void ssymvK(String uplo, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
ssymvU
protected void ssymvU(int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
ssymvL
protected void ssymvL(int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dsyrK
protected void dsyrK(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta, int lda) -
ssyrK
protected void ssyrK(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] a, int offseta, int lda) -
dsyr2K
protected void dsyr2K(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda) -
ssyr2K
protected void ssyr2K(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda) -
dsyr2kK
-
ssyr2kK
-
dsyrkK
-
ssyrkK
-
dtbmvK
-
stbmvK
-
dtbsvK
-
stbsvK
-
dtpmvK
-
stpmvK
-
dtpsvK
-
stpsvK
-
dtrmmK
-
strmmK
-
dtrmvK
-
strmvK
-
dtrsmK
-
strsmK
-
dtrsvK
-
strsvK
-
idamaxK
protected int idamaxK(int n, double[] x, int offsetx, int incx) -
isamaxK
protected int isamaxK(int n, float[] x, int offsetx, int incx) -
loopAlign
protected int loopAlign(int index, int max, int size) -
loopBound
protected int loopBound(int index, int size) -
illegalArgument
-
dasum
public double dasum(int n, double[] x, int incx) -
dasum
public double dasum(int n, double[] x, int offsetx, int incx) -
sasum
public float sasum(int n, float[] x, int incx) -
sasum
public float sasum(int n, float[] x, int offsetx, int incx) -
daxpy
public void daxpy(int n, double alpha, double[] x, int incx, double[] y, int incy) -
daxpy
public void daxpy(int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
saxpy
public void saxpy(int n, float alpha, float[] x, int incx, float[] y, int incy) -
saxpy
public void saxpy(int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
dcopy
public void dcopy(int n, double[] x, int incx, double[] y, int incy) -
dcopy
public void dcopy(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
scopy
public void scopy(int n, float[] x, int incx, float[] y, int incy) -
scopy
public void scopy(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
ddot
public double ddot(int n, double[] x, int incx, double[] y, int incy) -
ddot
public double ddot(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
sdot
public float sdot(int n, float[] x, int incx, float[] y, int incy) -
sdot
public float sdot(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
sdsdot
public float sdsdot(int n, float sb, float[] x, int incx, float[] y, int incy) -
sdsdot
public float sdsdot(int n, float sb, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
dgbmv
public void dgbmv(String trans, int m, int n, int kl, int ku, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy) -
dgbmv
public void dgbmv(String trans, int m, int n, int kl, int ku, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
sgbmv
public void sgbmv(String trans, int m, int n, int kl, int ku, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy) -
sgbmv
public void sgbmv(String trans, int m, int n, int kl, int ku, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dgemm
-
dgemm
-
sgemm
-
sgemm
-
dgemv
public void dgemv(String trans, int m, int n, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy) -
dgemv
public void dgemv(String trans, int m, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
sgemv
public void sgemv(String trans, int m, int n, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy) -
sgemv
public void sgemv(String trans, int m, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dger
public void dger(int m, int n, double alpha, double[] x, int incx, double[] y, int incy, double[] a, int lda) -
dger
public void dger(int m, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda) -
sger
public void sger(int m, int n, float alpha, float[] x, int incx, float[] y, int incy, float[] a, int lda) -
sger
public void sger(int m, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda) -
dnrm2
public double dnrm2(int n, double[] x, int incx) -
dnrm2
public double dnrm2(int n, double[] x, int offsetx, int incx) -
snrm2
public float snrm2(int n, float[] x, int incx) -
snrm2
public float snrm2(int n, float[] x, int offsetx, int incx) -
drot
public void drot(int n, double[] x, int incx, double[] y, int incy, double c, double s) -
drot
public void drot(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double c, double s) -
srot
public void srot(int n, float[] x, int incx, float[] y, int incy, float c, float s) -
srot
public void srot(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float c, float s) -
drotg
public void drotg(org.netlib.util.doubleW da, org.netlib.util.doubleW db, org.netlib.util.doubleW c, org.netlib.util.doubleW s) -
srotg
public void srotg(org.netlib.util.floatW sa, org.netlib.util.floatW sb, org.netlib.util.floatW c, org.netlib.util.floatW s) -
drotm
public void drotm(int n, double[] x, int incx, double[] y, int incy, double[] param) -
drotm
public void drotm(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] param, int offsetparam) -
srotm
public void srotm(int n, float[] x, int incx, float[] y, int incy, float[] param) -
srotm
public void srotm(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] param, int offsetparam) -
drotmg
public void drotmg(org.netlib.util.doubleW dd1, org.netlib.util.doubleW dd2, org.netlib.util.doubleW dx1, double dy1, double[] param) -
drotmg
public void drotmg(org.netlib.util.doubleW dd1, org.netlib.util.doubleW dd2, org.netlib.util.doubleW dx1, double dy1, double[] param, int offsetparam) -
srotmg
public void srotmg(org.netlib.util.floatW sd1, org.netlib.util.floatW sd2, org.netlib.util.floatW sx1, float sy1, float[] param) -
srotmg
public void srotmg(org.netlib.util.floatW sd1, org.netlib.util.floatW sd2, org.netlib.util.floatW sx1, float sy1, float[] param, int offsetparam) -
dsbmv
public void dsbmv(String uplo, int n, int k, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy) -
dsbmv
public void dsbmv(String uplo, int n, int k, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
ssbmv
public void ssbmv(String uplo, int n, int k, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy) -
ssbmv
public void ssbmv(String uplo, int n, int k, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dscal
public void dscal(int n, double alpha, double[] x, int incx) -
dscal
public void dscal(int n, double alpha, double[] x, int offsetx, int incx) -
sscal
public void sscal(int n, float alpha, float[] x, int incx) -
sscal
public void sscal(int n, float alpha, float[] x, int offsetx, int incx) -
dspmv
public void dspmv(String uplo, int n, double alpha, double[] a, double[] x, int incx, double beta, double[] y, int incy) -
dspmv
public void dspmv(String uplo, int n, double alpha, double[] a, int offseta, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
sspmv
public void sspmv(String uplo, int n, float alpha, float[] a, float[] x, int incx, float beta, float[] y, int incy) -
sspmv
public void sspmv(String uplo, int n, float alpha, float[] a, int offseta, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dspr
-
dspr
public void dspr(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta) -
sspr
-
sspr
public void sspr(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] a, int offseta) -
dspr2
public void dspr2(String uplo, int n, double alpha, double[] x, int incx, double[] y, int incy, double[] a) -
dspr2
public void dspr2(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta) -
sspr2
public void sspr2(String uplo, int n, float alpha, float[] x, int incx, float[] y, int incy, float[] a) -
sspr2
public void sspr2(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta) -
dswap
public void dswap(int n, double[] x, int incx, double[] y, int incy) -
dswap
public void dswap(int n, double[] x, int offsetx, int incx, double[] y, int offsety, int incy) -
sswap
public void sswap(int n, float[] x, int incx, float[] y, int incy) -
sswap
public void sswap(int n, float[] x, int offsetx, int incx, float[] y, int offsety, int incy) -
dsymm
-
dsymm
-
ssymm
-
ssymm
-
dsymv
public void dsymv(String uplo, int n, double alpha, double[] a, int lda, double[] x, int incx, double beta, double[] y, int incy) -
dsymv
public void dsymv(String uplo, int n, double alpha, double[] a, int offseta, int lda, double[] x, int offsetx, int incx, double beta, double[] y, int offsety, int incy) -
ssymv
public void ssymv(String uplo, int n, float alpha, float[] a, int lda, float[] x, int incx, float beta, float[] y, int incy) -
ssymv
public void ssymv(String uplo, int n, float alpha, float[] a, int offseta, int lda, float[] x, int offsetx, int incx, float beta, float[] y, int offsety, int incy) -
dsyr
-
dsyr
public void dsyr(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] a, int offseta, int lda) -
ssyr
-
ssyr
public void ssyr(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] a, int offseta, int lda) -
dsyr2
public void dsyr2(String uplo, int n, double alpha, double[] x, int incx, double[] y, int incy, double[] a, int lda) -
dsyr2
public void dsyr2(String uplo, int n, double alpha, double[] x, int offsetx, int incx, double[] y, int offsety, int incy, double[] a, int offseta, int lda) -
ssyr2
public void ssyr2(String uplo, int n, float alpha, float[] x, int incx, float[] y, int incy, float[] a, int lda) -
ssyr2
public void ssyr2(String uplo, int n, float alpha, float[] x, int offsetx, int incx, float[] y, int offsety, int incy, float[] a, int offseta, int lda) -
dsyr2k
-
dsyr2k
-
ssyr2k
-
ssyr2k
-
dsyrk
-
dsyrk
-
ssyrk
-
ssyrk
-
dtbmv
-
dtbmv
-
stbmv
-
stbmv
-
dtbsv
-
dtbsv
-
stbsv
-
stbsv
-
dtpmv
-
dtpmv
-
stpmv
-
stpmv
-
dtpsv
-
dtpsv
-
stpsv
-
stpsv
-
dtrmm
-
dtrmm
-
strmm
-
strmm
-
dtrmv
-
dtrmv
-
strmv
-
strmv
-
dtrsm
-
dtrsm
-
strsm
-
strsm
-
dtrsv
-
dtrsv
-
strsv
-
strsv
-
idamax
public int idamax(int n, double[] x, int incx) -
idamax
public int idamax(int n, double[] x, int offsetx, int incx) -
isamax
public int isamax(int n, float[] x, int incx) -
isamax
public int isamax(int n, float[] x, int offsetx, int incx) -
lsame
-