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

Function strmm

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

Source from the content-addressed store, hash-verified

89}
90
91void
92strmm(char side, char uplo, char transa, char diag, int m, int n, float alpha, float *a, int lda, float *b, int ldb)
93{
94 strmm_(&side, &uplo, &transa, &diag, &m, &n, &alpha, a, &lda, b, &ldb);
95}
96
97void
98dtrmm(char side, char uplo, char transa, char diag, int m, int n, double alpha, double *a, int lda, double *b, int ldb)

Callers 1

blasStrmmFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected