chainerx.fliplr

chainerx.fliplr(m)

Flip array in the left/right direction.

Parameters

m (ndarray) – Input Array.

Returns

A view of m with the columns 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.fliplr()