cumsum#

ivy.cumsum(x, axis=0, exclusive=False, reverse=False, *, dtype=None, out=None)[source]#

Return the cumulative sum of the elements along a given axis.

Parameters:
  • x (Union[Array, NativeArray]) – Input array.

  • axis (int, default: 0) – Axis along which the cumulative sum is computed. Default is 0.

  • exclusive (bool, default: False) – Whether to perform cumsum exclusively. Default is False.

  • reverse (bool, default: False) – Whether to perform the cumsum from last to first element in the selected axis. Default is False (from first to last element)

  • dtype (Optional[Union[Dtype, NativeDtype]], default: None) – Data type of the returned array. Default is None. If None, if the default data type corresponding to the data type “kind” (integer or floating-point) of x has a smaller range of values than the data type of x (e.g., x has data type int64 and the default data type is int32, or x has data type uint64 and the default data type is int64), the returned array must have the same data type as x. If x has a floating-point data type, the returned array must have the default floating-point data type. If x has a signed integer data type (e.g., int16), the returned array must have the default integer data type. If x has an unsigned integer data type (e.g., uint16), the returned array must have an unsigned integer data type having the same number of bits as the default integer data type (e.g., if the default integer data type is int32, the returned array must have a uint32 data type). If the data type (either specified or resolved) differs from the data type of x, the input array should be cast to the specified data type before computing the product.

  • out (Optional[Array], default: None) – Optional output array, for writing the result to. It must have a shape that the inputs broadcast to.

Return type:

Array

Returns:

ret – Array which holds the result of applying cumsum at each original array elements along the specified axis.

Examples

With ivy.Array input:

>>> x = ivy.array([1, 5, 2, 0])
>>> y = ivy.cumsum(x, exclusive= True, reverse=False)
>>> print(y)
ivy.array([0, 1, 6, 8])
>>> x = ivy.array([[6, 4, 2],
...                [1, 3, 0]])
>>> y = ivy.zeros((2,3))
>>> ivy.cumsum(x, axis=0, exclusive=False, reverse=True, out=y)
>>> print(y)
ivy.array([[7, 7, 2],
           [1, 3, 0]])
>>> x = ivy.array([[1, 5, 2],
...                [4, 3, 0]])
>>> y = ivy.cumsum(x, axis=0, exclusive=True, reverse=True)
>>> print(y)
ivy.array([[4, 3, 0],
           [0, 0, 0]])
>>> x = ivy.array([[2, 4, 5],
...                [3, 6, 5],
...                [1, 3, 10]])
>>> ivy.cumsum(x,axis=1,reverse=True, dtype='int64', out=x)
>>> print(x)
ivy.array([[11,  9,  5],
           [14, 11,  5],
           [14, 13, 10]])

With ivy.Container input:

>>> x = ivy.Container(a=ivy.array([[1, 3, 5]]),
...                   b=ivy.array([[3, 5, 7]]))
>>> y = ivy.cumsum(x, axis= 0)
>>> print(y)
{
    a: ivy.array([[1, 3, 5]]),
    b: ivy.array([[3, 5, 7]])
}
>>> x = ivy.Container(a=ivy.array([[1, 3, 4]]),
...                   b=ivy.array([[3, 5, 8],
...                                [5, 6, 5]]),
...                   c=ivy.array([[2, 4, 1],
...                                [3, 6, 9],
...                                [0, 2, 3]]))
>>> y = ivy.Container(a = ivy.zeros((1, 3)),
...                   b = ivy.zeros((2, 3)),
...                   c = ivy.zeros((3,3)))
>>> ivy.cumsum(x,axis=1,reverse=True, out=y)
>>> print(y)
{
    a: ivy.array([[8, 7, 4]]),
    b: ivy.array([[16, 13, 8],
                  [16, 11, 5]]),
    c: ivy.array([[7, 5, 1],
                  [18, 15, 9],
                  [5, 5, 3]])
}
>>> x = ivy.Container(a=ivy.array([[0],
...                                [5]]),
...                   b=ivy.array([[6, 8, 7],
...                                [4, 2, 3]]),
...                   c=ivy.array([[1, 2],
...                                [3, 4],
...                                [6, 4]]))
>>> ivy.cumsum(x,axis=0,out=x)
>>> print(x)
{
    a: ivy.array([[0],
                  [5]]),
    b: ivy.array([[6, 8, 7],
                  [10, 10, 10]]),
    c: ivy.array([[1, 2],
                  [4, 6],
                  [10, 10]])
}
Array.cumsum(self, axis=0, exclusive=False, reverse=False, *, dtype=None, out=None)[source]#

ivy.Array instance method variant of ivy.cumsum. This method simply wraps the function, and so the docstring for ivy.cumsum also applies to this method with minimal changes.

Parameters:
  • self (Array) – Input array to apply cumsum.

  • axis (int, default: 0) – Axis along which the cumulative sum is computed. Default is 0.

  • exclusive (bool, default: False) – Whether to perform cumsum exclusively. Default is False.

  • reverse (bool, default: False) – Whether to perform the cumsum from last to first element in the selected axis. Default is False (from first to last element)

  • dtype (Optional[Union[Dtype, NativeDtype]], default: None) – Data type of the returned array. Default is None.

  • out (Optional[Array], default: None) – Optional array container. Default is None.

Return type:

Array

Returns:

ret – Array which holds the result of applying cumsum at each original array elements along the specified axis.

Examples

>>> x = ivy.array([1, 2, 3, 4, 5])
>>> y = x.cumsum()
>>> print(y)
ivy.array([ 1,  3,  6, 10, 15])
>>> x = ivy.array([2, 6, 4, 10])
>>> y = x.cumsum(axis=0, exclusive=False, reverse=True, dtype='float64')
>>> print(y)
ivy.array([22., 20., 14., 10.])
>>> x = ivy.array([[2, 3], [4, 6], [8, 12]])
>>> y = ivy.zeros((3, 2))
>>> x.cumsum(axis=1, exclusive=True, reverse=False, out=y)
>>> print(y)
ivy.array([[0, 2],
           [0, 4],
           [0, 8]])
>>> x = ivy.array([[1, 5, 2],
...                [4, 3, 0],
...                [4, 8, 2]])
>>> y = x.cumsum(axis=1, exclusive=True, reverse=True)
>>> print(y)
ivy.array([[ 7,  2,  0],
           [ 3,  0,  0],
           [10,  2,  0]])
>>> x = ivy.array([[1, 5, 10], [4, 8, 10], [2, 3, 5]])
>>> x.cumsum(axis=0, out=x)
>>> print(x)
ivy.array([[ 1,  5, 10],
           [ 5, 13, 20],
           [ 7, 16, 25]])
Container.cumsum(self, axis=0, exclusive=False, reverse=False, *, key_chains=None, to_apply=True, prune_unapplied=False, map_sequences=False, dtype=None, out=None)[source]#

ivy.Container instance method variant of ivy.cumsum. This method simply wraps the function, and so the docstring for ivy.cumsum also applies to this method with minimal changes.

Parameters:
  • self (Container) – Input container to apply cumsum at leaves.

  • axis (Union[int, Container], default: 0) – Axis along which the cumulative sum is computed. Default is 0.

  • exclusive (Union[bool, Container], default: False) – Whether to perform cumsum exclusively. Default is False.

  • reverse (Union[bool, Container], default: False) – Whether to perform the cumsum from last to first element in the selected axis. Default is False (from first to last element)

  • key_chains (Optional[Union[List[str], Dict[str, str], Container]], default: None) – The key-chains to apply or not apply the method to. Default is None.

  • to_apply (Union[bool, Container], default: True) – If True, the method will be applied to key_chains, otherwise key_chains will be skipped. Default is True.

  • prune_unapplied (Union[bool, Container], default: False) – Whether to prune key_chains for which the function was not applied. Default is False.

  • map_sequences (Union[bool, Container], default: False) – Whether to also map method to sequences (lists, tuples). Default is False.

  • dtype (Optional[Union[Dtype, NativeDtype, Container]], default: None) – Data type of the returned array. Default is None.

  • out (Optional[Container], default: None) – Optional output container. Default is None.

Return type:

Container

Returns:

ret – Container whose leaves hold the result of applying cumsum at each original leaf arrays along the specified axis.

Examples

With ivy.Container input:

>>> x = ivy.Container(a=ivy.array([[1, 2, 3],
...                                [2, 4, 5]]),
...                   b=ivy.array([[4, 5, 6],
...                                [2, 3, 1 ]]))
>>> y = x.cumsum(axis=0, dtype='float64')
>>> print(y)
{
    a: ivy.array([[1., 2., 3.],
                  [3., 6., 8.]]),
    b: ivy.array([[4., 5., 6.],
                  [6., 8., 7.]])
}
>>> x = ivy.Container(a=ivy.array([[1, 3, 4],
...                                [5, 7, 8],
...                                [9, 10, 11]]),
...                   b=ivy.array([[3, 4, 5],
...                                [4, 5, 6],
...                                [5, 6, 7]]))
>>> y = ivy.Container(a= ivy.zeros((3, 3)), b= ivy.zeros((3, 3)))
>>> x.cumsum(axis=1, exclusive=False, reverse=True, out=y)
>>> print(y)
{
    a: ivy.array([[8, 7, 4],
                  [20, 15, 8],
                  [30, 21, 11]]),
    b: ivy.array([[12, 9, 5],
                  [15, 11, 6],
                  [18, 13, 7]])
}
>>> x = ivy.Container(a=ivy.array([[1, 3, 4]]),
...                   b=ivy.array([[3, 5, 8],
...                                [5, 6, 5]]),
...                   c=ivy.array([[2, 4, 1],
...                                [3, 6, 9],
...                                [0, 2, 3]]))
>>> y = ivy.Container(a = ivy.zeros((1, 3)),
...                   b = ivy.zeros((2, 3)),
...                   c = ivy.zeros((3,3)))
>>> x.cumsum(axis=1,exclusive=True, reverse=False, out=y)
>>> print(y)
{
    a: ivy.array([[0, 1, 4]]),
    b: ivy.array([[0, 3, 8],
                  [0, 5, 11]]),
    c: ivy.array([[0, 2, 6],
                  [0, 3, 9],
                  [0, 0, 2]])
}
>>> x = ivy.Container(a=ivy.array([[0, 3, 2],
...                                [5, 10, 2],
...                                [1, 10, 1]]),
...                   b=ivy.array([[2, 4, 5],
...                                [4, 5, 5],
...                                [0, 1, 3]]))
>>> y = x.cumsum(axis=1,exclusive=True, reverse=True, dtype='int64')
>>> print(y)
{
    a: ivy.array([[5, 2, 0],
                  [12, 2, 0],
                  [11, 1, 0]]),
    b: ivy.array([[9, 5, 0],
                  [10, 5, 0],
                  [4, 3, 0]])
}
>>> x = ivy.Container(a=ivy.array([[0],
...                                [5]]),
...                   b=ivy.array([[6, 8, 7],
...                                [4, 2, 3]]),
...                   c=ivy.array([[1, 2],
...                                [3, 4],
...                                [6, 4]]))
>>> x.cumsum(axis=0, out=x)
>>> print(x)
{
    a: ivy.array([[0],
                 [5]]),
    b: ivy.array([[6, 8, 7],
                 [10, 10, 10]]),
    c: ivy.array([[1, 2],
                 [4, 6],
                 [10, 10]])
}