D | ScriptIntrinsicBLAS.java | 279 …validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) { in validateGEMV() argument 285 !Y.getType().getElement().isCompatible(e)) { in validateGEMV() 288 if (X.getType().getY() > 1 || Y.getType().getY() > 1) { in validateGEMV() 304 Y.getType().getX() != expectedYDim) { in validateGEMV() 324 …nt TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) { in SGEMV() argument 325 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY); in SGEMV() local 328 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in SGEMV() 346 … TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) { in DGEMV() argument 347 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY); in DGEMV() local 350 …gemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, in… in DGEMV() [all …]
|