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

Function ssymm

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

Source from the content-addressed store, hash-verified

233}
234
235void
236ssymm(char side, char uplo, int m, int n, float alpha, float *a, int lda, float *b, int ldb, float beta, float *c, int ldc)
237{
238 ssymm_( &side, &uplo, &m, &n, &alpha, a, &lda, b, &ldb, &beta, c, &ldc);
239}
240
241void
242dsymm(char side, char uplo, int m, int n, double alpha, double *a, int lda, double *b, int ldb, double beta, double *c, int ldc)

Callers 1

blasSsymmFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected