Searched refs:KL (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java969 int KL, int KU);
973 int KL, int KU) {
975 rsnScriptIntrinsicBLAS_Single(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU);
981 int KL, int KU);
985 int KL, int KU) {
987 rsnScriptIntrinsicBLAS_Double(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU);
993 int KL, int KU);
997 int KL, int KU) {
999 rsnScriptIntrinsicBLAS_Complex(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU);
1005 int KL, in
966 rsnScriptIntrinsicBLAS_Single(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU) argument
970 nScriptIntrinsicBLAS_Single(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU) argument
978 rsnScriptIntrinsicBLAS_Double(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU) argument
982 nScriptIntrinsicBLAS_Double(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU) argument
990 rsnScriptIntrinsicBLAS_Complex(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU) argument
994 nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU) argument
1002 rsnScriptIntrinsicBLAS_Z(long con, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
1006 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
[all...]
H A DScriptIntrinsicBLAS.java400 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
407 * @param KL The number of sub-diagonals of the matrix A.
417 public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { argument
418 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
420 if (KL < 0 || KU < 0) {
421 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
425 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, KL, KU);
435 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
442 * @param KL The number of sub-diagonals of the matrix A.
452 public void DGBMV(@Transpose int TransA, int KL, in argument
487 CGBMV(@ranspose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
522 ZGBMV(@ranspose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DRenderScript.java931 int KL, int KU, boolean mUseInc);
935 int KL, int KU, boolean mUseInc) {
937 rsnScriptIntrinsicBLAS_Single(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc);
943 int KL, int KU, boolean mUseInc);
947 int KL, int KU, boolean mUseInc) {
949 rsnScriptIntrinsicBLAS_Double(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc);
955 int KL, int KU, boolean mUseInc);
959 int KL, int KU, boolean mUseInc) {
961 rsnScriptIntrinsicBLAS_Complex(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU, mUseInc);
967 int KL, in
928 rsnScriptIntrinsicBLAS_Single(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
932 nScriptIntrinsicBLAS_Single(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, long A, long B, float beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
940 rsnScriptIntrinsicBLAS_Double(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
944 nScriptIntrinsicBLAS_Double(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, long A, long B, double beta, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
952 rsnScriptIntrinsicBLAS_Complex(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
956 nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, long A, long B, float betaX, float betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
964 rsnScriptIntrinsicBLAS_Z(long con, long incCon, long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
968 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
[all...]
H A DScriptIntrinsicBLAS.java447 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
454 * @param KL The number of sub-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) { argument
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
499 * @param KL The number of sub-diagonals of the matrix A.
509 public void DGBMV(@Transpose int TransA, int KL, in argument
554 CGBMV(@ranspose int TransA, int KL, int KU, Float2 alpha, Allocation A, Allocation X, int incX, Float2 beta, Allocation Y, int incY) argument
599 ZGBMV(@ranspose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) argument
[all...]
/frameworks/rs/cpp/
H A DScriptIntrinsicBLAS.cpp52 int M, int N, int K, int incX, int incY, int KL, int KU,
100 call.KL = KL;
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) {
112 M, N, K, incX, incY, KL, KU, alpha, beta, 0.0, 0.0,
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) {
126 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, alpha, beta,
137 float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) {
139 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0,
150 double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, in
50 setUpBLASCall(RsBlasDataType dataType, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, int incX, int incY, int KL, int KU, float alphaF, float betaF, double alphaD, double betaD, float alphaCX, float alphaCY, float betaCX, float betaCY, double alphaZX, double alphaZY, double betaZX, double betaZY ) argument
107 nScriptIntrinsicBLAS_Single(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alpha, RsAllocation A, RsAllocation B, float beta, RsAllocation C, int incX, int incY, int KL, int KU) argument
121 nScriptIntrinsicBLAS_Double(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alpha, RsAllocation A, RsAllocation B, double beta, RsAllocation C, int incX, int incY, int KL, int KU) argument
134 nScriptIntrinsicBLAS_Complex(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, float alphaX, float alphaY, RsAllocation A, RsAllocation B, float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) argument
147 nScriptIntrinsicBLAS_Z(RS* mRS, RsContext con, RsScript id, RsBlasFunction func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, RsAllocation A, RsAllocation B, double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU) argument
257 SGBMV(RsBlasTranspose TransA, int KL, int KU, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, float beta, const sp<Allocation>& Y, int incY) argument
273 DGBMV(RsBlasTranspose TransA, int KL, int KU, double alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, double beta, const sp<Allocation>& Y, int incY) argument
289 CGBMV(RsBlasTranspose TransA, int KL, int KU, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Float2 beta, const sp<Allocation>& Y, int incY) argument
305 ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) argument
[all...]
H A DrsCppStructs.h1917 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
1924 * @param KL The number of sub-diagonals of the matrix A.
1935 int KL, int KU, float alpha, const sp<Allocation>& A, const sp<Allocation>& X, int incX,
1945 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
1952 * @param KL The number of sub-diagonals of the matrix A.
1963 int KL, int KU, double alpha, const sp<Allocation>& A, const sp<Allocation>& X,
1973 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
1980 * @param KL The number of sub-diagonals of the matrix A.
1991 int KL, int KU, Float2 alpha, const sp<Allocation>& A, const sp<Allocation>& X,
2001 * but only the region M*(KL
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuBLASDispatch.h31 const int KL, const int KU, const float alpha,
64 const int KL, const int KU, const double alpha,
97 const int KL, const int KU, const void *alpha,
130 const int KL, const int KU, const void *alpha,
H A DrsCpuIntrinsicBLAS.cpp285 cblas_sgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
327 cblas_dgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
369 cblas_cgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
411 cblas_zgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
/frameworks/rs/
H A DrsDefines.h467 int KL; member in struct:__anon2130
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp622 jint KL, jint KU) {
638 call.KL = KL;
655 jint KL, jint KU) {
671 call.KL = KL;
688 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) {
706 call.KL = KL;
723 jdouble betaY, jlong C, jint incX, jint incY, jint KL, jin
619 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alpha, jlong A, jlong B, jfloat beta, jlong C, jint incX, jint incY, jint KL, jint KU) argument
652 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alpha, jlong A, jlong B, jdouble beta, jlong C, jint incX, jint incY, jint KL, jint KU) argument
685 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alphaX, jfloat alphaY, jlong A, jlong B, jfloat betaX, jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU) argument
720 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alphaX, jdouble alphaY, jlong A, jlong B, jdouble betaX, jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU) argument
[all...]
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp586 jint KL, jint KU, jboolean mUseInc) {
602 call.KL = KL;
626 jint KL, jint KU, jboolean mUseInc) {
642 call.KL = KL;
666 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) {
684 call.KL = KL;
709 jdouble betaY, jlong C, jint incX, jint incY, jint KL, jin
583 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alpha, jlong A, jlong B, jfloat beta, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
623 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alpha, jlong A, jlong B, jdouble beta, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
663 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jfloat alphaX, jfloat alphaY, jlong A, jlong B, jfloat betaX, jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
706 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, jint TransB, jint Side, jint Uplo, jint Diag, jint M, jint N, jint K, jdouble alphaX, jdouble alphaY, jlong A, jlong B, jdouble betaX, jdouble betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) argument
[all...]

Completed in 198 milliseconds