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

Function zgemv

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

Source from the content-addressed store, hash-verified

47}
48
49void
50zgemv(char transa, int m, int n, doublecomplex *alpha, doublecomplex *a, int lda, doublecomplex *x, int incx, doublecomplex *beta, doublecomplex *y, int incy)
51{
52 zgemv_(&transa, &m, &n, alpha, a, &lda, x, &incx, beta, y, &incy);
53}
54
55void
56ssymv(char uplo, int n, float alpha, float *a, int lda, float *x, int incx, float beta, float *y, int incy)

Callers 1

blasZgemvFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected