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

Function transpose

src/api/cpp/transpose.cpp:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16array transpose(const array& in, const bool conjugate) {
17 af_array out = 0;
18 AF_THROW(af_transpose(&out, in.get(), conjugate));
19 return array(out);
20}
21
22void transposeInPlace(array& in, const bool conjugate) {
23 AF_THROW(af_transpose_inplace(in.get(), conjugate));

Callers 15

TMethod · 0.70
HMethod · 0.70
TESTFunction · 0.50
TESTFunction · 0.50
trsCPPTestFunction · 0.50
trsCPPConjTestFunction · 0.50
TESTFunction · 0.50
TYPED_TESTFunction · 0.50
transposeInPlaceCPPTestFunction · 0.50
rankBigFunction · 0.50
TESTFunction · 0.50
reorderFunction · 0.50

Calls 3

af_transposeFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected