cupy.hsplit#

cupy.hsplit(ary, indices_or_sections)[source]#

Splits an array into multiple sub arrays horizontally.

This is equivalent to split with axis=0 if ary has one dimension, and otherwise that with axis=1.

See also

cupy.split() for more detail, numpy.hsplit()