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