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

Function accum

src/api/cpp/scan.cpp:15–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace af {
15array accum(const array& in, const int dim) {
16 af_array out = 0;
17 AF_THROW(af_accum(&out, in.get(), dim));
18 return array(out);
19}
20
21array scan(const array& in, const int dim, binaryOp op, bool inclusive_scan) {
22 af_array out = 0;

Callers 4

TESTFunction · 0.85
TESTFunction · 0.85
TYPED_TESTFunction · 0.85
otsuFunction · 0.85

Calls 3

af_accumFunction · 0.85
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected