cupy.fix#

cupy.fix(x, /, out=None, \*, casting='same_kind', dtype=None)#
If given value x is positive, it return floor(x).

Else, it return ceil(x).

See also

numpy.fix()