chainerx.flipud

chainerx.flipud(m)

Flip array in the up/down direction.

Parameters

m (ndarray) – Input Array.

Returns

A view of m with the rows reversed. Since a view is returned, this operation is done in constant time.

Return type

ndarray

Note

  • Output array is a view of the input array.

  • During backpropagation, this function propagates the gradients of the output arrays to the input array m.

See also

numpy.flipud()