You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid negating unsigned integers in dpnp.resize (#2508)
This PR resolves an issue when calling `dpnp.resize` with unsigned
integer size.
The negation of an unsigned int underflows and creates a large positive
repeats, which leads to a runtime error. The PR fixes the used ceil
division.
0 commit comments