cupy.reshape¶
-
cupy.reshape(a, newshape)[source]¶ Returns an array with new shape and same elements.
It tries to return a view if possible, otherwise returns a copy.
This function currently does not support
orderoption.Parameters: - a (cupy.ndarray) – Array to be reshaped.
- newshape (int or tuple of ints) – The new shape of the array to return.
If it is an integer, then it is treated as a tuple of length one.
It should be compatible with
a.size. One of the elements can be -1, which is automatically replaced with the appropriate value to make the shape compatible witha.size.
Returns: A reshaped view of
aif possible, otherwise a copy.Return type: See also