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

Function ssymv

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

Source from the content-addressed store, hash-verified

53}
54
55void
56ssymv(char uplo, int n, float alpha, float *a, int lda, float *x, int incx, float beta, float *y, int incy)
57{
58 ssymv_(&uplo, &n, &alpha, a, &lda, x, &incx, &beta, y, &incy);
59}
60
61void
62dsymv(char uplo, int n, double alpha, double *a, int lda, double *x, int incx, double beta, double *y, int incy)

Callers 1

blasSsymvFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected