MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / sgemv

Function sgemv

src/tests/correctness/blas-lapack.c:31–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29#endif
30
31void
32sgemv(char transa, int m, int n, float alpha, float *a, int lda, float *x, int incx, float beta, float *y, int incy)
33{
34 sgemv_(&transa, &m, &n, &alpha, a, &lda, x, &incx, &beta, y, &incy);
35}
36
37void
38dgemv(char transa, int m, int n, double alpha, double *a, int lda, double *x, int incx, double beta, double *y, int incy)

Callers 1

blasSgemvFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected