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

Function ssyrk

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

Source from the content-addressed store, hash-verified

161}
162
163void
164ssyrk(char uplo, char transa, int n, int k, float alpha, float *a, int lda, float beta, float *c, int ldc)
165{
166 ssyrk_(&uplo, &transa, &n, &k, &alpha, a, &lda, &beta, c, &ldc);
167}
168
169void
170dsyrk(char uplo, char transa, int n, int k, double alpha, double *a, int lda, double beta, double *c, int ldc)

Callers 1

blasSsyrkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected