We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb3f9d5 commit 120c5beCopy full SHA for 120c5be
src/avx2/ycbcr.rs
@@ -22,6 +22,7 @@ macro_rules! ycbcr_image_avx2 {
22
#[target_feature(enable = "avx2")]
23
fn fill_buffers_avx2(&self, y: u16, buffers: &mut [Vec<u8>; 4]) {
24
// TODO: this compiles to many separate scalar loads and could be optimized further.
25
+ // But the gains are no more than 3% end to end and it doesn't seem to be worth the complexity.
26
#[inline]
27
28
fn load3(data: &[u8]) -> __m256i {
0 commit comments