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

Function matmulTT

src/api/cpp/blas.cpp:34–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34array matmulTT(const array &lhs, const array &rhs) {
35 af_array out = 0;
36 AF_THROW(af_matmul(&out, lhs.get(), rhs.get(), AF_MAT_TRANS, AF_MAT_TRANS));
37 return array(out);
38}
39
40array matmul(const array &a, const array &b, const array &c) {
41 dim_t tmp1 = a.dims(0) * b.dims(1);

Callers 3

TESTFunction · 0.85
back_propagateMethod · 0.85
back_propagateMethod · 0.85

Calls 3

af_matmulFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected