Koven
Koven
### Describe the issue: Calling `np.resize()` with an unsigned integer (e.g., `np.uint32`) as the second argument causes a `RuntimeWarning` about overflow in scalar negative, followed by a `SystemError`. This issue...
### Description When calling `cupy.ascontiguousarray(None)` or `cupy.asfortranarray(None)`, the process crashes with a **Segmentation Fault (core dumped)**, whereas `numpy` handles it gracefully. ### To Reproduce ```py import cupy import numpy print(numpy.ascontiguousarray(None))...
### Description `cupyx.scipy.signal.gauss_spline` returns incorrect result when input `x` is an integer (e.g., `[0]`), returning `[0]` instead of the expected Gaussian value `~0.7979`. When the input is a float (e.g.,...
### Description When a 1-dimensional array is passed as the `sos` parameter to `cupyx.scipy.signal.sosfilt`, the function does not validate the input shape and instead produces **inconsistent, incorrect, and non-reproducible outputs**....
Hi, I've encountered a behavior in `cupy.fill_diagonal` that seems inconsistent with NumPy and leads to a delayed `cudaErrorIllegalAddress`. Below is a minimal reproduction and comparison with NumPy. ```py import cupy...