Home | History | Annotate | Download | only in renderscript

Lines Matching refs:KU

447      *       but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
450 * for j in range(max(0, i-kl), min(i+ku+1, n)):
455 * @param KU The number of super-diagonals of the matrix A.
464 public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
465 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
467 if (KL < 0 || KU < 0) {
468 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
482 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp);
492 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
495 * for j in range(max(0, i-kl), min(i+ku+1, n)):
500 * @param KU The number of super-diagonals of the matrix A.
509 public void DGBMV(@Transpose int TransA, int KL, int KU, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) {
510 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
512 if (KL < 0 || KU < 0) {
513 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
527 mRS.nScriptIntrinsicBLAS_Double(getID(mRS), RsBlas_dgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp);
537 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
540 * for j in range(max(0, i-kl), min(i+ku+1, n)):
545 * @param KU The number of super-diagonals of the matrix A.
554 public void CGBMV(@Transpose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) {
555 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
557 if (KL < 0 || KU < 0) {
558 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
572 mRS.nScriptIntrinsicBLAS_Complex(getID(mRS), RsBlas_cgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y, aID, xID, beta.x, beta.y, yID, incX, incY, KL, KU, mUseIncSupp);
582 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
585 * for j in range(max(0, i-kl), min(i+ku+1, n)):
590 * @param KU The number of super-diagonals of the matrix A.
599 public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) {
600 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
602 if (KL < 0 || KU < 0) {
603 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
617 mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha.x, alpha.y, aID, xID, beta.x, beta.y, yID, incX, incY, KL, KU, mUseIncSupp);