cupy.hsplit#
- cupy.hsplit(ary, indices_or_sections)[source]#
Splits an array into multiple sub arrays horizontally.
This is equivalent to
split
withaxis=0
ifary
has one dimension, and otherwise that withaxis=1
.See also
cupy.split()
for more detail,numpy.hsplit()