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
If the input is a 2d array, then width.min(32) is inappropriate - it will cause a skew instead of narrowing the width. It needs to be something like input.chunks_exact(width).map(|row| &row[..width.min(32)]) to preserve the stride.
If the
input
is a 2d array, thenwidth.min(32)
is inappropriate - it will cause a skew instead of narrowing the width. It needs to be something likeinput.chunks_exact(width).map(|row| &row[..width.min(32)])
to preserve the stride.rav1e/src/asm/shared/transform/inverse.rs
Line 27 in 21bb4cb
The text was updated successfully, but these errors were encountered: