We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In forward_transform_avx2 columns skip by 8:
forward_transform_avx2
rav1e/src/asm/x86/transform/forward.rs
Line 361 in 620d541
but buf can initialize either 4 or 8:
Line 427 in 620d541
which makes me wonder if the buffer is fully initialized, and whether
Line 439 in 620d541
reverses the right thing (isn't this buf a 4 coeffs, 4 uninit, 4 coeffs, 4 uninit…)?
The text was updated successfully, but these errors were encountered:
Oh wait,
this doesn't even do let buf = &mut buf[cg..]; like the previous case. So it's overwriting start of the buffer over and over? Is that a bug?
let buf = &mut buf[cg..];
Sorry, something went wrong.
No branches or pull requests
In
forward_transform_avx2
columns skip by 8:rav1e/src/asm/x86/transform/forward.rs
Line 361 in 620d541
but buf can initialize either 4 or 8:
rav1e/src/asm/x86/transform/forward.rs
Line 427 in 620d541
which makes me wonder if the buffer is fully initialized, and whether
rav1e/src/asm/x86/transform/forward.rs
Line 439 in 620d541
reverses the right thing (isn't this buf a 4 coeffs, 4 uninit, 4 coeffs, 4 uninit…)?
The text was updated successfully, but these errors were encountered: