Home | History | Annotate | Download | only in cpp

Lines Matching refs:KU

52               int M, int N, int K, int incX, int incY, int KL, int KU,
101 call.KU = KU;
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, int KU) {
152 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0,
257 void ScriptIntrinsicBLAS::SGBMV(RsBlasTranspose TransA, int KL, int KU, float alpha, const sp<Allocation>& A,
259 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
261 if (KL < 0 || KU < 0) {
262 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "KL and KU must be greater than or equal to 0");
270 beta, Y->getID(), incX, incY, KL, KU);
273 void ScriptIntrinsicBLAS::DGBMV(RsBlasTranspose TransA, int KL, int KU, double alpha, const sp<Allocation>& A,
275 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
277 if (KL < 0 || KU < 0) {
278 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "KL and KU must be greater than or equal to 0");
286 beta, Y->getID(), incX, incY, KL, KU);
289 void ScriptIntrinsicBLAS::CGBMV(RsBlasTranspose TransA, int KL, int KU, Float2 alpha, const sp<Allocation>& A,
291 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
293 if (KL < 0 || KU < 0) {
294 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "KL and KU must be greater than or equal to 0");
302 beta.x, beta.y, Y->getID(), incX, incY, KL, KU);
305 void ScriptIntrinsicBLAS::ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, const sp<Allocation>& A,
307 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
309 if (KL < 0 || KU < 0) {
310 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "KL and KU must be greater than or equal to 0");
318 beta.x, beta.y, Y->getID(), incX, incY, KL, KU);