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

Function matmul

src/api/cpp/blas.cpp:15–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace af {
15array matmul(const array &lhs, const array &rhs, const matProp optLhs,
16 const matProp optRhs) {
17 af_array out = 0;
18 AF_THROW(af_matmul(&out, lhs.get(), rhs.get(), optLhs, optRhs));
19 return array(out);
20}
21
22array matmulNT(const array &lhs, const array &rhs) {
23 af_array out = 0;

Callers 15

choleskyTesterFunction · 0.50
qrTesterFunction · 0.50
sparseTesterFunction · 0.50
sparseTransposeTesterFunction · 0.50
inverseTesterFunction · 0.50
threading.cppFile · 0.50
TEST_FFunction · 0.50
solveTesterFunction · 0.50
solveLUTesterFunction · 0.50
solveTriangleTesterFunction · 0.50
TESTFunction · 0.50
gforFunction · 0.50

Calls 4

af_matmulFunction · 0.50
arrayClass · 0.50
getMethod · 0.45
dimsMethod · 0.45

Tested by

no test coverage detected