MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / gemm

Function gemm

src/api/c/blas.cpp:47–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45
46template<typename Ti, typename To = Ti>
47static inline void gemm(af_array *out, af_mat_prop optLhs, af_mat_prop optRhs,
48 const To *alpha, const af_array lhs, const af_array rhs,
49 const To *betas) {
50 gemm<Ti, To>(getArray<To>(*out), optLhs, optRhs, alpha, getArray<Ti>(lhs),
51 getArray<Ti>(rhs), betas);
52}
53
54template<typename T>
55static inline af_array dot(const af_array lhs, const af_array rhs,

Callers 1

multiplyIndexedFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected