Skip to content

Commit

Permalink
Uncomment AVX512 byte vector conversions
Browse files Browse the repository at this point in the history
Resolves my comment in #197, at least for now; #187 is pending but since these are already here, just commented, it seemed to make sense to me to re-enable them anyway.
  • Loading branch information
pthariensflame authored and workingjubilee committed Nov 26, 2021
1 parent ae61210 commit b2dac71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core_simd/src/vendor/x86.rs
Expand Up @@ -8,10 +8,10 @@ use core::arch::x86_64::*;

from_transmute! { unsafe u8x16 => __m128i }
from_transmute! { unsafe u8x32 => __m256i }
//from_transmute! { unsafe u8x64 => __m512i }
from_transmute! { unsafe u8x64 => __m512i }
from_transmute! { unsafe i8x16 => __m128i }
from_transmute! { unsafe i8x32 => __m256i }
//from_transmute! { unsafe i8x64 => __m512i }
from_transmute! { unsafe i8x64 => __m512i }

from_transmute! { unsafe u16x8 => __m128i }
from_transmute! { unsafe u16x16 => __m256i }
Expand Down

0 comments on commit b2dac71

Please sign in to comment.