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

Function strsm

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

Source from the content-addressed store, hash-verified

113}
114
115void
116strsm(char side, char uplo, char transa, char diag, int m, int n, float alpha, float *a, int lda, float *b, int ldb)
117{
118 strsm_(&side, &uplo, &transa, &diag, &m, &n, &alpha, a, &lda, b, &ldb);
119}
120
121void
122dtrsm(char side, char uplo, char transa, char diag, int m, int n, double alpha, double *a, int lda, double *b, int ldb)

Callers 1

blasStrsmFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected