cunumeric.flipud#

cunumeric.flipud(m: ndarray) ndarray#

Reverse the order of elements along axis 0 (up/down).

For a 2-D array, this flips the entries in each column in the up/down direction. Rows are preserved, but appear in a different order than before.

Parameters:

m (array_like) – Input array.

Returns:

out – A new array that is constructed from m with rows reversed.

Return type:

array_like

See also

numpy.flipud

Availability:

Single GPU, Single CPU

Notes

cuNumeric implementation doesn’t return a view, it returns a new array