cumSum function

VARP cumSum(
  1. VARP x,
  2. int axis, {
  3. bool exclusive = false,
  4. bool reverse = false,
})

Implementation

VARP cumSum(VARP x, int axis, {bool exclusive = false, bool reverse = false}) =>
    VARP.fromPointer(C.mnn_expr_CumSum(x.ptr, axis, exclusive, reverse));