cupy.lib.stride_tricks.as_strided#

cupy.lib.stride_tricks.as_strided(x, shape=None, strides=None)[source]#

Create a view into the array with the given shape and strides.

Warning

This function has to be used with extreme care, see notes.

Parameters:
  • x (ndarray) – Array to create a new.

  • shape (sequence of int, optional) – The shape of the new array. Defaults to x.shape.

  • strides (sequence of int, optional) – The strides of the new array. Defaults to x.strides.

Returns:

view

Return type:

ndarray

See also

numpy.lib.stride_tricks.as_strided

reshape

reshape an array.

Notes

as_strided creates a view into the array given the exact strides and shape. This means it manipulates the internal data structure of ndarray and, if done incorrectly, the array elements can point to invalid memory and can corrupt results or crash your program.