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

Function matmulTN

src/api/cpp/blas.cpp:28–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26}
27
28array matmulTN(const array &lhs, const array &rhs) {
29 af_array out = 0;
30 AF_THROW(af_matmul(&out, lhs.get(), rhs.get(), AF_MAT_TRANS, AF_MAT_NONE));
31 return array(out);
32}
33
34array matmulTT(const array &lhs, const array &rhs) {
35 af_array out = 0;

Callers 5

trainFunction · 0.85
costFunction · 0.85
trainMethod · 0.85
costFunction · 0.85
trainMethod · 0.85

Calls 3

af_matmulFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected