During the `cupy` / `numpy` / `pk.array` usage, the developer should specify the `int` to `int32` instead of just `int`, because it may cause issues. ```python # Incorrect color_xp = xp.zeros(N, dtype=xp.int) # Correct color_xp = xp.zeros(N, dtype=xp.int32) ```
During the
cupy/numpy/pk.arrayusage, the developer should specify theinttoint32instead of justint, because it may cause issues.