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

Function matmulNT

src/api/cpp/blas.cpp:22–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22array matmulNT(const array &lhs, const array &rhs) {
23 af_array out = 0;
24 AF_THROW(af_matmul(&out, lhs.get(), rhs.get(), AF_MAT_NONE, AF_MAT_TRANS));
25 return array(out);
26}
27
28array matmulTN(const array &lhs, const array &rhs) {
29 af_array out = 0;

Callers 4

prop_upMethod · 0.85
trainMethod · 0.85
prop_upMethod · 0.85
mainFunction · 0.85

Calls 3

af_matmulFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected